- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mounting a cdrom remotely (nfs)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:20 AM
06-06-2002 07:20 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:25 AM
06-06-2002 07:25 AM
Re: mounting a cdrom remotely (nfs)
/dev/dsk/c0t6d0 /cdrom cdfs ro 0 3
# more /etc/exports
/cdrom -ro
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:25 AM
06-06-2002 07:25 AM
Re: mounting a cdrom remotely (nfs)
For mounting a CDROM thru NFS, First go the Box where CDROM physically connected and add entry in /etc/exports file. U should put option as read only (U are getting the permission error because of this only). Then
#exportfs -a
Then go to the remot box and try to mount.
bEST OF LUCK
sHAHUL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:25 AM
06-06-2002 07:25 AM
Re: mounting a cdrom remotely (nfs)
# exportfs -v
to export all mentioned in /etc/exports:
# exportfs -a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:42 AM
06-06-2002 07:42 AM
Re: mounting a cdrom remotely (nfs)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:45 AM
06-06-2002 07:45 AM
Re: mounting a cdrom remotely (nfs)
Mount the cdrom on your server
#mount -F cdfs -ro /dev/dsk/c1t2d0 /cdrom
Then put an entry in /etc/exports
/cdrom -ro
Then do
# exportfs -a
The go to the remote box and mount it
#mount server1:/cdrom /cdrom
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 07:46 AM
06-06-2002 07:46 AM
Re: mounting a cdrom remotely (nfs)
The entry in my /etc/exports is
/cdrom -ro
I normally mount the cdrom on the local machine, run exportfs -a, then on the remote machine do a mount command
mount
Regards,
Hilary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 08:01 AM
06-06-2002 08:01 AM
Re: mounting a cdrom remotely (nfs)
This exportfs error normally comes, when you *mix* the exports and mounts with 'pfs' commands. Make sure that you are not using pfs_exportfs and pfs_mount commands. You can export with exportfs and mount with pfs_mount command. Use exportfs and normal mount command.
Just a thought ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 08:03 AM
06-06-2002 08:03 AM
Re: mounting a cdrom remotely (nfs)
Please read this - "You can export with exportfs and mount with pfs_mount command."
as:
"You can NOT export with exportfs and mount with pfs_mount command."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 08:38 AM
06-06-2002 08:38 AM
Re: mounting a cdrom remotely (nfs)
Too many levels of remote in path??? Sounds like U are exporting something which remotely mounted!! Please check up whether Ur CDROM is local to the BOX or remotely mounted there?
Normally this excercise is very simple... Just export it and mount it....
Once again cross check everything...
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 08:41 AM
06-06-2002 08:41 AM
SolutionTry this,
on node1 (local system)
mount /dev/dsk/cxtydz /cdrom
exportfs -i /cdrom
on node2 (remote system)
mount node1:/cdrom /cdrom
Once you have ffinished,
on node2
umount /cdrom
on node1
umount /cdrom
You should use the name or the ip address of node1 on node2. Use ip address if the hostname is not resolvable on node2.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 09:00 AM
06-06-2002 09:00 AM
Re: mounting a cdrom remotely (nfs)
Here is what you have to do :
A. Perform these steps on the local system:
1. nohup /usr/sbin/pfs_mountd &
2. nohup /usr/sbin/pfsd &
3. Add the filesystem to /etc/pfs_fstab
4. Add the filesystem to /etc/pfs_exports
5. pfs_exportfs -a
6. pfs_mount /cdrom
B. Perform these steps on the remote system:
1. nohup /usr/sbin/pfs_mountd &
2. nohup /usr/sbin/pfsd &
3. pfs_mount -o xlat=unix remotesystemA:/cdrom /localmnt_pnt
you can look at this document
http://support1.itrc.hp.com/service/cki/docDisplay.do?docId=200000032087697
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:39 PM
06-06-2002 12:39 PM
Re: mounting a cdrom remotely (nfs)
if this is an HP cd. register the mounted CD on the local system, something like:
mount /dev/dsk/c1t2d3 /cdrom
swreg -l depot /cdrom
Now go to any HP-UX system on your network and run
swinstall and tell it you want to use the Network depot on your server with
the CD mounted.
~ Richard