乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      Linux Backup

       Tim You 2011-07-31
      Linux BackupThis is a featured page
      sysrescCD
      clonezilla LiveCD
      gParted LiveCD
      partimage
      ntfsclone
      partclone

      CD burner - CDburnerXP


      Linux Backup procedure.
      Design of Disaster Recovery of Linux Server
      The Linux GNU software application “partimage” has been employed as the disaster recovery tools for the development system. To backup for disaster recovery, any update on the development system will be cloned by “partimage”, where all partitions will be copied. The partition table will also be saved by the tool “sfdisk”. Those images will be stored in tapes and placed in a different building where the development system located. When disaster recovery is required, a bootable Linux CD (the System Rescue CD version 0.2.15) will be employed to start a brand new system, mount the DDS5 tape drive, and then restore the saved partition table and partition images to the brand new system through “partimage”. After system partitions are restored, data restoration can be done in a straightforward manner.

      Design of Backup Scheme
      1 System Backup
      1.1 Use Linux ‘partimage’ utility to clone the system partitions on demand;
      1.2 Use Linux ‘tar’ utility to archive the cloned system partitions image files to DAT72 (DDS5) tape.
      2 Database Backup
      2.1 Backup data partitions by IBM Tivoli client;
      2.2 15 x daily backup;
      2.3 6 x monthly backup;
      2.4 1 yearly backup.

      Implementation Plan of Disaster Recovery
      1 Prerequisite
      1.1 Download utilities:
      1.1.1 Rescue CD version 0.2.15: http://www./download.en.php
      1.1.2 Run “md5sum systemrecuecd-x86-0.2.15.iso” where 0.2.15 should be the version number. Verify the checksum posted in the page mentioned in 3.1.1.
      1.2 Extract utilities
      1.2.1 Burn the ISO file into CD if CDRW device is available
      1.2.2 Use Nero under Windows. When the CDROM is burned, you can boot on it.
      1.2.3 Use “cdrecord” under Linux, run "cdrecord -scanbus" in order to get the identifier numbers of your device. Then, type
      "cdrecord dev=x,y,z speed=4 -v SystemRescueCd.iso" in a console.
      2 Backup Procedure
      2.1 Press F2 to change the BIOS accept boot from CDROM
      2.2 Boot the system from “System Rescue CD”
      2.3 Press enter at the “boot:” prompt
      2.4 When the system prompt asking for speaker key map, type “41” and then press enter or just press enter to accept default key map
      2.5 After the “System Rescue CD” booted,
      mount /u04 by “mkdir /u04; mount -t ex3 /dev/sdb5 /u04 on dbs
      or mount /u02 by mkdir /u02; mount -t ex3 /dev/sdb2 /u02 on aps
      2.6 run the “drbackup.sh” as “sh /u04/drbackup.sh”
      #!/bin/sh
      partimage -z1 -o -d -b save /dev/sda1 /u04/dr/sda1.partimg.gz
      partimage -z1 -o -d -b save /dev/sda2 /u04/dr/sda2.partimg.gz
      partimage -z1 -o -d -b save /dev/sda5 /u04/dr/sda5.partimg.gz
      partimage -z1 -o -d -b save /dev/sda6 /u04/dr/sda6.partimg.gz
      partimage -z1 -o -d -b save /dev/sda7 /u04/dr/sda7.partimg.gz
      partimage -z1 -o -d -b save /dev/sda8 /u04/dr/sda8.partimg.gz
      partimage -z1 -o -d -b save /dev/sda9 /u04/dr/sda9.partimg.gz
      partimage -z1 -o -d -b save /dev/sda10 /u04/dr/sda10.partimg.gz
      partimage -z1 -o -d -b save /dev/sda11 /u04/dr/sda11.partimg.gz
      partimage -z1 -o -d -b save /dev/sda12 /u04/dr/sda12.partimg.gz
      partimage -z1 -o -d -b save /dev/sda13 /u04/dr/sda13.partimg.gz
      sfdisk -d /dev/sda > /u04/dr/sda.out
      sfdisk -d /dev/sdb > /u04/dr/sdb.out
      2.7 mt -f /dev/st0 rewind; tar cvf /dev/st0 /u04/dr

      3 Restore Procedure
      3.1 Press F2 to change the BIOS accept boot from CDROM
      3.2 Boot the system from “System Rescue CD”
      3.3 Press enter at the “boot:” prompt
      3.4 When the system prompt asking for speaker key map, type “41” and then press enter or just press enter to accept default key map
      3.5 After the “System Rescue CD” booted, mount any volume to restore data from cartridge.
      For example, “mkdir /u04; mount -t ex3 /dev/sdb5 /u04” on dbs or “mkdir /u02; mount -t ex3 /dev/sdb2 /u02” on aps
      3.6 Restore partition table and images from tape cartridge: 3.7 cd /u04/dr on dbs or cd /u02/dr on aps; tar xvf /dev/st0 *; tar xvf /dev/st0 sda.out 3.8 run “sh /u04/dr/drrestore.sh”
      #!/bin/sh
      sfdisk /dev/sda < sda.out
      partimage -b restore /dev/sda1 /u04/dr/sda1.partimg.gz.000
      partimage -b restore /dev/sda2 /u04/dr/sda2.partimg.gz.000
      partimage -b restore /dev/sda5 /u04/dr/sda5.partimg.gz.000
      partimage -b restore /dev/sda6 /u04/dr/sda6.partimg.gz.000
      partimage -b restore /dev/sda7 /u04/dr/sda7.partimg.gz.000
      partimage -b restore /dev/sda8 /u04/dr/sda8.partimg.gz.000
      partimage -b restore /dev/sda9 /u04/dr/sda9.partimg.gz.000
      partimage -b restore /dev/sda10 /u04/dr/sda10.partimg.gz.000
      partimage -b restore /dev/sda11 /u04/dr/sda11.partimg.gz.000
      partimage -b restore /dev/sda12 /u04/dr/sda12.partimg.gz.000
      partimage -b restore /dev/sda13 /u04/dr/sda13.partimg.gz.000
      partimage restmbr /u04/dr/sda1.partimg.gz.000

        本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內(nèi)容,請點擊一鍵舉報。
        轉藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多