











|  |
Rob
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
H/D backup?
I read somewhere that it was very easy to make a complete backup of a Linux
system. Is it possible to do this without 3rd party software? If so what is
the command.
Thanks, Rob
--
Remove SPAM to reply
Report this post to a moderator
|
|
12-05-02 03:24 AM
|
|
Peter T. Breuer
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: H/D backup?
Rob <bucfan11SPAM@earthlink.net> wrote:
> I read somewhere that it was very easy to make a complete backup of a Linux
Of course. Why wouldn't it be?
> system. Is it possible to do this without 3rd party software? If so what is
Yes.
> the command.
Any one you prefer. Where would you like to copy it to? One would
suspect that you need a short fast book on unix, and chapter 1 ...
Peter
Report this post to a moderator
|
|
12-05-02 04:24 AM
|
|
Bob Tennent
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: H/D backup?
On Wed, 4 Dec 2002 22:06:02 -0500, Rob wrote:
> I read somewhere that it was very easy to make a complete backup of a Linux
> system.
A one-time copy:
cd /
cp -a "everything except backup and proc" /backup
This assumes that a suitable file system has been mounted on /backup.
For incremental back-ups:
rsync -a --delete ...
will be more efficient.
Bob T.
Report this post to a moderator
|
|
12-05-02 04:24 AM
|
|
Mark Smitka
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
|
12-05-02 04:24 AM
|
|
Tan Zheng Da
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: H/D backup?
Rob wrote:
> I read somewhere that it was very easy to make a complete backup of a Linux
> system. Is it possible to do this without 3rd party software? If so what is
> the command.
> Thanks, Rob
>
> --
> Remove SPAM to reply
>
>
You can use 'tar' to back up entire directories, or 'dump' to back up
entire partitions. See their man pages for details.
--
tzd.
Report this post to a moderator
|
|
12-05-02 03:25 PM
|
|
Jon Portnoy
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: H/D backup?
In article <slrnautijk.b2b.BobT@linus.cs.queensu.ca>, Bob Tennent wrote:
> On Wed, 4 Dec 2002 22:06:02 -0500, Rob wrote:
>
> > I read somewhere that it was very easy to make a complete backup of a Linux
> > system.
>
> A one-time copy:
>
> cd /
> cp -a "everything except backup and proc" /backup
>
> This assumes that a suitable file system has been mounted on /backup.
>
> For incremental back-ups:
>
> rsync -a --delete ...
>
> will be more efficient.
>
> Bob T.
Just for the sake of completeness, you could also do incremental backups
with cp:
cp -au
--
Jon Portnoy
Report this post to a moderator
|
|
12-05-02 05:24 PM
|
|
|
Forum Rules: Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is OFF. |
|
ExamNotes forum archive
|