- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mounting CDROM from
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
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
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
02-12-2004 10:20 PM
02-12-2004 10:20 PM
Could any one tell how to mount a cdrom from another server?
Thanks
John Jayaseelan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:33 PM
02-12-2004 10:33 PM
Re: Mounting CDROM from
mount server:/cdrom_mountpoint /local_cdrom_mountpoint should do it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:38 PM
02-12-2004 10:38 PM
Re: Mounting CDROM from
Please tell what should be value for the mount_point, is the mount directory.
Received the following while trying to mount the device.
# mount /dev/dsk/c0t11d0 /cdrom
/dev/dsk/c0t11d0: unrecognized file system
[cctest01]: /root
# mount /dev/rdsk/c0t11d0 /cdrom
mount: /dev/rdsk/c0t11d0 is an invalid operand
[cctest01]: /root
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:39 PM
02-12-2004 10:39 PM
Re: Mounting CDROM from
mount | grep cdrom
if not ioscan -fnCdisk to find the device
mount /dev/dsk/c1t2d0 /cdrom
then do from the remote server as pete said.
:-) John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:45 PM
02-12-2004 10:45 PM
Re: Mounting CDROM from
Mounting on the local system seems to be fine; the error is due to incorrect device file.
Following message received during the mount from remote server.
# mount cctest01:/cdrom /cdrom
Permission denied
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:52 PM
02-12-2004 10:52 PM
Re: Mounting CDROM from
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:53 PM
02-12-2004 10:53 PM
Re: Mounting CDROM from
What you need to do is edit /exports and put in the line:
/cdrom
And then run a 'exportfs -a'.
Also make sure the NFS server is indeed an NFS server. It should run the nfsd process. If not, change /etc/rc.config.d/nfsconf and change the value of NFS_SERVER to 1. Then run /sbin/init.d/nfs.server start.
The same must be done on the NFS client, but with the NFS_CLIENT variable and /sbin/init.d/nfs.client start.
After that, do a showmount -e cctest01 to see if /cdrom is exported succesfully on the server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 10:59 PM
02-12-2004 10:59 PM
Re: Mounting CDROM from
# ps -ef|grep -i nfsd
root 1873 1 0 Dec 13 ? 4:13 /usr/sbin/nfsd 4
root 1874 1873 0 Dec 13 ? 4:15 /usr/sbin/nfsd 4
root 1880 1873 0 Dec 13 ? 4:22 /usr/sbin/nfsd 4
root 1878 1873 0 Dec 13 ? 4:18 /usr/sbin/nfsd 4
root 1890 1 0 Dec 13 ? 5:25 /usr/sbin/rpc.pcnfsd
Entry in /etc/exports file
/cdrom -ro,root=lclass1
# exportfs -av
re-exported /cdrom
re-exported /ultima
re-exported /ultima2
exportfs error: /ultima/extrasp: No such file or directory
re-exported /home/ultima
re-exported /home/proadm
re-exported /ultima
exportfs error: /ultima/master/client/doctemps: parent-directory (/ultima) alrea
dy exported
re-exported /home/informix/unloads
re-exported /home/informix
re-exported /home/informix/dump
# mount cctest01:/cdrom /cdrom
Permission denied
[lclass1]: /root
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 11:48 PM
02-12-2004 11:48 PM
Re: Mounting CDROM from
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 11:57 PM
02-12-2004 11:57 PM
Re: Mounting CDROM from
Could you please explain what do you mean by â nothing stopping you doing this in /etc/inetd.conf.'
Both the servers are having the following settings on /etc/rc.config.d/nfsconf.
NFS_CLIENT=1
NFS_SERVER=1
The permissions for the remote /cdrom dir is
dr-xr-xr-x 1 root sys 10240 Nov 12 1997 cdrom
I did change below, but still gives the same message
drwxrwxrwx 2 root sys 96 Jul 24 1998 cdrom
Than
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 11:57 PM
02-12-2004 11:57 PM
Re: Mounting CDROM from
Could you please explain what do you mean by â nothing stopping you doing this in /etc/inetd.conf.'
Both the servers are having the following settings on /etc/rc.config.d/nfsconf.
NFS_CLIENT=1
NFS_SERVER=1
The permissions for the remote /cdrom dir is
dr-xr-xr-x 1 root sys 10240 Nov 12 1997 cdrom
I did change below, but still gives the same message
drwxrwxrwx 2 root sys 96 Jul 24 1998 cdrom
Than
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2004 12:08 AM
02-13-2004 12:08 AM
Re: Mounting CDROM from
See if there is anything denying you access to nfs in there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2004 12:12 AM
02-13-2004 12:12 AM
Re: Mounting CDROM from
The file /var/adm/inetd.sec on the remote server contains the following entry.
dtspc allow 127.0.0.1 loopback
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2004 12:24 AM
02-13-2004 12:24 AM
SolutionI think the problem is caused by a DNS / /etc/hosts problem which resolves your NFS client to something other then the server you specified. By commenting out export parameters for /cdrom, it's available to any host. If that makes it work, you can try again to add export parameters, for instance with the fully qualified domain name of the NFS client, instead of the short name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2004 01:01 AM
02-13-2004 01:01 AM
Re: Mounting CDROM from
The exports file is changed below. Still not able to mount from other server.
/cdrom -ro,root=lclass1:cctest02
#/ultima2 -root=ccwin01:bedrock
#/home/proadm -root=ccwin01
#/ultima -root=ccprod01:ccwin01
# exportfs -av
re-exported /cdrom
If the changes need to be done are very specific, please let me know.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 01:56 AM
02-16-2004 01:56 AM
Re: Mounting CDROM from
1) On the exports list, I always end the root list with a ":", i.e.
/cdrom -ro,root=lclass1:cctest02:
2) When mounting the cdrom, use the -r option, i.e. mount -r remote_server:/cdrom /cdrom
3) Ping your remote server name and make sure the ip address is correctly identified.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 07:35 AM
02-16-2004 07:35 AM
Re: Mounting CDROM from
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2004 07:41 AM
02-16-2004 07:41 AM
Re: Mounting CDROM from
Looks like lclass1 is being seen as a different host than you allowed in cctest01's exports file. Enable connection logging on cctest01 and see how lclass1 is coming as. Add that IP/hostname to your exports and re-export.
on cctest01
#inetd -l
#tail -f /var/adm/syslog/syslog.log
from lclass1 do
$telnet cctest01
Observe the connection that logged as in syslog.log of cctest01. Add it to your exports file and re-export.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2004 08:47 PM
02-17-2004 08:47 PM
Re: Mounting CDROM from
John Jayaseelan