Date: Fri, 12 Nov 1999 02:38:10 +0100 (CET) From: Oliver Fromme <olli@dorifer.heim3.tu-clausthal.de> To: freebsd-stable@FreeBSD.ORG Subject: Re: Mounting an ATAPI-CDROM ? Message-ID: <199911120138.CAA25753@dorifer.heim3.tu-clausthal.de>
next in thread | raw e-mail | index | archive | help
Allix Primus wrote in list.freebsd-stable: > At boot time it shows wdc0 as the cdrom , but it won't mount . I checked = > the /dev/ and the wdc0 isn't there either. Is there something in the = > kernel I should add ? wdc0 ist the IDE controller, not the CD-ROM drive. Look for acd0 (ATAPI CD-ROM drive) in your boot messages. Type this command: dmesg | grep acd If it's not there, it's probably missing in your kernel's config file (or there's a hardware problem), so simply add it and make a new kernel If it's there, then the following should mount a CD: mount -t cd9660 /dev/acd0c /mnt (Note the "c" character has been appended to the device name, which is necessary to specify the "partition". There are no partitions on a CD, so "c" is used to specify "just the whole thing". I think you may use "a" as well.) Regards Oliver -- Oliver Fromme, Leibnizstr. 18/61, 38678 Clausthal, Germany (Info: finger userinfo:olli@dorifer.heim3.tu-clausthal.de) "In jedem Stück Kohle wartet ein Diamant auf seine Geburt" (Terry Pratchett) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199911120138.CAA25753>