![]() |
![]() |
| |||||||||||||||
Example--Making Local Diskettes Available to Other SystemsThe following example shows how to make any local diskette available to other systems on the network.
Example--Making Local PCMCIA Memory Cards Available to Other SystemsThe following example shows how to make any local PCMCIA memory card available to other systems on the network.
|
$ mkdir directory |
directory is the name of the directory that you create to serve as a mount point for the other system's CD.
Find the name of the media you want to mount.
$ showmount -e system-name export list for system-name: /cdrom/sol_9_sparc (everyone) |
As superuser, mount the media.
# mount -F nfs -o ro system-name:/media/media-name local-mount-point |
system-name | The name of the system whose media you will mount. |
media-name | The name of the media you want to mount. |
local-mount-point | The local directory onto which you will mount the remote media. |
Log out as superuser.
Verify that the media is mounted.
$ ls /media |
The following example shows how to mount the CD named sol_9_sparc from the remote system starbug onto the /cdrom directory of the local system.
$ showmount -e starbug export list for starbug: /cdrom/sol_9_sparc (everyone) $ su Password: password # mount -F nfs -o ro starbug:/cdrom/sol_9_sparc /cdrom # exit $ ls /cdrom cdrom0 sol_9_sparc |
The following example shows how to mount the diskette named myfiles from the remote system mars onto the /floppy directory of the local system.
$ cd /net/mars $ ls /floppy floppy0 myfiles $ su Password: password # mount -F nfs mars:/floppy/myfiles /floppy # exit $ ls /floppy myfiles |
The following example shows how to mount the PCMCIA memory card named myfiles from the remote system mars onto the /pcmem directory of the local system.
$ cd /net/mars $ ls /pcmem pcmem0 myfiles $ su Password: password # mount -F nfs mars:/pcmem/myfiles /pcmem # exit $ ls /pcmem myfiles |
Previous Contents Index Next ![]() |