Mount hard drives to a static location
|
25th Mar, 2013, 09:22 AM
Post: #4
|
|||
|
|||
RE: Mount hard drives to a static location
@coreflake
Try instead of using UUID to identify the disks, using "/dev/sda5" and "/dev/sdb1", if you always start the Raspy with the same drives connected it should work. To try it, just change it in the fstab file and execute the command "mount -a" @zilexa The error setting file permission is due to the file system of "SmallRyan", I recommend you change it to ext4, if it's not possible you must set permissions before mounting the drive. Add this options to fstab: Code: UUID=8E37-FB11 /media/SmallRyan exfat defaults,uid=user,gid=group 0 0 where user and group are the corresponding ones. You can also allow full access to by also adding umask=0. I also recommend you add the option noatime (no access time) it speeds up the write/read speed and it's only necessary if you need the access time for your files (which isn't usual). |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Mount hard drives to a static location - coreflake - 5th Mar, 2013, 08:18 PM
RE: Mount hard drives to a static location - Koenkk - 5th Mar, 2013, 10:46 PM
RE: Mount hard drives to a static location - zilexa - 25th Mar, 2013, 01:48 AM
RE: Mount hard drives to a static location - Trinket - 25th Mar, 2013 09:22 AM
RE: Mount hard drives to a static location - zilexa - 25th Mar, 2013, 07:15 PM
RE: Mount hard drives to a static location - zilexa - 14th Apr, 2013, 01:46 AM
RE: Mount hard drives to a static location - Trinket - 14th Apr, 2013, 04:30 AM
|