- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 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
07-17-2002 05:26 AM
07-17-2002 05:26 AM
pfs_mount
pfs_mount raw_devive mount_point seems behave all ok.
But when ls mount_point the entries in the dir
is like
[h3mih008]/# ls /SD_CDROM/
ACCEL~H@
ACCEL~UD.TGZ;1 PAC_CODE.TXT;1
Somebody can help me?
bye
Luca
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 05:38 AM
07-17-2002 05:38 AM
Re: pfs_mount
Use -x or cdcase option while mounting
/usr/sbin/pfs_mount -t rrip -x unix /dev/dsk/cntndn /cdrom
mount -F cdfs -r -o cdcase /dev/dsk/cntndn /cdrom
Goodluck,
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 05:59 AM
07-17-2002 05:59 AM
Re: pfs_mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 06:28 AM
07-17-2002 06:28 AM
Re: pfs_mount
have this line in /etc/pfs_fstab. If the file does not exist, create one with that name,
/dev/dsk/c6t2d0 /cdrom pfs-rrip xlat=unix 1 0
here /dev/dsk/c6t2d0 in the block device file for the cdrom and /cdrom is the mount point.
now mount the cd using this format,
nohup pfs_mountd &
nohup pfsd &
pfs_mount /cdrom
once you have used the cd, unmount it using ,
pfs_umount /cdrom
now kill the pfs processes in this order,
pfsd.rpc
pfsd
pfs_mountd.rpc
pfs_mountd
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 06:41 AM
07-17-2002 06:41 AM
Re: pfs_mount
Instead of using pfs_mount, have you used the cdcase option with the mount command.
mount -o ro,cdcase -F cdfs /dev/dsk/cxdytz /SD_CDROM
Here /dev/dsk/cxtydz is the cdrom device file and /SD_CDROM is the mount point.
Also there is a patch which you can use such that you can mount the rockridge formatted oracle cd's using mount command without using pfs_mount.
Try this link to find out more about the patch.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf489107d277ad611abdb0090277a778c,00.html
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2002 06:59 AM
07-17-2002 06:59 AM
Re: pfs_mount
couple of ways to do it
1. mount -F cdfs -o cdcase /dev/dsk/cxtydz /cdrom
2. pfs mount like
pfs_mountd &
pfsd &
pfs_mount -x no_version x lower_case /dev/dsk/cxtydz /cdrom
you can also do a man ofs to get more options .
Manoj Srivastava