From owner-freebsd-questions Tue Apr 15 01:29:08 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA25376 for questions-outgoing; Tue, 15 Apr 1997 01:29:08 -0700 (PDT) Received: from david.siemens.de (david.siemens.de [139.23.36.11]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA25370 for ; Tue, 15 Apr 1997 01:29:04 -0700 (PDT) Received: from salomon.mchp.siemens.de (salomon.siemens.de [139.23.33.13]) by david.siemens.de (8.8.5/8.8.5) with ESMTP id KAA21474 for ; Tue, 15 Apr 1997 10:24:08 +0200 (MDT) Received: from curry.mchp.siemens.de (1@curry.mchp.siemens.de [146.180.31.23]) by salomon.mchp.siemens.de (8.8.4/8.8.4) with ESMTP id KAA29640 for ; Tue, 15 Apr 1997 10:28:59 +0200 (MDT) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.8.5/8.8.5) id KAA08342 for ; Tue, 15 Apr 1997 10:28:57 +0200 (MET DST) From: Andre Albsmeier Message-Id: <199704150828.KAA04284@curry.mchp.siemens.de> Subject: What is correct: "device st0" or "tape st0" To: freebsd-questions@freebsd.org Date: Tue, 15 Apr 1997 10:28:52 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, in LINT we can read: # The syntax for wiring down devices is: # controller scbus0 at ahc0 # Single bus device # controller scbus1 at ahc1 bus 0 # Single bus device # controller scbus3 at ahc2 bus 0 # Twin bus device # controller scbus2 at ahc2 bus 1 # Twin bus device # disk sd0 at scbus0 target 0 unit 0 # disk sd1 at scbus3 target 1 # disk sd2 at scbus2 target 3 # tape st1 at scbus1 target 6 # device cd0 at scbus? # "units" (SCSI logical unit number) that are not specified are # treated as if specified as LUN 0. # All SCSI devices allocate as many units as are required. # The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI # configuration and doesn't have to be explicitly configured. controller scbus0 #base SCSI code device ch0 #SCSI media changers device sd0 #SCSI disks device st0 #SCSI tapes device cd0 #SCSI CD-ROMs device od0 #SCSI optical disk Now what is correct: The upper, commented out line with "tape" or the lower line with "device"? Or doesn't it matter if I declare my tape as "tape" or "device"? Thanks -Andre