- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: export cdrom to
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
05-18-2006 03:35 PM
05-18-2006 03:35 PM
export cdrom to
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 03:42 PM
05-18-2006 03:42 PM
Re: export cdrom to
mkdir /cdrom
mount /dev/dsk/cXdXtX
then
edit file /etc/exports and place a line like this :
/cdrom -access=server1:server2
server1 or server2 are the servers without cdrom drives. It can be more than one or two. Just separate them by column signs.
save and exit
run command
exportfs -a
then go to the server without cdrom drive
mkdir /cdrom
mount servercd:/cdrom /cdrom
here servercd is the name of the server which contains the cdrom drive
hope it helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 04:09 PM
05-18-2006 04:09 PM
Re: export cdrom to
I tried your method , I still have question .
here is my step :
Assume server A has cdrom , the cdrom path is /dev/cdrom , then add "/dev/cdrom -access=serverB" to /etc/exports and run "exportfs -a" , then in serverB , run "mount serverA:/mnt/cdrom /tmp" , is that right ? I tried it , but still mount it , does cdrom is unable to export to another server ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 05:13 PM
05-18-2006 05:13 PM
Re: export cdrom to
mount /dev/dsk/c1t2d3 /cdrom
swreg -l depot /cdrom
Then run swinstall and use a network depot to the server that it is mounted on.
- Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 05:27 PM
05-18-2006 05:27 PM
Re: export cdrom to
I may be share the cdrom with other unix-like distro , the swreg and depot seems only work on hp-unix server ... thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 05:58 PM
05-18-2006 05:58 PM
Re: export cdrom to
I am not sure what you are trying to do with this cdrom export but the instructions given applies basically to HPUX or any modern version of unix. If your purpose is something else, you had better explain it to get better responses.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 06:26 PM
05-18-2006 06:26 PM
Re: export cdrom to
In local server1:
# mount -r /dev/dsk/cxtydz /cdrom
cxtydz --> DVD/CD device.
# bdf /cdrom
In local /etc/exports
/cdrom -anon=65534,ro,root=server2
# export /cdrom
In server2:
# mount -F nfs host:/cdrom /cdrom
When you finish,
In server2:
# unmount /cdrom
In server1:
exportfs -u /cdrom
umount /cdrom
rgs,
ran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 06:58 PM
05-18-2006 06:58 PM
Re: export cdrom to
I am doing what you are talking, "mount the cdrom locally" , but when I mount it, it pop the error , it seems the cdrom is unable to mount as a path , could advise what is wrong ? thx
mount /dev/cdrom /tmp/cdrom
mount: /dev/cdrom is not a block device
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 07:18 PM
05-18-2006 07:18 PM
Re: export cdrom to
ioscan -fnCdisk -> to know device path of cdrom.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2006 07:56 PM
05-18-2006 07:56 PM
Re: export cdrom to
you seem to be mounting the cdrom incorrectly first.
mount /dev/cdrom /tmp/cdrom is incorrect
you need to use the special device files o correctly mount the cdrom drive
get the device files from ioscan first
#ioscan -funC disk
will be c0t2d0 or something similar
then mkdir /cdrom if you havent already
then
#mount /dev/dsk/c0t2d0 /cdrom
this will mount the cdrom drive, providing there is a disk in it.
then carry on with exportingas already stated previously
ANdy