- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- hfs to vxfs on hp-ux
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-23-2003 04:59 AM
07-23-2003 04:59 AM
In order to get around a /var inode problem , I used a make_recovery tape to convert all file systems (except /stand) from hfs to vxfs.
BUT , one hfs file system was not in /etc/fstab and I get an "unrecognized file system" when I try to mount it. So, can I boot from the make_recovery tape again , then mount this file system , and then convert them all again?
Or what alternatives are there??
Thanks in advance
Cliff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:02 AM
07-23-2003 05:02 AM
Re: hfs to vxfs on hp-ux
One thought that occurs to me is to put this last HFS file system into /etc/fstab now, run your make_tape_recovery again, then use that tape to rebuild. I think this would be more assured of success.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:04 AM
07-23-2003 05:04 AM
Re: hfs to vxfs on hp-ux
Was this filesystem part of a vg other than vg00? There isn't any way to "mount" a filesystem from within a make_recovery interactive install. You would just need to make sure to include this filesystem in the list when all the lv's are created.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:20 AM
07-23-2003 05:20 AM
Re: hfs to vxfs on hp-ux
- Make a cope of the /etc/fstab file:
# cp /etc/fstab /etc/fstab.old
- Edit /etc/fstab and add an entry for the problem HFS.
- After creating the JFS file system using the mkfs command, for example
# mkfs -F vxfs /dev/vg00/rlvol4
- Try to mount the new file system, for example,
mount -F vxfs /dev/vg00/lvol4 /home
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:24 AM
07-23-2003 05:24 AM
Re: hfs to vxfs on hp-ux
Another thought:
If you have room enough, you could create a new JFS file system and copy the contents of the HFS file system into it, edit /etc/fstab to point to the new JFS FS, reboot, then blow away the old HFS FS.
I'm still curious (as Patrick asked) to know what file system this may have been.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:51 AM
07-23-2003 05:51 AM
Re: hfs to vxfs on hp-ux
The file system was one I created on /dev/vg00/lvol13 to keep a copy of an applications data. There is only one vg on this machine.
When I cd and ll the directory , nothing is listed so hasn't the vxfs build overwritten the hfs data?
And during the build , is the fstab on the tape or the system used?
Can I frecover the data , update fstab as suggested , create another recovery tape and convert this one fs??
Thanks
Cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 05:58 AM
07-23-2003 05:58 AM
SolutionIf therer is no data there you could:
# umount /dir
(umount whatever is mounted to /dev/vg00/lvol13)
# newfs -F vxfs /dev/vg00/lvol13
(create the vxfs filesystem)
# mount /dir
(remount whatever is mounted to /dev/vg00/lvol13)
# frecover
(recover your data)
There isn't any reason to restore and do another make_tape_recovery tape if the data isn't there. This would be much easier and take less time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 06:57 AM
07-23-2003 06:57 AM
Re: hfs to vxfs on hp-ux
Good point - I CANNOT mount the fs - because it's "unrecognized" - so I can't see the data.
So if I do a newfs for lvol13 , it will destroy any data that may be there - correct??
Thanks
Cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:10 AM
07-23-2003 07:10 AM
Re: hfs to vxfs on hp-ux
Another thought - if my file system was created as hfs , can I create a vxfs file system , then frecover the data to it??
Is this all Ignite will do??
The hfs/vxfs option affects only the data handling , not the actual data??
Thanks
Cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 07:18 AM
07-23-2003 07:18 AM
Re: hfs to vxfs on hp-ux
The 'newfs' command will completely wipe the LV and create the vxfs file system on there. It doesn't matter that it was originally created HFS.
Absolutely no need to do another make_tape_recovery tape. Once it is newfs'd, just mount it and restore your data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 09:20 AM
07-23-2003 09:20 AM
Re: hfs to vxfs on hp-ux
If you have the machine running fine without that filesystem (or let's say device, maybe there hasn't ever even been a filesystem onthere) for some time, I guess it's safe for you to remove it, recuperating some precious diskspace.
Maybe you can check your backup logs/indexes from before to see whether this device was ever used (and hence, hopefully, backed up)
regards
Wout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2003 09:21 AM
07-23-2003 09:21 AM
Re: hfs to vxfs on hp-ux
If you have the machine running fine without that filesystem (or let's say device, maybe there hasn't ever even been a filesystem onthere) for some time, I guess it's safe for you to remove it, recuperating some precious diskspace.
Maybe you can check your backup logs/indexes from before to see whether this device was ever used (and hence, hopefully, backed up)
regards
Wout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 06:22 AM
07-24-2003 06:22 AM
Re: hfs to vxfs on hp-ux
The newfs , mount , frecover solved the problem.
Cliff