- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- pfs mount and 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
09-20-2006 07:51 PM
09-20-2006 07:51 PM
I am having rp4440 and rp2470 servers. I want to install Oracle Apps on to rp2470. So I mounted the oracle CD on rp4440 using pfs_mount (as the contents were coming in upper-case). Then I tried exporting the /cdrom mount point to rp2470. Can anyone help me to get the commands to export a filesystem mounted with pfs_mount?
Thanks & Regards,
Shreejesh.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 08:02 PM
09-20-2006 08:02 PM
Re: pfs mount and nfs
Try mounting as follows.
mount -o rr,cdcase /dev/dsk/cxtxdx /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 08:59 PM
09-20-2006 08:59 PM
SolutionON THE SERVER SIDE:
a. create /etc/exports with: /cdrom -ro
b. /usr/sbin/exportfs -av
WARNING!!! before exportfs you have to pfs_umount the cd and mount it
again after the exportfs command
c. nohup /usr/sbin/pfs_mountd &
d. nohup /usr/sbin/pfsd &
NOTE: use ( #ioscan -funC disk ) to find the device name.
e. add the filesystem to /etc/pfs_fstab as follows : /dev/dsk/c0t2d0
/cdrom pfs-iso9660 ro,suid 0 0
f. add the filesystem to /etc/pfs_exports as follows : /cdrom -ro
g. pfs_exportfs -a
h. pfs_mount /cdrom
ON THE CLIENT SIDE :
a. nohup /usr/sbin/pfs_mountd &
b. nohup /usr/sbin/pfsd &
c. add the filesystem to /etc/pfs_fstab as follows :
Note: do not need to do this if entered in /etc/pfs_fstab , # pfs_mount /test
d. pfs_mount -o xlat=unix remotesystemA:/cdrom /test
Note: to unmount use : # pfs_umount /test
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2006 09:28 PM
09-20-2006 09:28 PM
Re: pfs mount and nfs
You should use the normal mount commands with the option to mount in lowercase
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2006 12:53 AM
09-21-2006 12:53 AM
Re: pfs mount and nfs
Thanks a lot. I am able to mount the CDROM.
Thanks & Regards,
Shreejesh