Een volledige backup maken van mijn computer franz5, host=franz6

Laatst verwerkt op 11-09-11 09:17:38 CEST door gebruiker ulefr01

Index

  1. Mijn partitietabel
  2. Al mijn procedures
    1. procedure tuneext4
    2. procedure f5-t1
    3. procedure f5-t2
    4. procedure f5-t3
    5. procedure f5-t3-end
    6. procedure archive-franz5-prepare
    7. procedure archive-franz5-C
    8. procedure archive-franz5-D
    9. procedure archive-franz5-boot
    10. procedure archive-franz5-root
    11. procedure archive-franz5-home
    12. procedure archive-franz5-end
  3. Het uiteindelijk resultaat
  4. De uitvoering in details

Partitietabel /dev/sda

# partition table of /dev/sda
unit: sectors

/dev/sda1 : start=       63, size=222917877, Id= 7, bootable
/dev/sda2 : start=222917940, size=  2120580, Id=8e
/dev/sda3 : start=225038520, size= 31567725, Id=8e
/dev/sda4 : start=256606369, size=418545731, Id= f
/dev/sda5 : start=256606371, size=383937309, Id=8e
/dev/sda6 : start=640553023, size= 34599077, Id= 7

Gebruikte bash/shell procedures

shell tuneext4

# tuneext4

echo 'tuneext4'
echo '--------'
echo 'ext4 device ?'
read device
echo "device= $device"
echo 'ok ?'
read ok
if [ $ok == ' ' ] || [ $ok == 'n' ] || [ $ok == 'N' ]
then
   echo 'nok - dus stoppen'
   exit 1
fi
echo "doe : tune2fs -O has_journal $device"
tune2fs -O ^has_journal $device
echo "doe : e2fsck -f $device"
e2fsck -f $device
echo "doe : tune2fs -J size=4 $device"
tune2fs -J size=4 $device
echo "doe : tune2fs -O extents,uninit_bg,dir_index -i 6m -c 200 $device"
tune2fs -O extents,uninit_bg,dir_index -i 6m -c 200 $device
echo "doe : e2fsck -pfD $device"
e2fsck -pfD $device
echo 'gedaan !'
read ok
echo "device= $device" 
exit 0

shell f5-t1

#!/bin/bash
#
# ----------------------------------------------------------------------------------------------
#/media/EHD4P1/tools/script.sh -r t1
#
echo "Terminal 1"
echo "----------"
date
#stty cols 180 rows 56
#
cd /media/EHD4P1/franz5
#rm outputs
pwd
#
#
#
/media/EHD4P1/tools/franz5-t1 2>&1 | tee terminal_1.out
#
echo "-----------------"
exit
#

shell f5-t2

#!/bin/bash
#
# ----------------------------------------------------------------------------------------------
#
#/media/EHD4P1/tools/script.sh -r t2
echo "Terminal 2"
echo "----------"
date
#stty cols 180 rows 56
#
cd /media/EHD4P1/franz5
#rm outputs
pwd
#
#
#
/media/EHD4P1/tools/franz5-t2 2>&1 | tee terminal_2.out
#
echo "-----------------"
exit
#

shell f5-t3

#!/bin/bash
#
# ----------------------------------------------------------------------------------------------
#/media/EHD4P1/tools/script.sh -r t3
#
echo "Terminal 3"
echo "----------"
date
#stty cols 180 rows 56
#
cd /media/EHD4P1/franz5
#rm outputs
pwd
#
#
#
/media/EHD4P1/tools/franz5-t3 2>&1 | tee terminal_3.out
#
echo "-----------------"
exit
#

shell f5-t3-end

#!/bin/bash
#
# ----------------------------------------------------------------------------------------------
#/media/EHD4P1/tools/script.sh -r t3end
#
echo "Terminal 3_end"
echo "--------------"
DATE="$(date +%Y%m%d)"
date
#stty cols 180 rows 56
#
cd /media/EHD4P1/franz5
#rm outputs
pwd
#
#
#
/media/EHD4P1/tools/franz5-t3-end 2>&1 | tee terminal_3-end.out
#
cat terminal_1.out terminal_2.out terminal_3.out terminal_3-end.out >franz5-${DATE}.out
#
echo "-----------------"
exit
#mv t1 franz5-${DATE}-t1
#mv t2 franz5-${DATE}-t2
#mv t3 franz5-${DATE}-t3
#mv t3end franz5-${DATE}-t3end
#

shell archive-franz5-prepare

#!/bin/bash
#
# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi
RES=1
umount /media/WinC
umount /media/WinD

vgextend linux3 /dev/sde2
RES=0
exit ${RES}

shell archive-franz5-C

#!/bin/bash
#
FSAOPTS='-z7 -j3 -s 2000'                # options to pass to fsarchiver
BACKDIR='/media/EHD4P1/franz5'              # where to put the backup
BACKNAM='backup-C'     # name of the archive
DEVICE='sda1'

# ----------------------------------------------------------------------------------------------

PATH="${PATH}:/usr/sbin:/sbin:/usr/bin:/bin"
TIMESTAMP="$(date +%Y%m%d-%Hh%M)"

# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi


# echo "creation of the lvm snapshot was successfull"
echo "fsarchiver savefs -L${BACKNAM} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${DEVICE}"

# main command of the script that do the real stuff
if fsarchiver savefs -L${BACKNAM} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${DEVICE}
then
	echo "fsarchiver done"
	echo "start md5sum"
        md5sum ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa > ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.md5
        RES=0
else
        echo "fsarchiver failed"
        RES=1
fi

#
fsarchiver archinfo ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa 2>${BACKDIR}/${BACKNAM}-${TIMESTAMP}.info
exit ${RES}

shell archive-franz5-D

#!/bin/bash
#
FSAOPTS='-z7 -j3 -s 2000'                # options to pass to fsarchiver
BACKDIR='/media/EHD4P1/franz5'              # where to put the backup
BACKNAM='backup-D'     # name of the archive
DEVICE='sda6'

# ----------------------------------------------------------------------------------------------

PATH="${PATH}:/usr/sbin:/sbin:/usr/bin:/bin"
TIMESTAMP="$(date +%Y%m%d-%Hh%M)"

# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi


# echo "creation of the lvm snapshot was successfull"
echo "fsarchiver savefs -L${BACKNAM} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${DEVICE}"

# main command of the script that do the real stuff
if fsarchiver savefs -L${BACKNAM} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${DEVICE}
then
	echo "fsarchiver done"
	echo "start md5sum"
        md5sum ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa > ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.md5
        RES=0
else
        echo "fsarchiver failed"
        RES=1
fi

#
fsarchiver archinfo ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa 2>${BACKDIR}/${BACKNAM}-${TIMESTAMP}.info
exit ${RES}

shell archive-franz5-boot

#!/bin/bash
#
VOLGROP='linux3'                 # name of the volume group
ORIGVOL='linux_boot'                 # name of the logical volume to backup
SNAPVOL='mysnap'                 # name of the snapshot to create
SNAPSIZ='6G'                     # space to allocate for the snapshot in the volume group
FSAOPTS='-z7 -j3 -s 2000'                # options to pass to fsarchiver
BACKDIR='/media/EHD4P1/franz5'              # where to put the backup
BACKNAM='backupboot'     # name of the archive

# ----------------------------------------------------------------------------------------------

PATH="${PATH}:/usr/sbin:/sbin:/usr/bin:/bin"
TIMESTAMP="$(date +%Y%m%d-%Hh%M)"

# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi

# check that the snapshot does not already exist
if [ -e "/dev/${VOLGROP}/${SNAPVOL}" ]
then
        echo "the lvm snapshot already exists, please destroy it by hand first"
        exit 1
fi

# create the lvm snapshot
if ! lvcreate -L${SNAPSIZ} -s -n ${SNAPVOL} /dev/${VOLGROP}/${ORIGVOL} >/dev/null 2>&1
then
        echo "creation of the lvm snapshot failed"
        exit 1
fi
echo "creation of the lvm snapshot was successfull"
echo "fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}"
# main command of the script that do the real stuff
if fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}
then
	echo "fsarchiver done"
	echo "start md5sum"
        md5sum ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa > ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.md5
        RES=0
else
        echo "fsarchiver failed"
        RES=1
fi

# remove the snapshot
if ! lvremove -f /dev/${VOLGROP}/${SNAPVOL} >/dev/null 2>&1
then
        echo "cannot remove the lvm snapshot"
        RES=1
fi
#
fsarchiver archinfo ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa 2>${BACKDIR}/${BACKNAM}-${TIMESTAMP}.info
exit ${RES}

shell archive-franz5-root

#!/bin/bash
#
VOLGROP='linux3'                 # name of the volume group
ORIGVOL='linux_root'                 # name of the logical volume to backup
SNAPVOL='mysnap'                 # name of the snapshot to create
SNAPSIZ='6G'                     # space to allocate for the snapshot in the volume group
FSAOPTS='-z7 -j3 -s 2000'                # options to pass to fsarchiver
BACKDIR='/media/EHD4P1/franz5'              # where to put the backup
BACKNAM='backuproot'     # name of the archive

# ----------------------------------------------------------------------------------------------

PATH="${PATH}:/usr/sbin:/sbin:/usr/bin:/bin"
TIMESTAMP="$(date +%Y%m%d-%Hh%M)"

# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi

# check that the snapshot does not already exist
if [ -e "/dev/${VOLGROP}/${SNAPVOL}" ]
then
        echo "the lvm snapshot already exists, please destroy it by hand first"
        exit 1
fi

# create the lvm snapshot
if ! lvcreate -L${SNAPSIZ} -s -n ${SNAPVOL} /dev/${VOLGROP}/${ORIGVOL} >/dev/null 2>&1
then
        echo "creation of the lvm snapshot failed"
        exit 1
fi
echo "creation of the lvm snapshot was successfull"
echo "fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}"
# main command of the script that do the real stuff
if fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}
then
	echo "fsarchiver done"
	echo "start md5sum"
        md5sum ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa > ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.md5
        RES=0
else
        echo "fsarchiver failed"
        RES=1
fi

# remove the snapshot
if ! lvremove -f /dev/${VOLGROP}/${SNAPVOL} >/dev/null 2>&1
then
        echo "cannot remove the lvm snapshot"
        RES=1
fi
#
fsarchiver archinfo ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa 2>${BACKDIR}/${BACKNAM}-${TIMESTAMP}.info
exit ${RES}

shell archive-franz5-home

#!/bin/bash
#
VOLGROP='linux3'                 # name of the volume group
ORIGVOL='linux_home'                 # name of the logical volume to backup
SNAPVOL='mysnap'                 # name of the snapshot to create
SNAPSIZ='6G'                     # space to allocate for the snapshot in the volume group
FSAOPTS='-z7 -j3 -s 2000'                # options to pass to fsarchiver
BACKDIR='/media/EHD4P1/franz5'              # where to put the backup
BACKNAM='backuphome'     # name of the archive

# ----------------------------------------------------------------------------------------------

PATH="${PATH}:/usr/sbin:/sbin:/usr/bin:/bin"
TIMESTAMP="$(date +%Y%m%d-%Hh%M)"

# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi

# check that the snapshot does not already exist
if [ -e "/dev/${VOLGROP}/${SNAPVOL}" ]
then
        echo "the lvm snapshot already exists, please destroy it by hand first"
        exit 1
fi

# create the lvm snapshot
if ! lvcreate -L${SNAPSIZ} -s -n ${SNAPVOL} /dev/${VOLGROP}/${ORIGVOL} >/dev/null 2>&1
then
        echo "creation of the lvm snapshot failed"
        exit 1
fi
echo "creation of the lvm snapshot was successfull"
echo "fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}"
# main command of the script that do the real stuff
if fsarchiver savefs -L${ORIGVOL} ${FSAOPTS} ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa /dev/${VOLGROP}/${SNAPVOL}
then
	echo "fsarchiver done"
	echo "start md5sum"
        md5sum ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa > ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.md5
        RES=0
else
        echo "fsarchiver failed"
        RES=1
fi

# remove the snapshot
if ! lvremove -f /dev/${VOLGROP}/${SNAPVOL} >/dev/null 2>&1
then
        echo "cannot remove the lvm snapshot"
        RES=1
fi
#
fsarchiver archinfo ${BACKDIR}/${BACKNAM}-${TIMESTAMP}.fsa 2>${BACKDIR}/${BACKNAM}-${TIMESTAMP}.info
exit ${RES}

shell archive-franz5-end

#!/bin/bash
#
# only run as root
if [ "$(id -u)" != '0' ]
then
        echo "this script has to be run as root"
        exit 1
fi
RES=1
mount -a

vgreduce linux3 /dev/sde2
RES=0
exit ${RES}

Het resultaat

Het resultaat met cijfers




	
	
	
	
	
	
	
	
	
	
	
	
	




Backup Datum = 04 / 02_ / 2011 externe harddisk 160GB/250GB/500GB/1,5TB










I) Startup in Windows Vista








Vorige : Use :
tune sda1
defrag c: x

chkdsk c: x

09/01/11 51,00%
tune sda6
defrag d: x

chkdsk d: x

17/12/10











13/12/10

II) Startup Rescuecd Rescue64 setkmap=be forcevesa







21/11/10 <---- delete

tune sda1
ntfsfix /dev/sda1 x








tune sda6
ntfsfix /dev/sda6 x









mkdir /media/EHD4P1

x








mount /dev/sdb1 /media/EHD4P1; cd /media/EHD4P1/franz5

x







tune sda2
../tools/tuneext4 /dev/mapper/linux3-linux_boot

x






tune sda3
../tools/tuneext4 /dev/mapper/linux3-linux_root

x






tune sda5
../tools/tuneext4 /dev/mapper/linux3-linux_home

x



















III) Startup into linux











fsarchiver -V : _0.6.12______________________ cd /media/EHD4P1/franz5/



x vgreduce –removemissing linux3







fsarchiver probe simple

x lvcreate hangs with kernel 2.6.32-24





backup mbr












mv sda.mbr sda_ .mbr

x
“_20yymmdd





mv sda65.mbr sda65_ .mbr

x







dd if=/dev/sda of=sda.mbr count=1 bs=512

x








dd if=/dev/sda of=sda65.mbr count=65 bs=512

x






backup partitietabel













mv parttblsda.sf parttblsda_ .sf

x

../tools/f5-t1
x



sfdisk -d /dev/sda >parttblsda.sf

x

../tools/f5-t2
x

( restore mbr






../tools/f5-t3
x


dd if=sda.mbr of=/dev/sda )



../tools/f5-t3-end
x

( restore partitietabel












sfdisk -f /dev/sda <parttblsda.sf )





















Partitie Type Command Start Ok files Directories Symlinks hardlnks specials starttime endtime duur


../tools/archive-franz5-prepare x x _ _ _ _ _ _ _ _
Sda1 Ntfs ../tools/archive-franz5-C x x 119046 18309 64 14779 1 16:03:00 18:06:00 02:03:00
Sda2
Linux3-linux_boot
Ext4 ../tools/archive-franz5-boot x x 218 5 0 0 0 16:04:00 16:10:00 00:06:00
Sda3
Linux3-linux_root
Ext4 ../tools/archive-franz5-root x x 253879 35797 47335 423 89 16:10:00 16:57:00 00:47:00
Sda5
Linux3-linux_home
Ext4
../tools/archive-franz5-home x x 28844 6692 15 1 2 16:57:00 17:36:00 00:39:00
Sda6 Ntfs ../tools/archive-franz5-D x x 2016 340 0 0 0 16:05:00 16:54:00 00:49:00


../tools/archive-franz5-end x x _ _ _ _ _ _ _ _

De uitvoering

De uiteindelijke uitvoering



	
	
	
	
	
	
	


Terminal 1 output
-----------------
Fri Feb  4 16:03:50 UTC 2011
stty: standard input: Invalid argument
/media/EHD4P1/franz5
fsarchiver 0.6.12 (2010-12-25)
[======DISK======] [=============NAME==============] [====SIZE====] [MAJ] [MIN]
[sda             ] [ST3360320AS                    ] [   335.35 GB] [  8] [  0]
[sde             ] [41AS                           ] [     1.36 TB] [  8] [ 64]

[=====DEVICE=====] [==FILESYS==] [======LABEL======] [====SIZE====] [MAJ] [MIN] 
[loop0           ] [squashfs   ] [<unknown>        ] [   225.20 MB] [  7] [  0] 
[sda1            ] [ntfs       ] [BOOT             ] [   106.30 GB] [  8] [  1] 
[sda2            ] [LVM2_member] [<unknown>        ] [     1.01 GB] [  8] [  2] 
[sda3            ] [LVM2_member] [<unknown>        ] [    15.05 GB] [  8] [  3] 
[sda5            ] [LVM2_member] [<unknown>        ] [   183.08 GB] [  8] [  5] 
[sda6            ] [ntfs       ] [RECOVER          ] [    16.50 GB] [  8] [  6] 
[sde1            ] [vfat       ] [EHD4P1           ] [     1.15 TB] [  8] [ 65] 
[sde2            ] [LVM2_member] [<unknown>        ] [   109.86 GB] [  8] [ 66] 
[sde3            ] [ntfs       ] [ehd4p3           ] [   108.11 GB] [  8] [ 67] 
[dm-0            ] [ext4       ] [<unknown>        ] [     1.04 GB] [253] [  0] 
[dm-1            ] [ext4       ] [<unknown>        ] [    15.10 GB] [253] [  1] 
[dm-2            ] [ext4       ] [<unknown>        ] [   183.00 GB] [253] [  2] 
Fri Feb  4 16:03:51 UTC 2011
umount: /media/WinC: not found
umount: /media/WinD: not found
  Volume group "linux3" successfully extended
Fri Feb  4 16:03:53 UTC 2011
fsarchiver savefs -Lbackup-C -z7 -j3 -s 2000 /media/EHD4P1/franz5/backup-C-20110204-16h03.fsa /dev/sda1
Archive will be split into volumes of 2097152000 bytes (1.95 GB)
Statistics for filesystem 0
* files successfully processed:....regfiles=119046, directories=18309, symlinks=64, hardlinks=14779, specials=1
* files with errors:...............regfiles=0, directories=0, symlinks=0, hardlinks=0, specials=0
fsarchiver done
start md5sum
Fri Feb  4 18:06:37 UTC 2011
-----------------
Terminal 2 output
-----------------
Fri Feb  4 16:04:44 UTC 2011
stty: standard input: Invalid argument
/media/EHD4P1/franz5
fsarchiver 0.6.12 (2010-12-25)
[======DISK======] [=============NAME==============] [====SIZE====] [MAJ] [MIN]
[sda             ] [ST3360320AS                    ] [   335.35 GB] [  8] [  0]
[sde             ] [41AS                           ] [     1.36 TB] [  8] [ 64]

[=====DEVICE=====] [==FILESYS==] [======LABEL======] [====SIZE====] [MAJ] [MIN] 
[loop0           ] [squashfs   ] [<unknown>        ] [   225.20 MB] [  7] [  0] 
[sda1            ] [ntfs       ] [BOOT             ] [   106.30 GB] [  8] [  1] 
[sda2            ] [LVM2_member] [<unknown>        ] [     1.01 GB] [  8] [  2] 
[sda3            ] [LVM2_member] [<unknown>        ] [    15.05 GB] [  8] [  3] 
[sda5            ] [LVM2_member] [<unknown>        ] [   183.08 GB] [  8] [  5] 
[sda6            ] [ntfs       ] [RECOVER          ] [    16.50 GB] [  8] [  6] 
[sde1            ] [vfat       ] [EHD4P1           ] [     1.15 TB] [  8] [ 65] 
[sde2            ] [LVM2_member] [<unknown>        ] [   109.86 GB] [  8] [ 66] 
[sde3            ] [ntfs       ] [ehd4p3           ] [   108.11 GB] [  8] [ 67] 
[dm-0            ] [ext4       ] [<unknown>        ] [     1.04 GB] [253] [  0] 
[dm-1            ] [ext4       ] [<unknown>        ] [    15.10 GB] [253] [  1] 
[dm-2            ] [ext4       ] [<unknown>        ] [   183.00 GB] [253] [  2] 
Fri Feb  4 16:04:44 UTC 2011
creation of the lvm snapshot was successfull
fsarchiver savefs -Llinux_boot -z7 -j3 -s 2000 /media/EHD4P1/franz5/backupboot-20110204-16h04.fsa /dev/linux3/mysnap
Archive will be split into volumes of 2097152000 bytes (1.95 GB)
Statistics for filesystem 0
* files successfully processed:....regfiles=218, directories=5, symlinks=0, hardlinks=0, specials=0
* files with errors:...............regfiles=0, directories=0, symlinks=0, hardlinks=0, specials=0
fsarchiver done
start md5sum
Fri Feb  4 16:10:01 UTC 2011
creation of the lvm snapshot was successfull
fsarchiver savefs -Llinux_root -z7 -j3 -s 2000 /media/EHD4P1/franz5/backuproot-20110204-16h10.fsa /dev/linux3/mysnap
Archive will be split into volumes of 2097152000 bytes (1.95 GB)
Statistics for filesystem 0
* files successfully processed:....regfiles=253879, directories=35797, symlinks=47335, hardlinks=423, specials=89
* files with errors:...............regfiles=0, directories=0, symlinks=0, hardlinks=0, specials=0
fsarchiver done
start md5sum
Fri Feb  4 16:57:52 UTC 2011
creation of the lvm snapshot was successfull
fsarchiver savefs -Llinux_home -z7 -j3 -s 2000 /media/EHD4P1/franz5/backuphome-20110204-16h57.fsa /dev/linux3/mysnap
Archive will be split into volumes of 2097152000 bytes (1.95 GB)
Statistics for filesystem 0
* files successfully processed:....regfiles=28844, directories=6692, symlinks=15, hardlinks=1, specials=2
* files with errors:...............regfiles=0, directories=0, symlinks=0, hardlinks=0, specials=0
fsarchiver done
start md5sum
Fri Feb  4 17:36:38 UTC 2011
------------------
Terminal 3 output
-----------------
Fri Feb  4 16:05:26 UTC 2011
stty: standard input: Invalid argument
/media/EHD4P1/franz5
fsarchiver 0.6.12 (2010-12-25)
[======DISK======] [=============NAME==============] [====SIZE====] [MAJ] [MIN]
[sda             ] [ST3360320AS                    ] [   335.35 GB] [  8] [  0]
[sde             ] [41AS                           ] [     1.36 TB] [  8] [ 64]

[=====DEVICE=====] [==FILESYS==] [======LABEL======] [====SIZE====] [MAJ] [MIN] 
[loop0           ] [squashfs   ] [<unknown>        ] [   225.20 MB] [  7] [  0] 
[sda1            ] [ntfs       ] [BOOT             ] [   106.30 GB] [  8] [  1] 
[sda2            ] [LVM2_member] [<unknown>        ] [     1.01 GB] [  8] [  2] 
[sda3            ] [LVM2_member] [<unknown>        ] [    15.05 GB] [  8] [  3] 
[sda5            ] [LVM2_member] [<unknown>        ] [   183.08 GB] [  8] [  5] 
[sda6            ] [ntfs       ] [RECOVER          ] [    16.50 GB] [  8] [  6] 
[sde1            ] [vfat       ] [EHD4P1           ] [     1.15 TB] [  8] [ 65] 
[sde2            ] [LVM2_member] [<unknown>        ] [   109.86 GB] [  8] [ 66] 
[sde3            ] [ntfs       ] [ehd4p3           ] [   108.11 GB] [  8] [ 67] 
[dm-0            ] [ext4       ] [<unknown>        ] [     1.04 GB] [253] [  0] 
[dm-1            ] [ext4       ] [<unknown>        ] [    15.10 GB] [253] [  1] 
[dm-2            ] [ext4       ] [<unknown>        ] [   183.00 GB] [253] [  2] 
[dm-3            ] [ext4       ] [<unknown>        ] [     1.04 GB] [253] [  3] 
[dm-4            ] [ext4       ] [<unknown>        ] [     1.04 GB] [253] [  4] 
[dm-5            ] [DM_snapshot] [<unknown>        ] [     6.00 GB] [253] [  5] 
Fri Feb  4 16:05:26 UTC 2011
fsarchiver savefs -Lbackup-D -z7 -j3 -s 2000 /media/EHD4P1/franz5/backup-D-20110204-16h05.fsa /dev/sda6
Archive will be split into volumes of 2097152000 bytes (1.95 GB)
Statistics for filesystem 0
* files successfully processed:....regfiles=2016, directories=340, symlinks=0, hardlinks=0, specials=0
* files with errors:...............regfiles=0, directories=0, symlinks=0, hardlinks=0, specials=0
fsarchiver done
start md5sum
Fri Feb  4 16:54:49 UTC 2011
-----------------
Terminal 3 end
-----------------
Fri Feb  4 18:33:47 UTC 2011
stty: standard input: Invalid argument
/media/EHD4P1/franz5
fsarchiver 0.6.12 (2010-12-25)
Fri Feb  4 18:33:48 UTC 2011
  Removed "/dev/sde2" from volume group "linux3"
-----------------
-rwxr-xr-x 1 root root  606145789 Feb  4 16:09 backupboot-20110204-16h04.fsa
-rwxr-xr-x 1 root root        734 Feb  4 16:10 backupboot-20110204-16h04.info
-rwxr-xr-x 1 root root         85 Feb  4 16:09 backupboot-20110204-16h04.md5
-rwxr-xr-x 1 root root 2097053338 Feb  4 17:18 backup-C-20110204-16h03.f01
-rwxr-xr-x 1 root root 2097105273 Feb  4 17:42 backup-C-20110204-16h03.f02
-rwxr-xr-x 1 root root 2097099209 Feb  4 17:58 backup-C-20110204-16h03.f03
-rwxr-xr-x 1 root root 1050916390 Feb  4 18:05 backup-C-20110204-16h03.f04
-rwxr-xr-x 1 root root 2096926143 Feb  4 16:57 backup-C-20110204-16h03.fsa
-rwxr-xr-x 1 root root        709 Feb  4 18:06 backup-C-20110204-16h03.info
-rwxr-xr-x 1 root root         83 Feb  4 18:06 backup-C-20110204-16h03.md5
-rwxr-xr-x 1 root root 2097051996 Feb  4 16:38 backup-D-20110204-16h05.f01
-rwxr-xr-x 1 root root 1283949123 Feb  4 16:53 backup-D-20110204-16h05.f02
-rwxr-xr-x 1 root root 2096936111 Feb  4 16:21 backup-D-20110204-16h05.fsa
-rwxr-xr-x 1 root root        708 Feb  4 16:54 backup-D-20110204-16h05.info
-rwxr-xr-x 1 root root         83 Feb  4 16:54 backup-D-20110204-16h05.md5
-rwxr-xr-x 1 root root 2096980744 Feb  4 17:32 backuphome-20110204-16h57.f01
-rwxr-xr-x 1 root root  300570040 Feb  4 17:35 backuphome-20110204-16h57.f02
-rwxr-xr-x 1 root root 2096976667 Feb  4 17:15 backuphome-20110204-16h57.fsa
-rwxr-xr-x 1 root root        731 Feb  4 17:36 backuphome-20110204-16h57.info
-rwxr-xr-x 1 root root         85 Feb  4 17:36 backuphome-20110204-16h57.md5
-rwxr-xr-x 1 root root  702717582 Feb  4 16:56 backuproot-20110204-16h10.f01
-rwxr-xr-x 1 root root 2097120654 Feb  4 16:44 backuproot-20110204-16h10.fsa
-rwxr-xr-x 1 root root        732 Feb  4 16:57 backuproot-20110204-16h10.info
-rwxr-xr-x 1 root root         85 Feb  4 16:57 backuproot-20110204-16h10.md5
-rwxr-xr-x 1 root root        361 Jan  9 21:58 parttblsda.20110204.sf
-rwxr-xr-x 1 root root        512 Jan  9 21:57 sda_20110204.mbr
-rwxr-xr-x 1 root root      33280 Jan  9 21:57 sda65_20110204.mbr

Laatst gewijzigd: woensdag 7 september 2022 21:37
Copyright � 2022 - Franz Ulenaers (email : franz.ulenaers@telenet.be)