From 485f23347f6a88a019c837affa44a2f08e2c7162 Mon Sep 17 00:00:00 2001 From: asami Date: Wed, 9 Oct 1996 20:52:35 +0000 Subject: Add two entries about ccd. --- share/doc/FAQ/FAQ.sgml | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) (limited to 'share') diff --git a/share/doc/FAQ/FAQ.sgml b/share/doc/FAQ/FAQ.sgml index c467ad2..f7ecd87 100644 --- a/share/doc/FAQ/FAQ.sgml +++ b/share/doc/FAQ/FAQ.sgml @@ -1,11 +1,11 @@ - +
Frequently Asked Questions for FreeBSD 2.X <author>The FreeBSD FAQ Team, <tt/FAQ@FreeBSD.ORG/ -<date>$Date: 1996/10/06 20:28:13 $ +<date>$Date: 1996/10/06 20:33:37 $ <abstract> This is the FAQ for FreeBSD systems version 2.X All entries are assumed to be relevant to FreeBSD 2.0.5+, unless otherwise noted. @@ -2645,6 +2645,49 @@ disk fd1 at fdc0 drive 1 </verb> </enum> + <sect1> + <heading>What's inappropriate about my ccd?</heading> + <p> + The symptom of this is: + <verb> + host# ccdconfig -C + ccdconfig: ioctl (CCDIOCSET): /dev/ccd0c: Inappropriate file type or format + host# + </verb> + + <p> + This usually happens when you are trying to concatenate the + `c' partitions, which default to type `unused'. The ccd + driver requires the underlying partition type to be + FS_BSDFFS. Edit the disklabel of the disks you are trying + to concatenate and change the types of partitions to + `4.2BSD'. + + <sect1> + <heading>Why can't I edit the disklabel on my ccd?</heading> + <p> + The symptom of this is: + <verb> + host# disklabel ccd0 + (it prints something sensible here, so let's try to edit it) + host# disklabel -e ccd0 + (edit, save, quit) + disklabel: ioctl DIOCWDINFO: No disk label on disk; + use "disklabel -r" to install initial label + host# + </verb> + + <p> + This is because the disklabel returned by ccd is actually a + `fake' one that is not really on the disk. You can solve + this problem by writing it back explicitly, as in: + <verb> + host# disklabel ccd0 > /tmp/disklabel.tmp + host# disklabel -Rr ccd0 /tmp/disklabel.tmp + host# disklabel -e ccd0 + (this will work now) + </verb> + <sect> <heading>Networking</heading> -- cgit v1.1