http://netbsd.i2p/docs/guide/en/chap-boot.html
For
example, if dmesg displays: # dmesg | grep ^cd cd0 at atapibus0 drive 1: <ASUS CD-S400/A, , V2.1H> type 5 cdrom removable the device name is cd0 , and you can mount the
CD-ROM with the following commands: # mkdir /cdrom # mount -t cd9660 -o ro /dev/cd0a /cdrom To make things easier, you can add a line to the /etc/fstab file: /dev/cd0a /cdrom cd9660 ro,noauto 0 0 Without the need to reboot, you can now mount the CD-ROM with: # mount /cdrom When the...