HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- re: pfs_mount behaviour
Operating System - HP-UX
1834700
Members
2095
Online
110069
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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-2005 12:56 AM
06-06-2005 12:56 AM
re: pfs_mount behaviour
why do I get multiple instances of the same filename on a cdrom using pfs_mount? is this expected behaviour?
this is the script used to start the pfs daemons.
pfs_mountd &
pfsd &
pfs_mount -o xlat=unix /dev/rdsk/c3t2d0 /cdrom
this is the script used to start the pfs daemons.
pfs_mountd &
pfsd &
pfs_mount -o xlat=unix /dev/rdsk/c3t2d0 /cdrom
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 01:14 AM
06-06-2005 01:14 AM
Re: re: pfs_mount behaviour
Its not normal.
How many pfs_mountd processes do you have running.
This behavior may happen if there are more than one copy of these processes running.
At this point, the only way to clear may be to kill the processes and umount.
SEP
How many pfs_mountd processes do you have running.
This behavior may happen if there are more than one copy of these processes running.
At this point, the only way to clear may be to kill the processes and umount.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 01:25 AM
06-06-2005 01:25 AM
Re: re: pfs_mount behaviour
currently the number of processes running are
root@bddev:/cdrom> ps -ef | grep -i pfs
root 21679 21676 0 13:18:38 pts/ta 0:00 pfs_mountd.rpc
root 21676 1 0 13:18:38 pts/ta 0:00 pfs_mountd
root 21710 21708 0 13:19:58 pts/ta 0:00 pfs_mountd.rpc
root 21712 21709 0 13:19:58 pts/ta 0:00 pfsd.rpc
root 21708 1 0 13:19:58 pts/ta 0:00 pfs_mountd
root 21680 21677 0 13:18:38 pts/ta 0:00 pfsd.rpc
root 21709 1 0 13:19:58 pts/ta 0:00 pfsd
root 21677 1 0 13:18:38 pts/ta 0:00 pfsd
so do I need to kill all the processes, umount then mount the cdrom?
root@bddev:/cdrom> ps -ef | grep -i pfs
root 21679 21676 0 13:18:38 pts/ta 0:00 pfs_mountd.rpc
root 21676 1 0 13:18:38 pts/ta 0:00 pfs_mountd
root 21710 21708 0 13:19:58 pts/ta 0:00 pfs_mountd.rpc
root 21712 21709 0 13:19:58 pts/ta 0:00 pfsd.rpc
root 21708 1 0 13:19:58 pts/ta 0:00 pfs_mountd
root 21680 21677 0 13:18:38 pts/ta 0:00 pfsd.rpc
root 21709 1 0 13:19:58 pts/ta 0:00 pfsd
root 21677 1 0 13:18:38 pts/ta 0:00 pfsd
so do I need to kill all the processes, umount then mount the cdrom?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2005 01:49 AM
06-06-2005 01:49 AM
Re: re: pfs_mount behaviour
Yes...kill the daemons...
After that, install Rockridge extensions:
Do not use pfs_mount!. Install the Rock-Ridge extension patches instead and never worry about these problems. For HP-UX 11.00 you will need forget all about PFS and install PHKL_26448 (now superceded by PHKL_28060), PHCO_26449, and PHKL_26450 to have HP-UX recognize those file systems automatically on mount! For HP-UX 11.11 (11i) you need PHCO_25841, PHKL_26269, and PHKL_25760 (now superceded by PHKL_28025).
Installation of patches requires a reboot.
swinstall -x autoreboot=true -x autoselect_patches=TRUE -x patch_match_target=TRUE -x patch_filter=*
.* -s pc1005:/var/software/hp/rockridge @`hostname`
To mount a Rockridge CD (instead of using pfs_mount):
mount -F cdfs -o ro,rr,noauto /dev/cdrom /cdrom
To unmount:
umount /cdrom
To share out the cd over NFS:
exportfs -i -o ro,anon=0 /cdrom
On remote:
mount -F nfs sha1:/cdrom /zmnt
Note: client server does NOT need to have Rock Ridge patches installed to access the cdrom remotely.
Rgds...Geoff
After that, install Rockridge extensions:
Do not use pfs_mount!. Install the Rock-Ridge extension patches instead and never worry about these problems. For HP-UX 11.00 you will need forget all about PFS and install PHKL_26448 (now superceded by PHKL_28060), PHCO_26449, and PHKL_26450 to have HP-UX recognize those file systems automatically on mount! For HP-UX 11.11 (11i) you need PHCO_25841, PHKL_26269, and PHKL_25760 (now superceded by PHKL_28025).
Installation of patches requires a reboot.
swinstall -x autoreboot=true -x autoselect_patches=TRUE -x patch_match_target=TRUE -x patch_filter=*
.* -s pc1005:/var/software/hp/rockridge @`hostname`
To mount a Rockridge CD (instead of using pfs_mount):
mount -F cdfs -o ro,rr,noauto /dev/cdrom /cdrom
To unmount:
umount /cdrom
To share out the cd over NFS:
exportfs -i -o ro,anon=0 /cdrom
On remote:
mount -F nfs sha1:/cdrom /zmnt
Note: client server does NOT need to have Rock Ridge patches installed to access the cdrom remotely.
Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP