- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Backup and restore on Linux
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
Discussions
Discussions
Discussions
Forums
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
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
тАО08-08-2003 05:42 AM
тАО08-08-2003 05:42 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-08-2003 05:57 AM
тАО08-08-2003 05:57 AM
Re: Backup and restore on Linux
Have a look here, you'll find several commands that will suit your needs, even if they are not exactly as easy and elegant as the *backup from HP UX :
http://www.europe.redhat.com/documentation/rhl9/rhl-sap-en-9/s1-disaster-rhlspec.php3
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-08-2003 06:39 AM
тАО08-08-2003 06:39 AM
Re: Backup and restore on Linux
You can boot off of a floppy and backup/restore to tape.
You can restore one file or boot off the floppy and restore the entire OS. If you have dual boot it will even restore the ntfs partion.
You have to be running Linux to restore the ntfs partion then boot into MS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-08-2003 08:13 AM
тАО08-08-2003 08:13 AM
Solutionmondo is the equivalent of HP-UX Ignite.
I hope on your HP-UX boxes you make_tape_recovery once in a while, because fbackup is not enough to recover a system with a boot or lif problem.
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
тАО08-08-2003 08:29 AM
тАО08-08-2003 08:29 AM
Re: Backup and restore on Linux
------------------------
Using tar
- used for creating archive files
- option:
c create archive
x extract file from archive
t view content of archive
j compress archive with bzip2
z compress archive with gzip
- example
make archive + gzip compression:
# tar cvzf /var/tmp/boot.tgz /boot
uncompress archive
# tar tf /var/tmp/boot.tar
extract files into a temp location:
# mkdir /tmp/untarred; cd /tmp/untarred
# tar xvf /var/tmp/boot.tar
# ls /tmp/untarred/boot
Using dump/restore
- backup/restore ext2/3 filesystem
- support full and incremental backups
eg.
# dump -u -f
# restore -rf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-08-2003 11:50 PM
тАО08-08-2003 11:50 PM
Re: Backup and restore on Linux
I do also use mondo/mindi to CD-RW once in a while for archive.
Also use interactively gnutar very often... I find this more general purpose
But realy it all depend on the ganularity you need for your enviroment.
Jean-Pierre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2003 06:53 PM
тАО08-09-2003 06:53 PM
Re: Backup and restore on Linux
we use arkeia and i'm very satisfied. It can run on almost any platform and the interface is very good and stable.
Take a look http://www.arkeia.com/
Thanks,
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-10-2003 09:56 PM
тАО08-10-2003 09:56 PM
Re: Backup and restore on Linux
What about the good old cpio ?
find / -depth -print | cpio -ocvB > /dev/rmt/0m 2>> logfile &
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-10-2003 10:39 PM
тАО08-10-2003 10:39 PM
Re: Backup and restore on Linux
for disaster recovery, i can only recommend mondo.