Δημοσιεύτηκε: 04 Νοέμ 2008, 21:16
από linuxman
nikosal έγραψε:Από ό,τι φαίνεται, το backup έγινε στην εντέλεια! Ευχαριστώ παιδιά. Όλα τα αρχεία και τα μέιλ είναι εκεί. Δεν αναγνωρίζει για κάποιο λόγο το password σε ένα από τους λογαριασμούς του evolution, αλλά αυτό είναι minor issue.

Εξαιρετικός τρόπος για backup. Αν κάνεις ένα tar.gz το home σου κάθε 15, ε, είσαι μια χαρά. Εξίσου καλό νομίζω και με το χωριστό home, αφού και εκείνο θέλει backup, σωστά;

Λίνουξμαν, εννοούσες xzvf...

Και ναι και όχι ..
Κώδικας: Επιλογή όλων

TAR(1) TAR(1)

NAME
tar - The GNU version of the tar archiving utility

SYNOPSIS
tar [ - ] A --catenate --concatenate | c --create | d --diff --compare | --delete | r --append | t --list | u --update | x --extract --get [
options ] pathname [ pathname ... ]

DESCRIPTION
This manual page documents the GNU version of tar , an archiving program designed to store and extract files from an archive file known as a
tarfile. A tarfile may be made on a tape drive, however, it is also common to write a tarfile to a normal file. The first argument to tar must
be one of the options: Acdrtux, followed by any optional functions. The final arguments to tar are the names of the files or directories which
should be archived. The use of a directory name always implies that the subdirectories below should be included in the archive.

EXAMPLES
tar -xvvf foo.tar
extract foo.tar

tar -xvvzf foo.tar.gz
extract gzipped foo.tar.gz

tar -cvvf foo.tar foo/
tar contents of folder foo in foo.tar

FUNCTION LETTERS
One of the following options must be used:

-A, --catenate, --concatenate
append tar files to an archive

-c, --create
create a new archive

-d, --diff, --compare
find differences between archive and file system

--delete
delete from the archive (not for use on mag tapes!)

-r, --append
append files to the end of an archive

-t, --list
list the contents of an archive

-u, --update
only append files that are newer than copy in archive

-x, --extract, --get
extract files from an archive