![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| CDROM Doesn't Auto Mount - Solaris 9 | mshafi | UNIX for Advanced & Expert Users | 2 | 11-02-2005 02:13 PM |
| can't mount cdrom | niamh | UNIX for Dummies Questions & Answers | 2 | 04-29-2004 09:50 PM |
| mount cdrom | q30 | UNIX for Advanced & Expert Users | 2 | 01-09-2003 11:06 PM |
| mount cdrom | hassan2 | UNIX for Dummies Questions & Answers | 5 | 06-25-2002 05:04 PM |
| mount cdrom | Stormpie | UNIX for Dummies Questions & Answers | 2 | 01-23-2002 02:43 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Remote mount of a cdrom
I am trying to remote mount a cdrom (Sun Ultra 10 running release 7) on another system.
I followed the following procedure offered by a friend: To allow a drive to be mounted, edit /etc/dfs/dfstab file to include the following line: share -F nfs -o ro /usr/man On computer with drive to be shared, type: share -F nfs /cdrom/cdrom0 On Computer with drive to be mounted, type mount "remote hostname":/cdrom/cdrom0 /mnt I get this error message after the mount command - RPC:: Program Not Registered. What am I missing? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
issue the command:
shareall -F nfs on the computer with shared cdrom and make sure nfs daemon is running on the on this computer issued ps -ef | grep nfs this should list the nfs daemon if nfs deamon is not running you could start it up by cd /etc/init.d and issued ./nfs.server start on the computer with drive to be mounted issue mount -v "remote hostname":/cdrom/cdrom0 /mnt |
|
#3
|
||||
|
||||
|
QUOTE:
I get this error message after the mount command - RPC:: Program Not Registered. There are a few things you can look at. First, it looks like you don't have the rpcd daemon running. That needs to be running. Also, I would do this. Telnet to the box exporting the CD from your other box. Then run who -R to show all remote connections. Make sure that you actual hostname is the name used in this output. I had a problem where my hostname is "myhost" but my exported name is "myhosta"!! Hope this helps My brain is your brain...
__________________
My brain is your brain |
|
#4
|
|||
|
|||
|
mount -v
I tried your solution:
mount -v "remote hostname":/cdrom/cdrom0 /mnt on Solaris 8 and get the error "can't use -v option with arguments. I try: mount "remote hostname":/cdrom/cdrom0 /mnt and it works OK. you can't start the /etc/init.d/nfs.server daemon unless you have: share -F nfs /cdrom/cdrom0 in /etc/init.d/dfstab |
|||
| Google The UNIX and Linux Forums |