Gentoo Archives: gentoo-user

From: David Relson <relson@×××××××××××××.com>
To: gentoo-user@l.g.o
Cc: bm_witness@×××××.com
Subject: Re: [gentoo-user] udev broken...
Date: Sat, 28 Nov 2009 21:15:30
Message-Id: 20091128161506.3883dc6e@osage.osagesoftware.com
In Reply to: [gentoo-user] udev broken... by BRM
1 On Fri, 27 Nov 2009 20:06:59 -0800 (PST)
2 BRM wrote:
3
4 ...[snip]...
5
6 > Either way, I need to figure out how to get read-access to the root
7 > partition again. Any advice on either of the above (or other
8 > options), and more importantly (since any options depend on it) how
9 > to get read-write access to the root partition again?
10
11 I've encountered the "root is read-only and I need read-write"
12 problem. My solution is the script below.
13
14 #!/bin/sh
15 sync
16 /bin/mount -o remount,rw /
17 /bin/mount -o remount,rw /boot
18
19 Of course you can type the commands by hand. Since you've only got one
20 partition mounted and it's ro, you don't need the sync.
21
22 HTH,
23
24 David