Top Banner
1 U3A How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto
28

U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

Dec 24, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

1U3A

How To Backup

CD/DVD, Memory Stick, Memory Card, 2nd hard drive,

auto

Page 2: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

2U3A

Backup:

Make a copy of Data, Software, or even an entire Disk, on

another medium, possibly in a remote location or on an

Internet Server

Page 3: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

3U3A

Commercial Practice:

“RAID” systems----put everything on more than one disk, all the time.

Daily (nightly) System Image to remote site---copy the WHOLE computer system, software and data, exactly as-is.

Regular “Incremental Backups” throughout the day---keep “updating” the backup.

Page 4: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

4U3A

Page 5: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

5U3A

Page 6: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

6U3A

Page 7: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

7U3A

IF you feel it to be necessary, you can use some of this

software to make Disk Images, or more selective Backups, and

schedule them to run automatically.

Page 8: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

8U3A

Where to?

(and how big is it?)

Page 9: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

9U3A

Internet Servers----very slow upload.

CD/DVD----not much capacity.

Memory Stick/Card----very expensive per Gb.

Additional/External Hard Disk----£50 for 1000Gb?

Page 10: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

10U3A

Does the average Computer Club member

need to do all this?

Page 11: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

11U3A

“My Documents”

Email and Contacts (Address Book)

Cookies and Favourites

Page 12: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

12U3A

Page 13: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

13U3A

Page 14: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

14U3A

A simple backup program using

“XCOPY”.

Page 15: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

15U3A

Page 16: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

16U3A

Using the “xcopy” command for an “incremental backup”.

 

xcopy "c:\Documents and Settings\user\My Documents\*" "archive\user\*" /D/I/C/E/Y >> backup.log

The first run copies everything. Subsequent runs will only copy files that have changed, or been added, since last time. NB: it wont delete files that have been removed since the last run. It makes a “log file” of what it has done.

 

Page 17: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

17U3A

/D Copies only those files whose source time is newer than the destination time.

 

/I If destination does not exist and copying more than one file, assumes that destination must be a directory.

 

/C Continues copying even if errors occur.

 

/E Copies directories and subdirectories, including empty ones.

 

/Y Suppresses prompting to confirm that you want to overwrite an existing destination file.

 

Page 18: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

18U3A

Backup.bat

Page 19: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

19U3A

Backup.bat copies the “current user’s” “My Documents” folder and sub-folders onto the drive you run backup.bat from. Next time it is run, it will only “update” the backup, not re-copy everything.

Backup.bat makes a folder “Archive” and then a sub-folder named for the “current user”, so a different user’s backup will go into a different sub-folder.

You must make sure that everything you want to keep is in “My Documents” and that the backup drive is big enough to hold the copy.

Page 20: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

20U3A

if not exist archive\nul md archive

if exist archive\backup_log.log del archive\backup_log.log

if exist "%USERPROFILE%\my documents\*" xcopy "%USERPROFILE%\my documents\*" "archive\%USERNAME%\*" /D/I/C/E/Y >> archive\backup_log.log

if exist "%USERPROFILE%\documents\*" xcopy "%USERPROFILE%\documents\*" "archive\%USERNAME%\*" /D/I/C/E/Y >> archive\backup_log.log

Page 21: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

21U3A

Page 22: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

22U3A

Page 23: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

23U3A

Page 24: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

24U3A

Page 25: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

25U3A

Page 26: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

26U3A

Page 27: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

27U3A

Page 28: U3A 1 How To Backup CD/DVD, Memory Stick, Memory Card, 2nd hard drive, auto.

28U3A