- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: pfs_mount
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
08-20-2002 01:28 AM
08-20-2002 01:28 AM
How to mount remote server CD-rom on local server using PFS_MOUNT.
Thanks.
(Points will awarded for each response)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 01:34 AM
08-20-2002 01:34 AM
SolutionTo mount a CD-ROM disk:
pfs_mount /dev/rdsk/c0t6d0 /cd-rom
To mount a remote file system:
pfs_mount serv:/cd-rom /cd-rom
To fake an entry for iso9660 on /cd-rom:
pfs_mount -f -t iso9660 /dev/rdsk/c0t6d0 /cd-rom
To hard mount a remote file system:
pfs_mount -o hard serv:/cd-rom /cd-rom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 01:35 AM
08-20-2002 01:35 AM
Re: pfs_mount
Interchange Format you have to start pfs_mountd and pfsd.
# /usr/sbin/pfs_mountd &
[3] 1969
# /usr/sbin/pfsd &
[4] 1970
Edit or create the file /etc/pfs_fstab
/dev/dsk/c0t4d0 /ISO_CDROM pfs-iso9660 xlat=unix 0 0
/dev/dsk/c0t4d0 /ISO_RR_CDROM pfs-rrip xlat=unix 0 0
Create the dirs, if they don't exist
# ls -dl /ISO*
drwxr-xr-x 2 root root 4 Apr 2 20:44 ISO_CDROM
drwxr-xr-x 2 root root 4 Apr 2 20:44 ISO_RR_CDROM
Now it is easy to mount ISO CDROMs
# pfs_mount /ISO_CDROM
# ls -l /ISO_CDROM
drwxr-xr-x 2 root root 4488 May 6 1988 cdsample
# pfs_umount /ISO_CDROM
Or with long filenames# pfs_mount /ISO_RR_CDROM
# ls -l /ISO_RR_CDROM
-r--r--r-- 1 root root 4488 Nov 5 19:00 Copyright
dr-xr-xr-x 2 root root 1469 Oct 13 19:01 pictures_from_susi
One thing we have found out about pfs_mount is, DO NOT exit the session you start the
daemons with, until you are COMPLETLY finished! Once you finish installing the software,
return to the original session, window and perform the "pfs_umount". Then if you wish,
you can kill the daemons you started. (next reboot will take care of this too)
List them by performing a "ps", then kill them from the highest process ID on down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 01:41 AM
08-20-2002 01:41 AM
Re: pfs_mount
VERY IMPORTANT THING!!
When unmount the cd, use the pfs_umount command and not umount, this is because if you use umount instead pfs_umount you will have a lot of problems to extract the cd from your box.
Regards,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 01:43 AM
08-20-2002 01:43 AM
Re: pfs_mount
Please see :
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf489107d277ad611abdb0090277a778c,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 10:56 AM
08-20-2002 10:56 AM
Re: pfs_mount
since the advent of the new Rock Ridge patches to "mount(1m)" there is simply no need to use PFS any further!
Install the patches PHKL_26448, PHCO_26449, and PHKL_26450 and then use good old "mount(1m)" (say, your CD-ROM device is /dev/dsk/c0t0d0):
mkdir /cdrom
mount -o rr /dev/dsk/c0t0d0 /cdrom
# ... work ...
umount /cdrom
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 11:25 AM
08-20-2002 11:25 AM
Re: pfs_mount
A. Perform these steps on the local system:
1. nohup /usr/sbin/pfs_mountd &
2. nohup /usr/sbin/pfsd &
3. Add the filesystem to /etc/pfs_fstab
4. Add the filesystem to /etc/pfs_exports
5. pfs_exportfs -a
6. pfs_mount /cdrom
B. Perform these steps on the remote system:
1. nohup /usr/sbin/pfs_mountd &
2. nohup /usr/sbin/pfsd &
3. pfs_mount -o xlat=unix remotesystemA:/cdrom /localmnt_pnt
you can look at this document
http://support1.itrc.hp.com/service/cki/docDisplay.do?docId=200000032087697
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 08:59 AM
08-21-2002 08:59 AM
Re: pfs_mount
Please check these two documents.
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000048194521
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062684149
Geetha.