- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: replicating / syncing directories
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
03-18-2003 01:15 AM
03-18-2003 01:15 AM
replicating / syncing directories
is there a faster way to sync directories or filesystems (copy/move all the data from one to another) than the famous
tar cf - * | (cd dest; tar xf)?
TIA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 01:23 AM
03-18-2003 01:23 AM
Re: replicating / syncing directories
# find /opt | cpio -pcmudv /otherrFS
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 01:38 AM
03-18-2003 01:38 AM
Re: replicating / syncing directories
#cd /home
#find . | cpio -pudlm /duphome
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 01:58 AM
03-18-2003 01:58 AM
Re: replicating / syncing directories
fbackup -i /usr -f - | (cd /mnt; frecover -Xrf -)
or even vxdump/vxrestore (assuming VXFS filesystems), similar example from man vxrestore:
vxdump 0f - /usr | (cd /mnt; vxrestore xf -)
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:00 AM
03-18-2003 02:00 AM
Re: replicating / syncing directories
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:08 AM
03-18-2003 02:08 AM
Re: replicating / syncing directories
1. didn't find rsync on hpux.
2. tar: 5min20sec. cpio: 4min42sec. Great!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:17 AM
03-18-2003 02:17 AM
Re: replicating / syncing directories
If you really want to have sync'ed filesystems, then
install and use HP MirrorDisk/UX.
You will have one filesystem to access, but data are
mirrored, automatically. It is very fast, synchronization
is done in the background and on-line.
HP MirrorDisk/UX is not good for backups, but for hardware
failures (disks, SCSI controllers, cables, and so on).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:22 AM
03-18-2003 02:22 AM
Re: replicating / syncing directories
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:29 AM
03-18-2003 02:29 AM
Re: replicating / syncing directories
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:38 AM
03-18-2003 02:38 AM
Re: replicating / syncing directories
http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/rsync-2.5.5/
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2003 02:59 AM
03-18-2003 02:59 AM