- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem in installing VCS for HPUX 11.11 using pfs...
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
11-18-2003 02:56 AM
11-18-2003 02:56 AM
Problem in installing VCS for HPUX 11.11 using pfs_mount
nohup pfsd &
nohup pfs_mountd &
pfs_mount -t rrip /dev/dsk/c1t1d1 /CDROM
Message
pfs_mount:giving up on /CDROM
Added the entry in the /etc/pfs_fstab file
/dev/dsk/c1t1d1 /CDROM pfs_rrip xlat=unix 10
No change
Tried
mount -F cdfs /dev/dsk/c1t1d1 /CDROM
mount succeeded but ehwn I selctec VCS it says that the software is not found in the CDROM.
Anybody has any ideas ? I already wasted 3 days on this even calling up veritas support.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:06 AM
11-18-2003 03:06 AM
Re: Problem in installing VCS for HPUX 11.11 using pfs_mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:06 AM
11-18-2003 03:06 AM
Re: Problem in installing VCS for HPUX 11.11 using pfs_mount
Your pfs_fstab syntax looks wrong,
/dev/dsk/c1t1d1 /CDROM pfs_rrip xlat=unix 10
The correct syntax should be
/dev/dsk/c1t1d1 /CDROM pfs-rrip xlat=unix 1 0
Correct the syntax and try
nohup pfsd &
nohup pfs_mountd &
pfs_mount /CDROM
Also on 11.11 if you have the these two patches installed,
PHKL_25620 - s700_800 11.11 Rock Ridge extension for ISO-9660
PHCO_25841 - s700_800 11.11 Add Rock Ridge extension to mount_cdfs(1M)
Then, you can mount the cd without using pfs_mount. Try,
# mount -F cdfs -o rr /dev/dsk/cxtydz /CDROM
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:39 AM
11-18-2003 03:39 AM
Re: Problem in installing VCS for HPUX 11.11 using pfs_mount
PHCO_25841
PHKL_26269
PHKL_28025
Now the syntax to mount the CDROM will be:
mount -F cdfs -orr /dev/dsk/c11t1d1 /CDROM
I would not put any entry to automatically mount a CDROM in fstab since your system bootup will be stalled when there is no CD in the tray. Or you can add the undocumented noauto flag. Don't be concerned that Veritas can't help...the cdrom situation for HP-UX is 'very convoluted' at best.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 03:53 AM
11-18-2003 03:53 AM
Re: Problem in installing VCS for HPUX 11.11 using pfs_mount
I was starting pfsd first and then started pfs_mountd. I changed the order.
Also I was mounting /dev/dsk and changed it to /dev/rdsk.
This was according to some latest docs I got from a colleague. I dont know which one was the solution but now I am able to mount and install the software. Somehow the file names are also changed slightly once mounted(INSTALLER. is now installer)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 06:01 AM
11-18-2003 06:01 AM
Re: Problem in installing VCS for HPUX 11.11 using pfs_mount
Bill Hassell, sysadmin