- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mount /cdrom remotely
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
12-20-2006 12:07 PM
12-20-2006 12:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 01:42 PM
12-20-2006 01:42 PM
Re: mount /cdrom remotely
Are you really saying that you need to access the cdrom on one machine from another machine? If so, then you can use NFS to export the CD on the first machine and then mount it on the second.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 07:57 PM
12-20-2006 07:57 PM
Re: mount /cdrom remotely
On Server with CD,
# mount -r /dev/dsk/cxtxdx/cdrom
Add in file /etc/exports:
/cdrom -anon=65534,ro,root=server_without_CD
# exportfs /cdrom
In Server without CD,
# mount -F nfs server_with_CD:/cdrom /cdrom
Or use SAM ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 09:07 PM
12-20-2006 09:07 PM
SolutionIf you have a server with two cell boards the CDROM\DVD is only wired to the first cell and not avialable on the second.
The only change I would make is that I would soft mount the CDROM. Otherwise if the CDROM is unmounted on the first server after which you attempt to access it...... shouldn't happen but I know from experience it does. For safety's sake also use the intr option too.
Regards
Andrew Y
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2006 09:45 PM
12-20-2006 09:45 PM
Re: mount /cdrom remotely
Ensure NFS Client is running on the Client (target ) server
Ensure NFS Server is running on the Server (source) server
add following into /etc/exports on source server
/cdrom -ro
on target
mkdir /
mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 12:32 AM
12-21-2006 12:32 AM
Re: mount /cdrom remotely
From ioscan command get CD-ROM device physical address and proceed for mounting.
mount -F cdfs -o rr /dev/dsk/cxtxdx /cdrom
Edit file /etc/exports and add below entry
/cdrom -ro
Run command exportfs -a to share file /cdrom
If CD-ROM is already shared skip above steps and proceed with below.
On the client all you need to do is run below command
mount serverip:/cdrom /mountpoint
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 12:52 AM
12-21-2006 12:52 AM
Re: mount /cdrom remotely
export the filesystem to nfs
on other remote machines, use nfs mount to access the cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:39 AM
12-21-2006 04:39 AM
Re: mount /cdrom remotely
On server with cdrom.
nohup pfs_mountd &
nohup pfsd &
mount -F cdfs -orr /dev/dsk/c0t0d0 /cdrom
vi /etc/exports
/cdrom -ro
Share the cdrom drive
exportfs /cdrom
On second server:
mkdir /cdrom2
mount -F nfs txsldsb2:/cdrom /cdrom2