bmenge
Group: Members
Posts: 7
Joined: April 2007 |
|
Posted: May 01 2007,19:13 |
|
I have a frugal install on hda1 with hda2 as backup restore hda3 for data
I need to remount my hda1 with to edit the grub menu I used code [/opt]# sudo mount /dev/hda1 mount: /dev/hda1 already mounted or /mnt/hda1 busy mount: according to mtab, /dev/hda1 is already mountd on /mnt/hda1 [/opt]# sudo mount /dev/hda1 -o remount,rw
I think every thing is well and open grub/menu.lst with nano make the change and try to save and get the error can not save read only file system
then use mount command
[/boot/grub]# mount /dev/root on / type ext2 (rw) /dev/hda1 on /cdrom type ext2 (rw) /dev/cloop on /KNOPPIX type iso9660 (ro) /ramdisk on /ramdisk type tmpfs (rw,size=46668k,size=209331k) /proc/bus/usb on /proc/bus/usb type usbdevfs (rw,devmode=0666) unionfs on /bin type unionfs (rw,dirs=/ramdisk/bin=rw:/bin=ro) unionfs on /dev type unionfs (rw,dirs=/ramdisk/dev=rw:/dev=ro) unionfs on /etc type unionfs (rw,dirs=/ramdisk/etc=rw:/etc=rw) unionfs on /lib type unionfs (rw,dirs=/ramdisk/lib=rw:/lib=ro) unionfs on /sbin type unionfs (rw,dirs=/ramdisk/sbin=rw:/sbin=ro) unionfs on /usr type unionfs (rw,dirs=/ramdisk/usr=rw:/usr=ro) unionfs on /var type unionfs (rw,dirs=/ramdisk/var=rw) /dev/hda1 on /mnt/hda1 type ext2 (rw,nosuid,nodev) /dev/fd0 on /mnt/floppy type vfat (rw)
to me it looks like hda1 is read write what am I doing wrong
|