You are not logged in.
Pages: 1
When upgrading my laptop I lost my fstab completely. So I let it sit, and it boot, however, I can't repair my fstab file because my entire root directory is read only. Is there a way to set the root directory to be writable in the command line? Thanks for any help,
JSkier
--
JSkier
Offline
mount -o remount,rw /
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
Command spit back it couldn't find / in fstab or mtab... I tried 'mount -t reiserfs remount,rw /' and got 'special device remount does not exist'. I'll keep playing and see what happens, if you have other ideas please post, thanks.
JSkier
--
JSkier
Offline
boot install cd
mount /dev/discs/discX/partY /mnt
vim /mnt/etc/fstab
then proceed to change your / line so it only has 'defaults' for the options (you most likely have ro set on there)
Nkawtg...n!
Offline
You missed the -o in your modified line.
You actually probably also want the root partition device.
mount -t reiserfs -o remount,rw /dev/discs/path/to/partition
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
Pages: 1