- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Moving Filesystems
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
04-07-2004 01:52 AM
04-07-2004 01:52 AM
Moving Filesystems
I'm going to be relocating some data to newer disks. Normally I'd just use this to move them as I had done before...
find . ! -type c -exec cpio -pmud /newpath {} \;
However, what's different this time is that some files are much larger than 2GB, so I don't think cpio can do it.
Forgive me if this sounds basic, but how else would one do this?
Thanks in advance...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 01:56 AM
04-07-2004 01:56 AM
Re: Moving Filesystems
vxdump -0 -f - -s 1000000 -b 16 /oldpath| (cd /newpath ; vxrestore rf -) &
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 01:57 AM
04-07-2004 01:57 AM
Re: Moving Filesystems
sks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 01:58 AM
04-07-2004 01:58 AM
Re: Moving Filesystems
vgextend vgname /dev/dsk/newdisk
pvmove -n /dev/vgname/lvname /dev/dsk/oldisk /dev/dsk/newdisk
hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 02:00 AM
04-07-2004 02:00 AM
Re: Moving Filesystems
I would add them to the same VG then mirror them and break the mirror...after they sync.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 02:42 AM
04-07-2004 02:42 AM
Re: Moving Filesystems
I'll look into vxdump, fbackup, and pvmove.
I would use Mirrordisk, but the new volumes will be larger.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 02:46 AM
04-07-2004 02:46 AM
Re: Moving Filesystems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2004 02:50 AM
04-07-2004 02:50 AM
Re: Moving Filesystems
If your files systems are within same VG, pvmove is OK. Otherwise you fback/frecover and vxdump option.
Anil