- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what is the different of file system between hpux ...
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
10-08-2003 03:41 PM
10-08-2003 03:41 PM
I wich if this L2000 has something worng, another server rp5470 which OS is hpux 11.11 would still mount the file system in vg01. I have tried before, and what my step proceed to vgimport and vgchange -a y in rp5470 is successful. But finally, I type mountall command that hpux 11i didn't work. I don't if the question is the file system format is different between hpux 11.0 and 11.11 or what my setp is worng. Please help me, thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 03:47 PM
10-08-2003 03:47 PM
Re: what is the different of file system between hpux 11.0 and 11.11
The corresponding File system entries for your vg01 volume group should be there in the rp5470 /etc/fstab file then only mountall will work. Otherwise you need to mount the FS manually after doing vgimport and vgactivation.
Better way is see ur L2000 /etc/fstab and copy the corresponding vg01 FS lines in the rp5470 machine's /etc/fstab. Then mounall will work without any problem.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2003 04:19 PM
10-08-2003 04:19 PM
Re: what is the different of file system between hpux 11.0 and 11.11
mount -a
The filesystems are not the issue here. Look elsewhere.
SEP
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
10-09-2003 02:47 AM
10-09-2003 02:47 AM
Re: what is the different of file system between hpux 11.0 and 11.11
Try using fstyp on your 11.00 and 11.11 systems and compare:
ie.:
root@frfhpte3 # fstyp -v /dev/frfhpte3a/orarepo
version: 4
f_bsize: 8192
f_frsize: 1024
...
..
.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 04:16 AM
10-09-2003 04:16 AM
SolutionIf they are not in MC/SG, then you need to unmount all file systems in /dev/vg01 and vgchange -a n /dev/vg01 on the L2000 first.
Then, vgchange -a y /dev/vg01 on the rp5470 and mount the filesystems manually....
Usually, the issue is the other way around - 11.11 is vxfs version 4 by default and 11.0 is vxds 3.0. If you create a filesystem on the 11.11 box, and you want to mount on the 11.0, then you have to do it like so on the 11.11 box (don't use newfs!):
mkfs -F vxfs -o largefiles -o version=3 /dev/vgXX/rlvol1
Rgds...Geoff