ZeroAltitude
Registered
Hello,
I want to ask the opinion of some Mac OSX/Unix adepts or gurus. I want to create a one-time, non-incremental but perfect backup of my single hard drive in my TiBook. I have a firewire 80 Gig Maxtor drive.
This is what I did:
Terminal
$ su root
$ cd /Volumes/Maxtor
$ mkdir sysback
$ cd sysback
$ tar cvXef - / | gzip -9 - >sysback.tar.gz
Some explanation:
tar option c: create
option v: report verbosely
option X: do not cross mount points (in particular, don't tar /Volumes! )
option e: die on first error
option f: file is
- : stdout
I believe that in theory, this should create a compressed copy of my volume /.
Am I correct? Does anyone have alternate suggestions for what I am trying to accomplish?
Thanks!
-ZeroAltitude
I want to ask the opinion of some Mac OSX/Unix adepts or gurus. I want to create a one-time, non-incremental but perfect backup of my single hard drive in my TiBook. I have a firewire 80 Gig Maxtor drive.
This is what I did:
Terminal
$ su root
$ cd /Volumes/Maxtor
$ mkdir sysback
$ cd sysback
$ tar cvXef - / | gzip -9 - >sysback.tar.gz
Some explanation:
tar option c: create
option v: report verbosely
option X: do not cross mount points (in particular, don't tar /Volumes! )
option e: die on first error
option f: file is
- : stdout
I believe that in theory, this should create a compressed copy of my volume /.
Am I correct? Does anyone have alternate suggestions for what I am trying to accomplish?
Thanks!
-ZeroAltitude