Hope someone can help me with this. I have this for my fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=b1d3d58d-e044-422f-ae1d-37a193abfe39 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=ba5a5445-7b2b-4834-a8e0-7661c751e44f none swap sw 0 0
//192.168.170.100/1TBi /media/1TBi cifs username=administrator,password=****,iocharset=utf 8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0
//192.168.170.143/USB_DRIVE_1_5_TB /media/1_5TB cifs username=nmt,password=****,iocharset=utf8,gid=1000 ,uid=1000,file_mode=0777,dir_mode=0777 0 0
//192.168.170.143/share /media/PopcornHour cifs username=nmt,password=****,iocharset=utf8,gid=1000 ,uid=1000,file_mode=0777,dir_mode=0777 0 0
and it does not mount the drives on boot. if I type sudo mount -a it works fine. Why is it not mounting them on boot?
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=b1d3d58d-e044-422f-ae1d-37a193abfe39 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=ba5a5445-7b2b-4834-a8e0-7661c751e44f none swap sw 0 0
//192.168.170.100/1TBi /media/1TBi cifs username=administrator,password=****,iocharset=utf 8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0
//192.168.170.143/USB_DRIVE_1_5_TB /media/1_5TB cifs username=nmt,password=****,iocharset=utf8,gid=1000 ,uid=1000,file_mode=0777,dir_mode=0777 0 0
//192.168.170.143/share /media/PopcornHour cifs username=nmt,password=****,iocharset=utf8,gid=1000 ,uid=1000,file_mode=0777,dir_mode=0777 0 0
and it does not mount the drives on boot. if I type sudo mount -a it works fine. Why is it not mounting them on boot?
Comment