![]() |
Mount Partitions Via /etc/fstab - Printable Version +- Snakeoil Forums (https://forums.snakeoil-os.net) +-- Forum: Snakeoil Resource (https://forums.snakeoil-os.net/Forum-Snakeoil-Resource) +--- Forum: Walkthroughs (https://forums.snakeoil-os.net/Forum-Walkthroughs) +--- Thread: Mount Partitions Via /etc/fstab (/Thread-Mount-Partitions-Via-etc-fstab) |
Mount Partitions Via /etc/fstab - agent_kith - 08-Aug-2016 Introduction The Snakeoil Web app allows you to easily mount partitions, but there are occasions where this system will not work well, e.g. if you are using USB storage and the device names are different for every boot. To overcome this issue, you'd need to mount the partitions the old Linux way. Step One Remove all mount points in the web app. Go to the music tab, and look under the section Mount Points. If you see any entries, note the media paths (e.g. /dev/sdb1, /dev/sdc1). Once noted, click the associated remove button and remove all entries. ![]() Click Save Changes. The partitions would be unmounted. Step Two Login to your Snakeoil via SSH. Refer to the Logging in/SSH section of the manual if you havn't done this before. Once logged in, you will see something like this: ![]() Step Three Now comes the more difficult part. You'd need to find the UUID of the storage in question, use the blkid command. To find the UUID of /dev/sdb1, run this command: Code: blkid /dev/sdb1 And you would see something like this: Code: /dev/sdb1: UUID="7FAEFE6123DEFABE" TYPE="ntfs" Note the fields UUID and TYPE. The UUID field above is an example only, your storage device will be unique and is different. Step Three Make a backup of this file /etc/fstab by running the following command: Code: cp /etc/fstab ~/fstab.orig Step Four Modify /etc/fstab file by running the following command: Code: sudo nano /etc/fstab Step Five Now start adding the partitions. Go to the last line, and add your entry based on output from blkid, as the example from above, the entry would look like so: Code: UUID=7FAEFE6123DEFABE /media/music/sdb ntfs defaults 0 0 If the partition is using EXT4, it will look something like so: Code: UUID=7FAEFE6123DEFABE /media/music/sdb ext4 defaults 0 0 Repeat Step 3 to add all your other block devices, and make sure they are mounted under different sub-folders under /media/music. Once you have entered all the entries, save the file by pressing CTRL-X, and when prompted, press Y for Yes. Step Six Make sure you have created all the mount points you specified in Step Five are present, as an example: Code: sudo mkdir /media/music/sdb and if you add more than one storage devices, make sure you created the folders too, e.g. Code: sudo mkdir /media/music/sdc and so on. Step Seven Reboot the Snakeoil machine. Then load the Snakeoil Web app, click the music tab and look at the File System table, you should see your storage devices mounted under /media/music now. And the mappings will be fixed now because you are using UUID. RE: Mount Partitions Via /etc/fstab - Pierre - 09-Aug-2016 Thank's for this howto! Snakeoil works fine now. ![]() (but the command blkid does not return anything on my machine... I used another command for listing all the drives). Pierre RE: Mount Partitions Via /etc/fstab - agent_kith - 09-Aug-2016 (09-Aug-2016, 05:15 AM)Pierre Wrote: Thank's for this howto!What command is that? I can improve the howto above. thanks ![]() RE: Mount Partitions Via /etc/fstab - Pierre - 09-Aug-2016 (09-Aug-2016, 07:20 AM)agent_kith Wrote:(09-Aug-2016, 05:15 AM)Pierre Wrote: Thank's for this howto!What command is that? I can improve the howto above. thanks This is the command: "ls -l /dev/disk/by-uuid" Pierre RE: Mount Partitions Via /etc/fstab - vinaymoturi - 04-May-2023 I installed Snakeoil for intel NUC SATA ssd Recentely i got a m.2 sata ssd 2tb. Installed it on intel NUC motherboard m.2 sata slot. It is not being detected by snakeoil. how can i mount the disk? RE: Mount Partitions Via /etc/fstab - Snoopy8 - 08-May-2023 I have been using a M.2 SSD on my Intel NUCs for a few years now with no problems. SnakeOil will always mount a disk that Ubuntu recognises. Have you tried checking whether the SSD is working just with standard Ubuntu? And please provide more details of the hardware that you are using. And make sure the SSD is the SATA version RE: Mount Partitions Via /etc/fstab - vinaymoturi - 08-May-2023 (08-May-2023, 11:47 AM)Snoopy8 Wrote:(08-May-2023, 11:47 AM)Snoopy8 Wrote: I have been using a M.2 SSD on my Intel NUCs for a few years now with no problems. SnakeOil will always mount a disk that Ubuntu recognises. Have you tried checking whether the SSD is working just with standard Ubuntu? (08-May-2023, 11:47 AM)Snoopy8 Wrote:(08-May-2023, 11:47 AM)Snoopy8 Wrote: I have been using a M.2 SSD on my Intel NUCs for a few years now with no problems. SnakeOil will always mount a disk that Ubuntu recognises. Have you tried checking whether the SSD is working just with standard Ubuntu? RE: Mount Partitions Via /etc/fstab - agent_kith - 15-May-2023 (08-May-2023, 11:47 AM)Snoopy8 Wrote: I have been using a M.2 SSD on my Intel NUCs for a few years now with no problems. SnakeOil will always mount a disk that Ubuntu recognises. Have you tried checking whether the SSD is working just with standard Ubuntu?What kernel are you using? If you're using the old Snakeoil custom kernels, you'll need to pick the one with nvme support. Otherwise, you'll need to modify /etc/fstab directly to mount your nvme partition. RE: Mount Partitions Via /etc/fstab - vinaymoturi - 15-May-2023 I installed Snakeoil on Ubuntu server 22.4.2lts later installed low latency kernel. what should I do in etc/fstab ![]() RE: Mount Partitions Via /etc/fstab - agent_kith - 03-Jun-2023 (15-May-2023, 09:40 PM)vinaymoturi Wrote: I installed Snakeoil on Ubuntu server 22.4.2lts later installed low latency kernel. what should I do in etc/fstabSorry, been away for a long time as busy with work. You'll need to find the blockid of your partition, then add it in the file. You can follow the instructions here: Link The reason to use uuid is for SATA devices as the drive letterings can change between reboot. Using uuid will fix those issues. I don't believe nvme has the same problem so you can just use /dev/nvmeXnYpZ format in your /etc/fstab file. |