From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] Re: (Newbie) Problems with Riva TNT From: mirtchov@cpsc.ucalgary.ca In-Reply-To: <1070120687.59e74f400102806H@student.gla.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Sat, 29 Nov 2003 08:27:15 -0700 Topicbox-Message-UUID: 97fa7de8-eacc-11e9-9e20-41e7f4b1d025 Ed is the standard editor when no rio is present. When you get the nvidia problem fixed you'll find that you don't need another one. Sorry, no vi (check the emacs man page for more info :) So, assuming this is a standalone installation, the easiest way to compile a kernel is to: % cd /sys/src/9/pc % mk 'CONF=pcf' Where pcf is the name of the configuration file (where all hardware and subsystems are listed) for your particular installation. Different types of configurations there pertain to different types of systems -- pccpu is for cpu servers, pcdisk is for kfs machines (outdated, afaik) and pcf is for fossil-enabled installations, which is what the installation defaults to nowadays. This should work as a first step. If it doesn't we can look at the error message from mk and work from there. If, as you say, your cd is operational (and it should be able to boot in 1024x768x8 and even higher) then you can use its contents to make a new kernel, or just copy one from the already existing /386 directory on the cd: - boot from the cd - run '9fat:' to mount the hard drive's fat partition (where the kernel and plan9.ini reside) - copy /386/9xxxxxx to /n/9fat, you can see which kernel to copy by looking at /n/9fat/plan9.ini you can also use the cd's contents to compile a new kernel or to do a replica/pull from sources at bell-labs, in case your disk is outdated. just apply 'ramfs' generously whenever something complains: compiling a new kernel when booted from the cd (use ram as a storage device): % ramfs % cd /sys/src/9/pc % bind -cb /tmp . % mk 'CONF=pcf' ... hth, andrey