From owner-freebsd-questions Fri Mar 10 17:33:04 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id RAA28236 for questions-outgoing; Fri, 10 Mar 1995 17:33:04 -0800 Received: from halon.sybase.com (halon.sybase.com [192.138.151.33]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id RAA28228 for ; Fri, 10 Mar 1995 17:32:59 -0800 Received: from sybase.com (sybgate.sybase.com) by halon.sybase.com (5.0/SMI-SVR4/SybFW4.0) id AA21751; Fri, 10 Mar 1995 11:46:29 -0800 Received: from red_oak.sybgate.sybase.com by sybase.com (4.1/SMI-4.1/SybH3.4) id AA14465; Fri, 10 Mar 95 11:44:19 PST Received: by red_oak.sybgate.sybase.com (4.1/SMI-4.1/SybEC3.2) id AA05908; Fri, 10 Mar 95 14:44:16 EST Date: Fri, 10 Mar 95 14:44:16 EST From: jeffa@sybase.com (Jeff Anuszczyk) Message-Id: <9503101944.AA05908@red_oak.sybgate.sybase.com> To: exs@sperry.mhs.compuserve.com Subject: Re: I/O devices; mouse Cc: questions@FreeBSD.org content-length: 0 Sender: questions-owner@FreeBSD.org Precedence: bulk > Or something to that effect. Anyway, no entries for either device are > found in /dev. You don't find a /dev/tty00 or /dev/tty01? If not then clearly you won't be able to access the serial ports. Take a look at the file /dev/MAKEDEV. This is the main script that drives the creation of the device special files. You can simply cd /dev and do something like the following: sh ./MAKEDEV tty00 I have to confess it's been a while since i did tty00 so if you take a quick look at this script you should see the section for creating tty* type devices. Follow the instructions at that point. Oh yea, if you haven't realize this yet: COM1 ==> /dev/tty00 COM2 ==> /dev/tty01 > If this is not a bug then: It isn't in so much as failure to have these files will do this. However, they are always created when the system gets installed. So, I'm a bit baffled as to why you don't have them. > Do these need to be made explicitly? In your case I guess the answer is yes... via the MAKEDEV script. > I did not install /src. I believe major/minor numbers are out > there but... > > I also get an error when trying to mount the CD-ROM drive. > (FreeBSD 2.0 on CD) > mount /dev/cd0a /mnt > returns the error > Can't mount /dev/cd0a on /mnt: ??Invalid or Illegal?? super block > What might be the problem here? Yea, CD-ROM's are in 9660 format not UFS filesystems. You need to mount this using either: V1.1.5.1: mount -t isofs /dev/cd0a /cdrom V2.0+: mount -t cd9660 /dev/cd0a /cdrom Have fun, Jeff