Date: Wed, 15 Mar 2000 23:21:22 +0000 From: Mark Ovens <mark@ukug.uk.freebsd.org> To: J McKitrick <jcm@freebsd-uk.eu.org> Cc: Joe Karthauser <joe@genius.systems.pavilion.net>, Joe Karthauser <joe@pavilion.net>, questions@freebsd.org Subject: Re: 4.0 questions Message-ID: <20000315232122.L244@parish> In-Reply-To: <20000315230607.A7156@dogma.freebsd-uk.eu.org>; from jcm@freebsd-uk.eu.org on Wed, Mar 15, 2000 at 11:06:07PM %2B0000 References: <20000315194743.F52322@florence.pavilion.net> <20000315195316.A5217@dogma.freebsd-uk.eu.org> <20000315200915.G52322@florence.pavilion.net> <20000315201904.A5253@dogma.freebsd-uk.eu.org> <20000315202416.B38482@genius.systems.pavilion.net> <20000315202923.D5433@dogma.freebsd-uk.eu.org> <20000315203813.A36837@genius.systems.pavilion.net> <20000315220442.C6240@dogma.freebsd-uk.eu.org> <20000315221509.K244@parish> <20000315230607.A7156@dogma.freebsd-uk.eu.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Mar 15, 2000 at 11:06:07PM +0000, J McKitrick wrote: > Couple of questions: > > i'm a little unclear on the MAKEDEV stuff with N disks and M slices. > Could someone clarify? > Yes, it means that you have to re-make the device nodes for your disks. I *think* that this is primarily for IDE disks (the wd* devices need replacing with ad*). So you need to do something like: parish# cd /dev parish# ls ad* ls: No match. parish# ./MAKEDEV ad0 parish# !ls ls ad* ad0 ad0b ad0d ad0f ad0h ad0s2 ad0s4 ad0a ad0c ad0e ad0g ad0s1 ad0s3 parish# ./MAKEDEV ad0s4a parish# !ls ls ad* ad0 ad0c ad0f ad0s1 ad0s4 ad0s4c ad0s4f ad0a ad0d ad0g ad0s2 ad0s4a ad0s4d ad0s4g ad0b ad0e ad0h ad0s3 ad0s4b ad0s4e ad0s4h parish# ./MAKEDEV ad0s1a parish# !ls ls ad* ad0 ad0c ad0f ad0s1 ad0s1c ad0s1f ad0s2 ad0s4a ad0s4d ad0s4g ad0a ad0d ad0g ad0s1a ad0s1d ad0s1g ad0s3 ad0s4b ad0s4e ad0s4h ad0b ad0e ad0h ad0s1b ad0s1e ad0s1h ad0s4 ad0s4c ad0s4f parish# etc. (I have SCSI disks, that's why *I* had no ad* devices :)) > jm > -- > --------------------------------------------- > Jonathon McKitrick / jcm@freebsd-uk.eu.org > "Tears from the depth of some divine despair > rise in the heart, and gather to the eyes > in looking on the happy autumn fields > and thinking of the days that are no more" > --------------------------------------------- -- Microsoft: Where do you want to go today? Linux: Where do you want to go tomorrow? BSD: Are you guys coming, or what? -Poster at LinuxWorld 2000 ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000315232122.L244>