I just recover my /etc/fstab file using THIS
But after reboot it says:
Mount failed press S to skip and M to mount manually. on S it skip all services and just start with mount only default drive
on this system /etc/fstab looks like this. which i generated now.
UUID=e8008245-01d3-4df3-b409-8036ad7cd0d0 / ext4 default 0 2
UUID=ff122186-e22b-4ba6-a8fc-36ef76150bea / ext4 default 0 2
UUID=81aa6aad-9d95-4f48-aa68-cf2b4a23f4aa / ext4 default 0 2
UUID=7f83f0bf-31b0-4977-97ed-a40d6c8c0c9a / ext4 default 0 2
UUID=4e8e58d8-ef0b-4ebd-8403-8fc81d3121f1 swap
what mistake i am doing in above file? What other option do we have to use rather than "Default" or mount except '/'. I have tried doing.
/boot, /, /sda2, /sda1. it give erros like:
- unrecognized mount option "default" or missing value
- mountall: mount /dev/sda5 [725] terminated with status 32
- mountall: filesystem counld not be mounted: /dev/sda5
Running command: lsblk -o NAME,FSTYPE,UUID
NAME FSTYPE UUID
sda
ââsda1 ext4 e8008245-01d3-4df3-b409-8036ad7cd0d0
ââsda2 ext4 ff122186-e22b-4ba6-a8fc-36ef76150bea
ââsda3
ââsda5 swap 4e8e58d8-ef0b-4ebd-8403-8fc81d3121f1
ââsda6 ext4 81aa6aad-9d95-4f48-aa68-cf2b4a23f4aa
ââsda7 ext4 7f83f0bf-31b0-4977-97ed-a40d6c8c0c9a
sr0
/
, at that). I'd guess that at least one of those partitions doesn't exist. – muru Nov 06 '14 at 07:53sudo blkid
it shows five UUID drives it means it have four partitions and one swap memory. Do i have to change mount point like/dev/sda1
,/dev/sda2
,/dev/sda3
,/dev/sda4
? – Sarz Nov 06 '14 at 07:56sudo lsblk -o NAME,FSTYPE,UUID
? – muru Nov 06 '14 at 07:58/
. Remove their lines, or mount them at other directories, like/media/something
. – muru Nov 06 '14 at 08:32