- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Suggestion on backup Linux box?
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
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
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
тАО10-31-2000 04:28 PM
тАО10-31-2000 04:28 PM
linux box ? A tape drive?
So far I ftp data to a HP-UX, tar it onto a tape(DLT) with the rest of data on HP-UX.
But I don't know how to backup the OS part of Linux.
Thank you.
Jessica
Solved! Go to Solution.
- Tags:
- backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:30 AM
тАО11-01-2000 08:30 AM
Solution1. Keep an installation CD Handy for the OS of your choice.
2. Backup the /etc directory hierarchy as this is where Linux places most Configuration settings.
Now in the event of Disaster, you can recover easily by installing and recovering the /etc directory tree.
Have a Great Day!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 05:35 PM
тАО11-01-2000 05:35 PM
Re: Suggestion on backup Linux box?
This way, you can copy the data to the 2nd disk, and since it is on a 2nd controller you can boot off of it. This comes in real handy if you like to play "what if I do this?".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-02-2000 03:40 AM
тАО11-02-2000 03:40 AM
Re: Suggestion on backup Linux box?
With the Linux mdutils you can install a software raid (0,1 and I think 5). So you can reduce the chance for fatal error.
In additional you can install a SCSI Tape (dat or dlt) and you a sofawre like arkaia to backup your system.
so long
Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-02-2000 10:20 AM
тАО11-02-2000 10:20 AM
Re: Suggestion on backup Linux box?
If you don't want to buy another tape drive, you can make the 'tar' utility back up to a tape device on a remote system--assuming the protocol is compatible between Linux and HP-UX systems. (I've only done this with two HP-UX systems before.) Another option would be to temporarily NFS mount *all* of the Linux box's filesystems on the HP-UX system for the duration of the backup, and unmount them when you're done. You would probably want a pretty restrictive (only allow the HP-UX system access) '/etc/exports' file on the Linux system if you were to do this, for security reasons.
The former method (tar using remote tape device) would probably require you to have a separate tape for the Linux system's backups, or you would need to use the non-rewinding device file for your DLT (probably something like /dev/rmt/0mn) in order to be able to write multiple backup sets to a single tape. Writing multiple backup sets to a tape using 'tar' is usually more trouble than it's worth, though.
In order to back up to a remote tape device, the 'client' (in this case, Linux) system needs to be able to remote shell to the 'server' (the system with the tape drive) without giving a password. This might be a security concern at your site. You would need to modify the '~/.rhosts' file of an account on the server which has read/write permissions for the tape drive, or the '/etc/hosts.equiv' file. You can find more information on how to modify these files in the man pages for 'remsh' (HP-UX) or 'rsh' (Linux), and 'rlogin.'
Run 'rsh
tar cvf server.host.name:/dev/rmt/0m /
...where 'server.host.name' is the hostname of the HP-UX system, and '/dev/rmt/0m' is the device file of the tape drive on that system. That being done, the client remote shells to the server (using 'rsh'), runs a utility called 'rmt' to set up the connection to the remote tape device, and begins backing up the data across the network. It's magic--the entire process should be transparent to you. Until you need to *recover* the data, in which case you'll need to NFS mount the Linux box's filesystems (or physically attach the DLT) in order to 'untar' a previous backup.
Well, anyway. Two more options you might consider. =)