|
Lines 103-109
Link Here
|
| 103 |
<p>if it's a floppy, or this: |
103 |
<p>if it's a floppy, or this: |
| 104 |
|
104 |
|
| 105 |
<verb> |
105 |
<verb> |
| 106 |
mount -t msdos /dev/sd2s4 /zip |
106 |
mount -t msdos /dev/da2s4 /zip |
| 107 |
</verb> |
107 |
</verb> |
| 108 |
|
108 |
|
| 109 |
<p>for a ZIP disk with the factory configuration. |
109 |
<p>for a ZIP disk with the factory configuration. |
|
Lines 111-117
Link Here
|
| 111 |
<p>For other disks, see how they're laid out using <tt/fdisk/ or |
111 |
<p>For other disks, see how they're laid out using <tt/fdisk/ or |
| 112 |
<tt>/stand/sysinstall</tt>. |
112 |
<tt>/stand/sysinstall</tt>. |
| 113 |
|
113 |
|
| 114 |
<p>The rest of the examples will be for a ZIP drive on sd2, the third |
114 |
<p>The rest of the examples will be for a ZIP drive on da2, the third |
| 115 |
SCSI disk. |
115 |
SCSI disk. |
| 116 |
|
116 |
|
| 117 |
<p>Unless it's a floppy, or a removable you plan on sharing with |
117 |
<p>Unless it's a floppy, or a removable you plan on sharing with |
|
Lines 126-133
Link Here
|
| 126 |
and just use the BSD partitioning: |
126 |
and just use the BSD partitioning: |
| 127 |
|
127 |
|
| 128 |
<verb> |
128 |
<verb> |
| 129 |
dd if=/dev/zero of=/dev/rsd2 count=2 |
129 |
dd if=/dev/zero of=/dev/rda2 count=2 |
| 130 |
disklabel -Brw sd2 auto |
130 |
disklabel -Brw da2 auto |
| 131 |
</verb> |
131 |
</verb> |
| 132 |
|
132 |
|
| 133 |
<p>You can use disklabel or <tt>/stand/sysinstall</tt> to create multiple |
133 |
<p>You can use disklabel or <tt>/stand/sysinstall</tt> to create multiple |
|
Lines 139-151
Link Here
|
| 139 |
using the whole disk: |
139 |
using the whole disk: |
| 140 |
|
140 |
|
| 141 |
<verb> |
141 |
<verb> |
| 142 |
newfs /dev/rsd2c |
142 |
newfs /dev/rda2c |
| 143 |
</verb> |
143 |
</verb> |
| 144 |
|
144 |
|
| 145 |
<p>and mount it: |
145 |
<p>and mount it: |
| 146 |
|
146 |
|
| 147 |
<verb> |
147 |
<verb> |
| 148 |
mount /dev/sd2c /zip |
148 |
mount /dev/da2c /zip |
| 149 |
</verb> |
149 |
</verb> |
| 150 |
|
150 |
|
| 151 |
<p>and it's probably a good idea to add a line like this to |
151 |
<p>and it's probably a good idea to add a line like this to |
|
Lines 154-160
Link Here
|
| 154 |
future: |
154 |
future: |
| 155 |
|
155 |
|
| 156 |
<verb> |
156 |
<verb> |
| 157 |
/dev/sd2c /zip ffs rw,noauto 0 0 |
157 |
/dev/da2c /zip ffs rw,noauto 0 0 |
| 158 |
</verb> |
158 |
</verb> |
| 159 |
|
159 |
|
| 160 |
<sect1> |
160 |
<sect1> |
|
Lines 163-174
Link Here
|
| 163 |
<p>The secondary DOS partitions are found after ALL the primary |
163 |
<p>The secondary DOS partitions are found after ALL the primary |
| 164 |
partitions. For example, if you have an "E" partition as the |
164 |
partitions. For example, if you have an "E" partition as the |
| 165 |
second DOS partition on the second SCSI drive, you need to create |
165 |
second DOS partition on the second SCSI drive, you need to create |
| 166 |
the special files for "slice 5" in /dev, then mount /dev/sd1s5: |
166 |
the special files for "slice 5" in /dev, then mount /dev/da1s5: |
| 167 |
|
167 |
|
| 168 |
<verb> |
168 |
<verb> |
| 169 |
# cd /dev |
169 |
# cd /dev |
| 170 |
# ./MAKEDEV sd1s5 |
170 |
# ./MAKEDEV da1s5 |
| 171 |
# mount -t msdos /dev/sd1s5 /dos/e |
171 |
# mount -t msdos /dev/da1s5 /dos/e |
| 172 |
</verb> |
172 |
</verb> |
| 173 |
|
173 |
|
| 174 |
<sect1> |
174 |
<sect1> |
|
Lines 220-226
Link Here
|
| 220 |
FAT partition, under, say, <tt>/mnt</tt>. |
220 |
FAT partition, under, say, <tt>/mnt</tt>. |
| 221 |
|
221 |
|
| 222 |
<verb> |
222 |
<verb> |
| 223 |
dd if=/dev/rsd0a of=/mnt/bootsect.bsd bs=512 count=1 |
223 |
dd if=/dev/rda0a of=/mnt/bootsect.bsd bs=512 count=1 |
| 224 |
</verb> |
224 |
</verb> |
| 225 |
|
225 |
|
| 226 |
<p>Reboot into DOS or NT. NTFS users copy the <tt/bootsect.bsd/ |
226 |
<p>Reboot into DOS or NT. NTFS users copy the <tt/bootsect.bsd/ |
|
Lines 278-284
Link Here
|
| 278 |
For example, if your FreeBSD SCSI disk is probed by BIOS as BIOS |
278 |
For example, if your FreeBSD SCSI disk is probed by BIOS as BIOS |
| 279 |
disk 1, at the FreeBSD boot loader prompt you need to specify: |
279 |
disk 1, at the FreeBSD boot loader prompt you need to specify: |
| 280 |
<verb> |
280 |
<verb> |
| 281 |
Boot: 1:sd(0,a)/kernel |
281 |
Boot: 1:da(0,a)/kernel |
| 282 |
</verb> |
282 |
</verb> |
| 283 |
|
283 |
|
| 284 |
<p>On FreeBSD 2.2.5 and later, you can configure <htmlurl |
284 |
<p>On FreeBSD 2.2.5 and later, you can configure <htmlurl |
|
Lines 385-391
Link Here
|
| 385 |
this for example with |
385 |
this for example with |
| 386 |
|
386 |
|
| 387 |
<verb> |
387 |
<verb> |
| 388 |
dd if=/dev/zero of=/dev/rsd0 count=15 |
388 |
dd if=/dev/zero of=/dev/rda0 count=15 |
| 389 |
</verb> |
389 |
</verb> |
| 390 |
|
390 |
|
| 391 |
<p>Alternatively, the undocumented DOS ``feature'' |
391 |
<p>Alternatively, the undocumented DOS ``feature'' |