- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Migration from HFS to JFS
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
02-06-2002 05:19 AM
02-06-2002 05:19 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2002 05:25 AM
02-06-2002 05:25 AM
Re: Migration from HFS to JFS
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2002 05:28 AM
02-06-2002 05:28 AM
Solutioni will give you few ways to do this :
a. A recovery tape created with make_recovery(1M) can be used for converting from HFS to JFS. make_recovery is provided as part of
the Ignite-UX product, which is available free of charge on the pplications Release media or at URL: http://www.software.hp.com
b. Converting an Existing HFS File System to a JFS File System
------------------------------------------------------------
If you have an existing HFS non-root file system that you wish to convert
to a JFS file system, follow these steps:
1. Back up the data residing on the HFS file system.
Note: JFS does not support the access control lists (ACLs) security feature nor is it available on a trusted system.
If your HFS file system supports ACLs, then during a tar(1) or cpio(1) backup, if an ACL is detected, you will be warned that ACLs will not be restored to JFS. You then have the
option of aborting the conversion process.
2. Create a new JFS file system on the logical volume or non-LVM disk which you will use to replace the HFS file system.
3. Mount the new JFS file system.
4. Restore the file data from the backup performed above on to the JFS file system.
c.
The following steps will guide you through the conversion of your
HFS filesystem to an VXFS filesystem:
1. umount /log
2. newfs -F vxfs /dev/vg03/rlvol1
3. mount /dev/vg03/lvol1
Note: The output from this is: the file system is corrupted
4. fsck -F vxfs /dev/vg03/lvol1
5. mount /dev/vg03/lvol1
6. fstyp /dev/vg03/lvol1
Note: The output from this is 'vxfs' which confirms your
filesystem is now VXFS.
7. Restore from the backup.
hope that this answer your que,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2002 05:34 AM
02-06-2002 05:34 AM
Re: Migration from HFS to JFS
Follow up question: Would "find /filesystem -cpio new_array" work better than cp -rp?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2002 05:37 AM
02-06-2002 05:37 AM
Re: Migration from HFS to JFS
"find" will work, providing you don't have any special device type files, like sockets. BUT, find with cpio will not be faster than "cp".
live free or die
harry