vote up 1 vote down star
1

I had a typo in my fstab and it boots to a commandline but is readonly, I know what the error is but i can't change it because it's mounted as readonly. I want to mount the filesystem and make the changes. I know I can boot a live distro and edit it that way, but i was wondering if there was an easier way to do it.

It's debian lenny by the way.

flag
You're probably in single user mode. Remount the file system. Do a "man mount" and lookup the "remount" and "rw" options. – Paul Tomblin Dec 20 '08 at 18:52
Comments are nice ;) – krosenvold Dec 20 '08 at 18:55
Yeah, well, I disagree with closing sysadmin questions, but not enough to get into a re-opening war with people. – Paul Tomblin Dec 20 '08 at 19:25
Get a live disk and boot the distribution on the cdrom. Then mount "/" as something like "/media/cdrom" and edit the entries. – Juan Dec 20 '08 at 19:37
as long as its linux its fine with me ;) – krosenvold Dec 20 '08 at 20:38
show 1 more comment

2 Answers

vote up 8 vote down

Yes, if you end up in single-user mode with a readonly root, try:

mount / -o remount,rw

Maybe a -n is necessary, maybe not. That should remount the root fs read/write (assuming there's nothing wrong with it).

Peace!

link|flag
vote up 0 vote down

My kernel command line looks like this:

$ cat /proc/cmdline
root=/dev/sda4 ro
$

Tell grub that it should omit passing "ro" to the kernel when booting (pressing esc, e on the entry you want edit will allow you to edit the arguments given to the kernel), and it will mount your root file system not read only anymore. Then you can change your /etc/fstab and restart.

link|flag
it's called grub, not grab. – hop Dec 25 '08 at 13:34
omg yeah indeed. thanks for telling – Johannes Schaub - litb Dec 25 '08 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.