Why do NTFS partitions have to be mounted separately on media folder?











up vote
0
down vote

favorite












On a dual boot system with Windows and Ubuntu 16.04, the NTFS partitions on disk are shown with their label names when viewed in Ubuntu. A user has to click on it in Nautilus to mount it.




  1. Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?

  2. Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?










share|improve this question






















  • If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
    – oldfred
    Nov 22 at 15:44















up vote
0
down vote

favorite












On a dual boot system with Windows and Ubuntu 16.04, the NTFS partitions on disk are shown with their label names when viewed in Ubuntu. A user has to click on it in Nautilus to mount it.




  1. Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?

  2. Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?










share|improve this question






















  • If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
    – oldfred
    Nov 22 at 15:44













up vote
0
down vote

favorite









up vote
0
down vote

favorite











On a dual boot system with Windows and Ubuntu 16.04, the NTFS partitions on disk are shown with their label names when viewed in Ubuntu. A user has to click on it in Nautilus to mount it.




  1. Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?

  2. Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?










share|improve this question













On a dual boot system with Windows and Ubuntu 16.04, the NTFS partitions on disk are shown with their label names when viewed in Ubuntu. A user has to click on it in Nautilus to mount it.




  1. Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?

  2. Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?







16.04 partitioning mount ntfs






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 15:26









Nav

356412




356412












  • If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
    – oldfred
    Nov 22 at 15:44


















  • If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
    – oldfred
    Nov 22 at 15:44
















If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
– oldfred
Nov 22 at 15:44




If internal drive you can mount using fstab. askubuntu.com/questions/164926/… I would also include windows_names as a parameter: tuxera.com/community/ntfs-3g-manual
– oldfred
Nov 22 at 15:44










2 Answers
2






active

oldest

votes

















up vote
1
down vote














Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?




All external devices are mounted in /media/. /mnt used to be used for fixed disks but we generally now create a mountpoint in /.




Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?




Yes, it is a safety measure. Or was at least. There would not be lots of issues to auto mount NTFS nowadays. Mounting NTFS tends to break due to hibernation and filesystem errors but the driver is capable of working around those by auto mounting as read only.




why can't Ubuntu just mount it automatically?




Up to now it has been up to the individual user to set that up. /etc/fstab is the place to add it. See for instance



How to automount NTFS partitions?






share|improve this answer





















  • You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
    – Andrea Lazzarotto
    Nov 24 at 16:58


















up vote
0
down vote














  • Not only NTFS but other partitions such as ext4 are also mounted on /media


  • /media and /mnt are used according to Filesystem Hierarchy Standards here and here. That means /media is used by system and /mnt is for user.


  • Not mounting partitions at startup is the default but you can change it by editing /etc/fstab or the GUI gnome-disks.







share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095137%2fwhy-do-ntfs-partitions-have-to-be-mounted-separately-on-media-folder%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote














    Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?




    All external devices are mounted in /media/. /mnt used to be used for fixed disks but we generally now create a mountpoint in /.




    Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?




    Yes, it is a safety measure. Or was at least. There would not be lots of issues to auto mount NTFS nowadays. Mounting NTFS tends to break due to hibernation and filesystem errors but the driver is capable of working around those by auto mounting as read only.




    why can't Ubuntu just mount it automatically?




    Up to now it has been up to the individual user to set that up. /etc/fstab is the place to add it. See for instance



    How to automount NTFS partitions?






    share|improve this answer





















    • You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
      – Andrea Lazzarotto
      Nov 24 at 16:58















    up vote
    1
    down vote














    Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?




    All external devices are mounted in /media/. /mnt used to be used for fixed disks but we generally now create a mountpoint in /.




    Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?




    Yes, it is a safety measure. Or was at least. There would not be lots of issues to auto mount NTFS nowadays. Mounting NTFS tends to break due to hibernation and filesystem errors but the driver is capable of working around those by auto mounting as read only.




    why can't Ubuntu just mount it automatically?




    Up to now it has been up to the individual user to set that up. /etc/fstab is the place to add it. See for instance



    How to automount NTFS partitions?






    share|improve this answer





















    • You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
      – Andrea Lazzarotto
      Nov 24 at 16:58













    up vote
    1
    down vote










    up vote
    1
    down vote










    Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?




    All external devices are mounted in /media/. /mnt used to be used for fixed disks but we generally now create a mountpoint in /.




    Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?




    Yes, it is a safety measure. Or was at least. There would not be lots of issues to auto mount NTFS nowadays. Mounting NTFS tends to break due to hibernation and filesystem errors but the driver is capable of working around those by auto mounting as read only.




    why can't Ubuntu just mount it automatically?




    Up to now it has been up to the individual user to set that up. /etc/fstab is the place to add it. See for instance



    How to automount NTFS partitions?






    share|improve this answer













    Why mount it on /media instead of /mnt? Is this part of any 'safety feature of some kind' as mentioned in the above question?




    All external devices are mounted in /media/. /mnt used to be used for fixed disks but we generally now create a mountpoint in /.




    Why is the additional mounting step required at all? Is it some safety feature for some reason? If Ubuntu can 'see' an NTFS partition which has not been left in a Hibernation state by Windows, why can't Ubuntu just mount it automatically?




    Yes, it is a safety measure. Or was at least. There would not be lots of issues to auto mount NTFS nowadays. Mounting NTFS tends to break due to hibernation and filesystem errors but the driver is capable of working around those by auto mounting as read only.




    why can't Ubuntu just mount it automatically?




    Up to now it has been up to the individual user to set that up. /etc/fstab is the place to add it. See for instance



    How to automount NTFS partitions?







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 22 at 16:32









    Rinzwind

    202k26385517




    202k26385517












    • You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
      – Andrea Lazzarotto
      Nov 24 at 16:58


















    • You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
      – Andrea Lazzarotto
      Nov 24 at 16:58
















    You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
    – Andrea Lazzarotto
    Nov 24 at 16:58




    You might also want to add the fact that mounting a drive (with the default configuration) writes data on said drive.
    – Andrea Lazzarotto
    Nov 24 at 16:58












    up vote
    0
    down vote














    • Not only NTFS but other partitions such as ext4 are also mounted on /media


    • /media and /mnt are used according to Filesystem Hierarchy Standards here and here. That means /media is used by system and /mnt is for user.


    • Not mounting partitions at startup is the default but you can change it by editing /etc/fstab or the GUI gnome-disks.







    share|improve this answer

























      up vote
      0
      down vote














      • Not only NTFS but other partitions such as ext4 are also mounted on /media


      • /media and /mnt are used according to Filesystem Hierarchy Standards here and here. That means /media is used by system and /mnt is for user.


      • Not mounting partitions at startup is the default but you can change it by editing /etc/fstab or the GUI gnome-disks.







      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote










        • Not only NTFS but other partitions such as ext4 are also mounted on /media


        • /media and /mnt are used according to Filesystem Hierarchy Standards here and here. That means /media is used by system and /mnt is for user.


        • Not mounting partitions at startup is the default but you can change it by editing /etc/fstab or the GUI gnome-disks.







        share|improve this answer













        • Not only NTFS but other partitions such as ext4 are also mounted on /media


        • /media and /mnt are used according to Filesystem Hierarchy Standards here and here. That means /media is used by system and /mnt is for user.


        • Not mounting partitions at startup is the default but you can change it by editing /etc/fstab or the GUI gnome-disks.








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 at 15:56









        Hobbyist

        1,036617




        1,036617






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095137%2fwhy-do-ntfs-partitions-have-to-be-mounted-separately-on-media-folder%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Mouse cursor on multiple screens with different PPI

            Agildo Ribeiro

            Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”