################################################################################ # Searchable Keywords: mount cdrom iso9660 sr0 scd0 mounting an exported filesystem from another linux box (see exports) [root@abby /etc]# mount rachel:/mnt_me/Redhat -o rw -t nfs /floppy [root@abby /etc]# mount /dev/sda1 on / type ext2 (rw) none on /proc type proc (rw) rachel:/mnt_me/Redhat on /floppy type nfs (rw,addr=172.16.60.148) mount rachel:/mnt_me/Redhat -o rw -t nfs /floppy remote machine:/exported/filesystem -o(options)(read/write)rw -t(typefs) /floppy(local dir) also; [root@abby /]# mount rachel:/mnt_me/Redhat /mnt defaults are used which is -o rw nfs mount a disc read/write that already has a dos filesystems on it mount -o rw -t msdos /dev/fd0 /floppy or mount -o rw -t vfat /dev/fd0 /floppy << mount a newly attached cdrom drive on a sparclinux box >> Mount a sparclinux cdrom drive mount -t iso9660 /dev/scd0 /cdrom the read-only version mount -o ro -t iso9660 /dev/scd0 /cdrom NOTE: on intel the device may be sr0. /dev/cdrom may exist but will probably be a simlink to /dev/scd0 - or 1 If it is an external cdrom it may be required to be at scsi ID 6 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>