LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-26-2007, 07:47 AM   #1
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
Post Slackware total Backup and recovery DIY HOWTO


This one is intended for Slackware specific locations and tools.

I distinguish:

1. Distro data (system):
Quote:
The data than be recovered from the installation media, but without the default configuration.
Additional media repositories with unsupported packages also.

If I wanted the default configurtion I would use clean install and not recovery.
2. Distro settings & config (config)
Quote:
The data in /etc and in /var to some extent and /dev static entryes.
I could loose eg. the old logs in the backup.
3. Tunning & add ons (custom)
Quote:
The software sources and the software derived from the sources.
Usually /usr/local/
and
/lib/modules + /boot + /usr/src
for the custom kernels & paches
4. User data (payload)
Quote:
The actuall payload of the system.
This includes /home /srv /var/www /var/named
5. The data that is regenereted automatically (state)
Quote:
/tmp
/sys
This has nothing of value for backup.

So, the actual backup should take:
2. (config)
3. (custom)
4. (payload)

The recovery should deliver:
1. (system)
2. (config)
3. (custom)
4. (payload)

Now the main question:
How could it be automated, so an advanced user could choose to only restore a specific category.
For example, if I knew my payload is intact, the settings are ok but some files of the system are missing-damaged (eg. FSCK-ed), I would to only restore missing and differing files back to the filesystem.

How would I sweep the whole FStree for missing files (bash command) and how would I replace them from the source media?

Last edited by SCerovec; 10-27-2007 at 07:51 AM. Reason: color tags missed :-)
 
Old 10-26-2007, 06:46 PM   #2
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
When I got here:
Code:
The data in [red]/etc[/red] and in [red]/var[/red] to some extent and [red]/dev[/red] static entryes.
it just became too confusing to read. You must use color= to turn it on, and /color to turn it off, eg: duh
 
Old 10-27-2007, 07:55 AM   #3
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471

Original Poster
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
Smile RE: [color=red]duh[/color] :-)

Quote:
Originally Posted by Bruce Hill View Post
When I got here:
Code:
The data in [red]/etc[/red] and in [red]/var[/red] to some extent and [red]/dev[/red] static entryes.
it just became too confusing to read. You must use color= to turn it on, and /color to turn it off, eg: duh
Sorry to see You had any trouble. I updated the tags accordinly. Thanks for the note.
I started to feel none's slackin' any more :-(

Last edited by SCerovec; 10-27-2007 at 07:56 AM. Reason: Yikes! my keyboard is dying on me...
 
Old 10-27-2007, 08:37 AM   #4
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Well, I'm sure it's useful, it's just that I don't back up my system files, only my personal files. When a new Slackware comes out, I wipe the drive and re-install. This also forces me to make more backups ... which is a good thing.
 
Old 10-27-2007, 08:50 AM   #5
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,448
Blog Entries: 7

Rep: Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553Reputation: 2553
Quote:
Originally Posted by SCerovec View Post
How would I sweep the whole FStree for missing files (bash command) and how would I replace them from the source media?
There is no easy way of doing this. A couple of years ago, I tried to do exactly the same thing and ended up writing a custom script. Apologies in advance.
Code:
#!/bin/bash
echo "Creating lists from physical files" 
find / |sort |sed 's:^/::' |sed 's/\/$//' > a
find /home |sort |sed 's:^/::' |sed 's/\/$//' > b
find /etc |sort |sed 's:^/::' |sed 's/\/$//' > c
find /var |sort |sed 's:^/::' |sed 's/\/$//' > d
find /lib/modules |sort |sed 's:^/::' |sed 's/\/$//' > e
find /dev |sort |sed 's:^/::' |sed 's/\/$//' > f
find /proc |sort |sed 's:^/::' |sed 's/\/$//' > g
find /sys |sort |sed 's:^/::' |sed 's/\/$//' > h
find /tmp |sort |sed 's:^/::' |sed 's/\/$//' > i
find /mnt |sort |sed 's:^/::' |sed 's/\/$//' > j
find /boot |sort |sed 's:^/::' |sed 's/\/$//' > k
find /root |sort |sed 's:^/::' |sed 's/\/$//' > l
find /usr/local |sort |sed 's:^/::' |sed 's/\/$//' > m
find / -type l |sort |sed 's:^/::' |sed 's/\/$//' > n
find / -type d |sort |sed 's:^/::' |sed 's/\/$//' > o
find /usr/src |sort |sed 's:^/::' |sed 's/\/$//' > p
echo "Creating list from package database"
cat /var/log/packages/* |sort -u |sed 's:^/::' |sed 's/\/$//' > z
echo "Removing physical but unpackageable items from lists"
comm -2 -3 a b > 1
comm -2 -3 1 c > 2
comm -2 -3 2 d > 3
comm -2 -3 3 e > 4
comm -2 -3 4 f > 5
comm -2 -3 5 g > 6
comm -2 -3 6 h > 7
comm -2 -3 7 i > 8
comm -2 -3 8 j > 9
comm -2 -3 9 k > 10
comm -2 -3 10 l > 11
comm -2 -3 11 m > 12
comm -2 -3 12 n > 13
comm -2 -3 13 o > 14
comm -2 -3 14 p > x
echo "Comparing physical to packaged"
comm -2 -3 x z > unpackaged
comm -2 -3 z a > y
comm -2 -3 y o > missing
#rm a b c d e f g h i j k l m n o 1 2 3 4 5 6 7 8 9 10 11 12 13 x y z
echo "All done"
echo ""
echo "View 'unpackaged' and 'missing' files for details"
I'd suggest putting this script in it's own directory and running it from there, since it creates a few files.

It ain't perfect, but it got me close enough to what I wanted.
 
Old 10-27-2007, 08:55 AM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Thanks for fixing your code tags. One other thing worth mentioning. Reading your thread title, "Slackware total Backup and recovery DIY HOWTO", along with the message icon, led me to believe you'd written a HOW-TO. It never occurred to me that you might be asking for advice.

We don't backup like that, either, but will show you what we do.

A good friend and Master Slacker (TM) has helped me immeasurably. He helped me setup my LAN, and helped with scripts. We have a small server here, and every night it backs up the user's home directories on the comps in the LAN with a cron job. Here is the line in the cron job for this computer:
Code:
#This is to backup silas/mingdao every morning at 1:00 a.m.
00 1 * * * rsync -va --exclude=WinXP.img --exclude=scratch.img -e "ssh -o BatchMode=yes -o user=root -i /root/.ssh/identity.wired_silas"    wired_silas:~mingdao /backup2/silas/
You can write a similar cron job to the backup destination of your choice for your computer(s). A script would be better ... and there are some old Slackers here who can help with that, although you might be better off in the Programming Forum for that kind of advice.

Edit: You might want to consider Eric's rsnapshot backup solution.

Last edited by Bruce Hill; 10-27-2007 at 09:27 AM. Reason: Link to an Alien Bob HOW-TO
 
Old 10-27-2007, 09:19 AM   #7
reikyv
Member
 
Registered: Oct 2007
Location: Malaysia
Distribution: Slackware
Posts: 80

Rep: Reputation: 15
I would agree that it is more easy and simple to just run a rsync script to backup all your necessary files and folders. This is what I did also, just write a simple shell script and define all your important files and folders there, and let rsync do the job :-p.
And also, there's some open source gui backup tool available, e.g. backuppc. Anyway, to me, command line tool is more fast and easy to deploy and maintain. :-)
 
Old 10-29-2007, 04:24 AM   #8
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471

Original Poster
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
Thumbs up

Quote:
Originally Posted by Bruce Hill View Post
Thanks for fixing your code tags. One other thing worth mentioning. Reading your thread title, "Slackware total Backup and recovery DIY HOWTO", along with the message icon, led me to believe you'd written a HOW-TO. It never occurred to me that you might be asking for advice.
Bruce, sorry to dissapoint You in the 1st pass, but as far as I can see, this thread actually IS rolling toward a 'HOWTOISH' one...

Thanks for the other posters too, for the contributed expamples.

@rkelsen:
That's the way I was thinking toward, Yet I hoped that there might be less time-consuming option (I think like @450MHz => 1h solution) for the system.

Last edited by SCerovec; 10-29-2007 at 04:25 AM.
 
Old 10-29-2007, 04:36 AM   #9
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471

Original Poster
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
I would have a backup that is flexible. The typical scenarios for recovery mostly include:

1. Total disaster + clen install (most case for 1st time payload 100% lost)
2. Disaster + Clean install + payload restoration (my favorite)
3. Partial disater + clean install (/home was separate from / )
4. Partial disaster + partial restoration (state is or is not restored, all else IS restored)
5. Partial disaster + Clean install + total restortion (the clean system is overrun with the backup)
6. Partial disaster + inteligent restoration (system, config and payload restored where missing only (the aim of this howtoish thread ),
7. Micro disaster + inteligent restoration (intelligent restoratio of few missing files (rcinit, rc.local or /etc/hosts and similar...)

The above scenarios have different properties. What I'm thinking about is:
6. and 7. must be faster than 3. 2. or it makes no sense.

So our benchmark is restoration time compared to clen-install time.

Last edited by SCerovec; 10-29-2007 at 04:38 AM.
 
Old 10-30-2007, 12:30 PM   #10
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
I also use rsync for my backups. I simply wrote a script that accepts some args and has some interactivity that lets me select what I want to backup, etc. A general overview of my method is below.

I backup my computer to an external HD so the first part of my script mounts the file systems I need. With no command line args the script simply does a dry run for all backups and logs the results. I then check the logs to make sure I am happy with the results. If I am I run the -all switch to back everything up. I can also enter a different mode with the -s switch where I can select only certain things to backup. At the end of the script I give the option to umount the partitions that were previously mounted. All results are saved to a log file with the date at the front of the filename. Other files are used to list exclusions. I keep the script and all related files (exclusions, logs) in a tiny little folder in /root (root should be the only one running it in my opinion anyways).

I haven't yet written a restore routine, but it would basically be the same thing in reverse.

My solution is not something I would publish for everyone to use as it is specifically written for my system needs and preferences. However, it could easily be modified for use on someone else's system. As such, it could be a good starting point for playing around with rsync based backups.
 
Old 05-09-2008, 09:37 AM   #11
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471

Original Poster
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
Lightbulb

Anyone saw a OS/X doing checkup of system?
It has a sort of a database of files and their respective MD5 sums (or SHA1?)
It just runs over most files and compares their md5 sums with a file-list from the install media...

I thought it was impressive - simple, accurate yet fast...
 
Old 05-09-2008, 01:39 PM   #12
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
Quote:
Originally Posted by SCerovec View Post
Anyone saw a OS/X doing checkup of system?
It has a sort of a database of files and their respective MD5 sums (or SHA1?)
It just runs over most files and compares their md5 sums with a file-list from the install media...

I thought it was impressive - simple, accurate yet fast...
like tripwire for linux...
 
Old 05-12-2008, 03:09 AM   #13
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,471

Original Poster
Blog Entries: 2

Rep: Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980Reputation: 980
then I shall try and learn tripwire now ...

off I go for homework...
:-)
 
  


Reply

Tags
backup, efficiency, recovery



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Howto use ktorrent (total torrent newbie) leupi Linux - Software 5 04-09-2009 01:55 PM
Backup and recovery Gary Hon Linux - Software 5 04-23-2007 05:02 AM
Total backup.. (Ghost) Snouser Linux - General 4 03-29-2007 09:11 AM
Backup/Recovery aerogate Mandriva 2 11-11-2005 04:17 AM
cvs backup and recovery varun_33 Linux - Software 4 06-02-2005 12:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 07:31 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration