Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 2017  / 1 Year ago, wed, december 14, 2022, 4:21:28

I have a folder of about 20GB that I'd like to back up. It's the .raw files of photos I took last year, so it's not a folder that will change, so incremental backups isn't an issue. All I'd like is a simple way to back up the folder to a number of DVDs. What program is best for this sort of task?



A lot of the backup programs seem to be more about incremental backups and so forth, which I'm not interested in. I'd like the program to automatically break down the folder into chunks that can be written to DVD.


More From » backup

 Answers
0

DAR: Disk ARchive




dar is a shell command that backs up directory trees and files




In summary - it can archive any folder tree and write slices - where each slice can be burned to disk using your favourite disk burner.



The advantage is that not all the slices need to be written out at once - while archiving, DAR will pause for you to write the slice before continuing.



How to install



sudo apt-get install dar


How to archive



dar -c /home/dad/test/archive -s 4700M -S 4695M -p -b -z -R /home/dad/Downloads -D


In this example, DAR will write a slice called "archive" of size 4695MB to the folder /home/dad/test. The folder /home/dad/Downloads and everything in that folder including subfolders are compressed into each slice.



After each slice is written you write the file to DVD before deleting it.



How to list the contents



Use the format:



dar -l [name of archive]


e.g.



cd /media/cdrom
dar -l archive


How to extract individual files



Use the format:



dar -R [folder to extract to] -x [archive name] -g [file to extract]


for example:



dar -R . -x /media/cdrom/archive -g filetoextract.txt





More information, examples and tutorials: http://dar.linux.free.fr/doc/Tutorial.html


[#43414] Wednesday, December 14, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fulerio

Total Points: 172
Total Questions: 124
Total Answers: 109

Location: Hungary
Member since Thu, Aug 6, 2020
4 Years ago
;