Hi ,
Just a small problem on a drive that always mounted at boot up and now have to manually mount from terminal.
Have tried to write the drive`s UUID into /etc/fstab/ but gets thrown out.
The commands used to mount the drive are :
This creates the mount point -
This mounts the drive :
Every time have to enter these commands into terminal.
Print of df -h :
Print of cat/etc/fstab/ :
Here, fstb is showing 3 drives, i just manually mounted the offending drive and it`s not in there ?
Thanks for all your help on this.
Just a small problem on a drive that always mounted at boot up and now have to manually mount from terminal.
Have tried to write the drive`s UUID into /etc/fstab/ but gets thrown out.
The commands used to mount the drive are :
This creates the mount point -
Code:
[B]sudo mkdir /media/hd3[/B]
Code:
[B]sudo mount -vs -t jfs -o ro,nointegrity,errors=remount-ro /dev/sdc1 /media/hd3 [/B]
Print of df -h :
Code:
reel@BM2LTSR66RBin:/media/hd/home/reel$ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 13G 8.4G 3.7G 70% / none 4.0K 0 4.0K 0% /sys/fs/cgroup udev 2.0G 12K 2.0G 1% /dev tmpfs 406M 1.4M 404M 1% /run none 5.0M 0 5.0M 0% /run/lock none 2.0G 148K 2.0G 1% /run/shm none 100M 28K 100M 1% /run/user /dev/sda4 445G 4.8G 417G 2% /media/hd /dev/sdd1 1.9T 1.8T 49G 98% /media/hd1 /dev/sdb1 1.9T 1.3T 557G 71% /media/hd2 tmpfs 10M 0 10M 0% /media /dev/sdc1 2.8T 2.4T 385G 87% /media/hd3
Code:
reel@BM2LTSR66RBin:/media/hd/home/reel$ cat /etc/fstab # /etc/fstab: static file system information. # # Use 'blkid' 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 /dev/sda1 / ext4 errors=remount-ro 0 1 # swap was on /dev/sda3 during installation /dev/sda3 none swap sw 0 0 UUID=eb459c80-7168-4749-aab3-36ae9d4eb6e8 /media/hd auto defaults,nofail 0 2 UUID=77dcd436-432a-43d1-8a74-789bb27a672e /media/hd1 auto defaults,nofail 0 2 UUID=c36f1885-62ea-4fcc-9570-1cf15d96bc3a /media/hd2 auto defaults,nofail 0 2 reel@BM2LTSR66RBin:/media/hd/home/reel$
Thanks for all your help on this.
Comment