PDA

View Full Version : Tìm phần mềm sao lưu dữ liệu trên ổ cứng ?



linhsb
27-08-2012, 10:07
Số là công ty mình có một con server chuyên dùng để mọi người upload tài liệu làm việc lên đó, dữ liệu thay đổi liên tục.
Giờ có nhu cầu tìm một giải pháp sao lưu dữ liệu thế nào nhanh chóng tiện lợi, an toàn.
Ko có nhu cầu sao lưu cả disk nhé chỉ các partition thôi, chỉ có 1 đến 2 partition chưa dữ liệu cần sao lưu.
Em muốn tìm phần mềm nào mà nó chỉ update các file được tạo mới hoặc mới được sửa đổi vào bộ backup cũ ấy cho nó gọn nhẹ ?
Ví dụ:
- File back up ngày 1 tên là A
- Đến ngày thứ 5 em chạy back up thì nó sẽ xem có file nào mới đc tạo ra, file cũ nào đã bị sửa đổi để thêm vào cái bản A đó chứ không phải update lại từ đầu

Tốt nhất là phần mềm nào có cả 3 chức năng là tốt nhất.


Full Backup
Differential Backup
Incremental Backup
Một bài rất hay cho bác nào chưa hiểu 3 kiểu backup trên:

http://chicanonline.blogspot.com/2011/10/sao-luu-incremental-hay-differential.html

Kính nhờ các ace ra tay giúp em cái. Lão sếp tàn ác đòi đâu giờ chiều e phải báo lên rồi.

The Old Man
27-08-2012, 12:20
Cái lệnh dể nhất và máy nào củng có mà không có ma nào biết mà dùng. Đó là lệnh Xcopy của Windows.

Backup toàn thể ổ partition hard-disk lần đầu:
Ví dụ partition (hay ổ) D: chứa data, hoặc một folder trong đó củng OK
và ở F: là ổ dể chứa backup data

xcopy D:\*.* F: /S

Có thể copy folder (ví dụ folder DATA) như sau:

xcopy D:\data\*.* F:\data /S

Một lần đầu gọi là FULL Backup.

Lần thứ nhì chỉ cần thêm một parameter \D vào phía sau của cái lệnh trước là xong

Vì dụ:
xcopy D:\*.* F: /S /D khi lệnh này chạy thỉ xcopy chỉ copy DL nào có ngày tháng mới hơn lần trước tức là đã update sau lần backup trước đó.

Chỉ cần làm một batch file là xong. Tự chạy nó manually hoặc là cho nó vào Task scheduler cho nó tự chạy lúc 1:00 sáng là xong.

Cần gì phải tìm mua software.

Xin mấy bạn ráng học kỷ những chức năng của Windows trước khi đòi hòi nhửng cái cao xa.
Căn bản không có thì ráng mà học dùm cho đở phải khổ thân.


Coi kỷ nhửng thông số của Xcopy sau:

C:\Users\TOM>xcopy /?
Copies files and directory trees.

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]
[/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]
[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/B]
[/EXCLUDE:file1[+file2][+file3]...]

source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/A Copies only files with the archive attribute set, doesn't change the attribute.
/M Copies only files with the archive attribute set, turns off the archive attribute.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1[+file2][+file3]...
Specifies a list of files containing strings. Each string should be in a separate line in the files. When any of the strings match any part of the absolute path of the file to be
copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P Prompts you before creating each destination file.
/S Copies directories and subdirectories except empty ones.
/E Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V Verifies the size of each new file.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files that would be copied.
/G Allows the copying of encrypted files to destination that does not support encryption.
/H Copies hidden and system files also.
/R Overwrites read-only files.
/T Creates directory structure, but does not copy files. Does not include empty directories or subdirectories. /T /E includes empty directories and subdirectories.
/U Copies only files that already exist in destination.
/K Copies attributes. Normal Xcopy will reset read-only attributes.
/N Copies using the generated short names.
/O Copies file ownership and ACL information.
/X Copies file audit settings (implies /O).
/Y Suppresses prompting to confirm you want to overwrite an existing destination file.
/-Y Causes prompting to confirm you want to overwrite an existing destination file.
/Z Copies networked files in restartable mode.
/B Copies the Symbolic Link itself versus the target of the link.
/J Copies using unbuffered I/O. Recommended for very large files.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line.

Hảy chú ý mấy chữ đỏ nó giúp cho việc backup đử liệu nhanh và dể dàng hơn

ThangXike
27-08-2012, 13:31
Everyday Auto Backup 1.10 - Tự động sao lưu dữ liệu là phần mềm thỏa mãn yêu cầu của bạn, dung lượng nhở gọn 736 KB, tớ đã dùng thấy tốt lắm, Backup cả qua máy trong mạng Lan, tất cả đều auto cả.

vimottuonglai
29-08-2012, 16:10
Quá tốt mấy bác à :D

linhsb
31-08-2012, 16:08
@Tom: rất cám ơn bài của bác, em sẽ thử, nhưng nói thật là nhiều khả năng e sẽ vẫn kiếm phần mềm, vì ko chỉ e làm mà e còn phải hướng dẫn cho người mù mờ hơn nữa.
@Thangxike: em sẽ thử phần mềm của bác.