From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <666de0517e982a8cdbb3f45e0c278b16@quintile.net> From: "Steve Simon" Date: Mon, 15 Aug 2005 18:26:00 +0100 To: 9fans@cse.psu.edu Subject: Re: [9fans] accesing a local fossil In-Reply-To: <000001c5a1a8$62471350$e000a8c0@OBLIVIONDT> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 7833a544-ead0-11e9-9d60-3106f5b1d025 Hi, > %fossil/fossil -f /dev/sdC0/fossil > > then I listed /srv but there was no /srv/fossil entry there, so I could not > mount. This happens because the fossil config file burnt onto the start of the fossil partition does not contain a srv command, it is passed on the command line when fossil is envoked. /sys/src/9/boot/local.c:256 run("/boot/fossil", "-f", partition, "-c", "srv -A fboot", "-c", "srv -p fscons", 0); You could start the bootable CDROM and then type: % fossil/fossil -f /dev/sdC0/fossil -c 'srv -APW open' -c 'srv -p fscons' % mount /srv/open /n/open Your fossil filesystem should now appear in /n/open/active/ and all permission checking will be turned off so you can fix anything you like. It is definitely possible to boot using other boot managers, and you can even use the NT/Win2k/XP boot manager though the installer only knows about FAT filesystems, you will have to edit the files on NTFS partition by hand. I suggest you check the 9fans archives there are several theads on this subject, E.G. http://groups.google.com/group/comp.os.plan9/browse_frm/thread/8dbf0f7e64f51541 -Steve