How can I mount a partition on every reboot using Bash Script? [duplicate]












2















This question already has an answer here:




  • How to mount partition permanently?

    1 answer




I have a partition mounted with mount /mnt/filesys.bin /mnt/mymnt/



Each time I reboot, I need to remount. How can I keep this mounted after every reboot?










share|improve this question













marked as duplicate by muru, karel, Melebius, N0rbert, Charles Green Nov 22 '18 at 16:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.











  • 2




    Hello. Isn't it possible to add entry in /etc/fstab for that?
    – pa4080
    Nov 22 '18 at 9:25






  • 1




    Can you explain more? I am new to Linux
    – Onyic
    Nov 22 '18 at 9:27






  • 1




    I think /etc/fstab is the correct think to look for, not a Bash script.
    – iBug
    Nov 22 '18 at 10:52
















2















This question already has an answer here:




  • How to mount partition permanently?

    1 answer




I have a partition mounted with mount /mnt/filesys.bin /mnt/mymnt/



Each time I reboot, I need to remount. How can I keep this mounted after every reboot?










share|improve this question













marked as duplicate by muru, karel, Melebius, N0rbert, Charles Green Nov 22 '18 at 16:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.











  • 2




    Hello. Isn't it possible to add entry in /etc/fstab for that?
    – pa4080
    Nov 22 '18 at 9:25






  • 1




    Can you explain more? I am new to Linux
    – Onyic
    Nov 22 '18 at 9:27






  • 1




    I think /etc/fstab is the correct think to look for, not a Bash script.
    – iBug
    Nov 22 '18 at 10:52














2












2








2








This question already has an answer here:




  • How to mount partition permanently?

    1 answer




I have a partition mounted with mount /mnt/filesys.bin /mnt/mymnt/



Each time I reboot, I need to remount. How can I keep this mounted after every reboot?










share|improve this question














This question already has an answer here:




  • How to mount partition permanently?

    1 answer




I have a partition mounted with mount /mnt/filesys.bin /mnt/mymnt/



Each time I reboot, I need to remount. How can I keep this mounted after every reboot?





This question already has an answer here:




  • How to mount partition permanently?

    1 answer








scripts filesystem partitions






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 9:20









OnyicOnyic

355




355




marked as duplicate by muru, karel, Melebius, N0rbert, Charles Green Nov 22 '18 at 16:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by muru, karel, Melebius, N0rbert, Charles Green Nov 22 '18 at 16:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 2




    Hello. Isn't it possible to add entry in /etc/fstab for that?
    – pa4080
    Nov 22 '18 at 9:25






  • 1




    Can you explain more? I am new to Linux
    – Onyic
    Nov 22 '18 at 9:27






  • 1




    I think /etc/fstab is the correct think to look for, not a Bash script.
    – iBug
    Nov 22 '18 at 10:52














  • 2




    Hello. Isn't it possible to add entry in /etc/fstab for that?
    – pa4080
    Nov 22 '18 at 9:25






  • 1




    Can you explain more? I am new to Linux
    – Onyic
    Nov 22 '18 at 9:27






  • 1




    I think /etc/fstab is the correct think to look for, not a Bash script.
    – iBug
    Nov 22 '18 at 10:52








2




2




Hello. Isn't it possible to add entry in /etc/fstab for that?
– pa4080
Nov 22 '18 at 9:25




Hello. Isn't it possible to add entry in /etc/fstab for that?
– pa4080
Nov 22 '18 at 9:25




1




1




Can you explain more? I am new to Linux
– Onyic
Nov 22 '18 at 9:27




Can you explain more? I am new to Linux
– Onyic
Nov 22 '18 at 9:27




1




1




I think /etc/fstab is the correct think to look for, not a Bash script.
– iBug
Nov 22 '18 at 10:52




I think /etc/fstab is the correct think to look for, not a Bash script.
– iBug
Nov 22 '18 at 10:52










2 Answers
2






active

oldest

votes


















11














From man fstab:




The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.




To do what you want you just need to add an entry for this mount in /etc/fstab as follows:




  1. Open new terminal window Ctrl+Alt+T.



  2. Open the file /etc/fstab for edit with root privileges, using nano:



    sudo nano /etc/fstab



  3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):



    /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0


    If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:



    /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


    or:



    UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


    Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.



  4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.


  5. Restart the system or type sudo mount -a to see the result.



Do not forgot to remove that entry if you remove the image file.






share|improve this answer



















  • 2




    For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
    – Stephen Boston
    Nov 22 '18 at 9:56








  • 1




    @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
    – pa4080
    Nov 22 '18 at 10:03



















2














@pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):



mount /mnt/filesys.bin /mnt/mymnt/
grep mymnt /etc/mtab >>/etc/fstab


The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.






share|improve this answer




























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    11














    From man fstab:




    The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.




    To do what you want you just need to add an entry for this mount in /etc/fstab as follows:




    1. Open new terminal window Ctrl+Alt+T.



    2. Open the file /etc/fstab for edit with root privileges, using nano:



      sudo nano /etc/fstab



    3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):



      /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0


      If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:



      /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      or:



      UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.



    4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.


    5. Restart the system or type sudo mount -a to see the result.



    Do not forgot to remove that entry if you remove the image file.






    share|improve this answer



















    • 2




      For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
      – Stephen Boston
      Nov 22 '18 at 9:56








    • 1




      @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
      – pa4080
      Nov 22 '18 at 10:03
















    11














    From man fstab:




    The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.




    To do what you want you just need to add an entry for this mount in /etc/fstab as follows:




    1. Open new terminal window Ctrl+Alt+T.



    2. Open the file /etc/fstab for edit with root privileges, using nano:



      sudo nano /etc/fstab



    3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):



      /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0


      If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:



      /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      or:



      UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.



    4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.


    5. Restart the system or type sudo mount -a to see the result.



    Do not forgot to remove that entry if you remove the image file.






    share|improve this answer



















    • 2




      For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
      – Stephen Boston
      Nov 22 '18 at 9:56








    • 1




      @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
      – pa4080
      Nov 22 '18 at 10:03














    11












    11








    11






    From man fstab:




    The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.




    To do what you want you just need to add an entry for this mount in /etc/fstab as follows:




    1. Open new terminal window Ctrl+Alt+T.



    2. Open the file /etc/fstab for edit with root privileges, using nano:



      sudo nano /etc/fstab



    3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):



      /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0


      If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:



      /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      or:



      UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.



    4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.


    5. Restart the system or type sudo mount -a to see the result.



    Do not forgot to remove that entry if you remove the image file.






    share|improve this answer














    From man fstab:




    The file /etc/fstab contains descriptive information about the filesystems the system can mount. fstab is only read by programs, and not written; it is the duty of the system administrator to properly create and maintain this file.




    To do what you want you just need to add an entry for this mount in /etc/fstab as follows:




    1. Open new terminal window Ctrl+Alt+T.



    2. Open the file /etc/fstab for edit with root privileges, using nano:



      sudo nano /etc/fstab



    3. Go to the bottom of the file and add the following line - here I'm assuming it is an image file, so we need to use the loop option (reference):



      /mnt/filesys.bin /mnt/mymnt/ auto nofail,defaults,loop 0 0


      If you want to mount physical device (or partition), you can identify it by several different ways, for example by its UUID. To find the UUID use sudo blkid while the device is mounted (or use the GUI tool Disks). In this case the entry could look like:



      /dev/disk/by-uuid/a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      or:



      UUID=a58b40e4-eb9b-4720-835b-785a3be3ae33 /mnt/mymnt/ auto nosuid,nodev,nofail 0 0


      Where a58b40e4-eb9b-4720-835b-785a3be3ae33 is the UUID of your device.



    4. Save the file: Ctrl+O, then exit from nano: Ctrl+X.


    5. Restart the system or type sudo mount -a to see the result.



    Do not forgot to remove that entry if you remove the image file.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 22 '18 at 15:06









    Community

    1




    1










    answered Nov 22 '18 at 9:43









    pa4080pa4080

    13.5k52563




    13.5k52563








    • 2




      For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
      – Stephen Boston
      Nov 22 '18 at 9:56








    • 1




      @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
      – pa4080
      Nov 22 '18 at 10:03














    • 2




      For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
      – Stephen Boston
      Nov 22 '18 at 9:56








    • 1




      @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
      – pa4080
      Nov 22 '18 at 10:03








    2




    2




    For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
    – Stephen Boston
    Nov 22 '18 at 9:56






    For external media I use UUID and the 'nofail' option. To get the UUID, issue the blkid command in terminal, while the device is mounted,then to fstab use UUID=<uuid> /mnt/mymount auto nofail,defaults
    – Stephen Boston
    Nov 22 '18 at 9:56






    1




    1




    @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
    – pa4080
    Nov 22 '18 at 10:03




    @StephenBoston, thanks for the suggestion. I've updated the answer according to your comment.
    – pa4080
    Nov 22 '18 at 10:03













    2














    @pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):



    mount /mnt/filesys.bin /mnt/mymnt/
    grep mymnt /etc/mtab >>/etc/fstab


    The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.






    share|improve this answer


























      2














      @pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):



      mount /mnt/filesys.bin /mnt/mymnt/
      grep mymnt /etc/mtab >>/etc/fstab


      The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.






      share|improve this answer
























        2












        2








        2






        @pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):



        mount /mnt/filesys.bin /mnt/mymnt/
        grep mymnt /etc/mtab >>/etc/fstab


        The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.






        share|improve this answer












        @pa4080 is totally right, but the really easy solution is (running as the superuser, so sudo su first):



        mount /mnt/filesys.bin /mnt/mymnt/
        grep mymnt /etc/mtab >>/etc/fstab


        The first line mounts your device with whatever other options you need, the second will put it into /etc/fstab with the same options so that it gets mounted on every reboot.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 '18 at 16:30









        AuspexAuspex

        397312




        397312















            Popular posts from this blog

            Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

            ts Property 'filter' does not exist on type '{}'

            mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window