Results 1 to 5 of 5

Thread: how to disable ntfs support in ubuntu

  1. #1
    Join Date
    Feb 2010
    Beans
    65

    how to disable ntfs support in ubuntu

    hi

    re how to disable ntfs support in ubuntu

    i am a complete noob to ubuntu so please give idiots guide to me

    i have my pc dual booting windows and lastest ubuntu, but i want to keep the 2 os's completely apart windows does not see the ubuntu partitions, but ubuntu sees the windows partitions. ubuntu gives me the option to mount the windows partition.

    is there a way before or during ubuntu installion to unintsall ntfs support? or to do it after installion?.

    many thx

    please remember complete noob step by step idiots instructions..

  2. #2
    Join Date
    Nov 2010
    Location
    India
    Beans
    Hidden!

    Re: how to disable ntfs support in ubuntu

    yeah there is way . remove ntfs-3g package .

    to do so
    Code:
     sudo apt-get remove ntfs-3g
    then give a restart to apply the changes .

    in future if you want to revert to back then

    Code:
    sudo apt-get install ntfs-3g
    that will get it back .
    Dont miss anything even it is small. one small pin is enough to bring down a man.


  3. #3
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: how to disable ntfs support in ubuntu

    You can also just hide the mount in / (root) or just set to read only so you can read info if you want but not write or do any harm to Windows.

    Hide mount
    UUID=200C11850C1156DE /mnt/SysRes ntfs defaults,noauto 0 0
    Hide windows mount with noauto: 777 is no permissions at all
    /dev/sda2 /Windows/sda2 ntfs defaults,noauto,umask=777 0 0

    Set windows boot partition Read only - Morbius1:
    After Ubuntu has done it's thing I usually go in and change the umask to 227 which will make the C Drive read only.
    /dev/sda1 /media/sda1 ntfs nls=iso8859-1,ro,umask=227 0 0

    Mount in /media or /home will show in Nautilus left panel mounts in / or /mnt will not.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  4. #4
    Join Date
    Sep 2005
    Beans
    Hidden!
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: how to disable ntfs support in ubuntu

    agreed -removing ntfs-3g is not the best way

  5. #5
    Join Date
    Dec 2009
    Beans
    6,776

    Re: how to disable ntfs support in ubuntu

    Quote Originally Posted by sakamoto View Post
    agreed -removing ntfs-3g is not the best way
    Especially since one day in the future the user will purchase a multi-terabyte external hard drive formatted in ntfs and have to install ntfs-3g again to use it.

    oldfred has the answer:

    Cretate mount points for all the ntfs formatted partition that you don't ever want to access, for example:
    Code:
    sudo mkdir /WinC
    Then find the correct uuid number for your partition with this command:
    Code:
    sudo blkid -c /dev/null
    And add a line to /etc/fstab to prevent it from being used:
    Code:
    UUID=xxxxxxxxxxxxxxx /WinC ntfs defaults,noauto,ro,umask=227 0 0
    There's so many levels of redundancy in that line it's embarrassing

    noauto = will prevent the partition from being mounted automatically at boot.
    It can still be mounted but only by root or sudo but only from the terminal and only to /WinC.

    ro = will mount it read only if you were to mount it as root.
    umask=227 is a belt and suspenders kind of thing that will make sure that if it ever is mounted by root or sudo that it mounts as read only to root and inaccessible to everyone else.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •