[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: (no subject)



+------------------------------------------------------------------------------
| On Thursday, Sep 21, 2006 at 03:51:36AM +0000, s. keeling wrote:
| 
| To: debian-user@lists.debian.org
| From: "s. keeling" <keeling@spots.ab.ca>
| Date: Thu, 21 Sep 2006 03:51:36 GMT
| Subject: Re: (no subject)
| 
| operator <operator1000@gmail.com>:
| > 
| >  Could someone recommend a substitute for k3b?

Do what k3b is doing manually (it just calls external programs to do
it's work). That is what the text below is.

There are several scripts and things around that do various ways of 
doing the things below, k3b is just a nice fancy gui for it instead.

-Chris

| 
| Consider learning how to create archives.  It's an opportunity to
| learn!  :-)  "tar" or "cpio" or "afio" (my favourite), then point
| mkisofs at the result, then point cdrecord at the result of that.
| This has worked well for me for years, over many versions of
| Linux/Unix.  Here's an example of how I use them.  You're welcome to a
| copy of the script I use.  Just ask.
| 
| I've built a shell script which creates afio archives with:
| 
|     find /${f} -depth -mount | \
|            egrep -v "`cat ${workdir}/tarX_${f}`" \
|            | afio -Z -v -T 3k -o ${workdir}/${now}_${f}.afio \
|            >  ${workdir}/${now}_${f}.log 2>&1
| 
| ${workdir}/tarX_${f} lists stuff you don't want backed up.
| 
| ${now} == $(date '+%Y%m%d')
| 
| ${f} == one of "root etc home var" (it's a loop variable).
| 
| Whatever the above command lands in ${workdir}, write to ISO image
| file:
| 
|     mkisofs -R -o /scratch/iso/track_01.img \
|            -pad -allow-leading-dots -max-iso9660-filenames \
|            -r -relaxed-filenames /scratch/afio
| 
| Then:
| 
|     cdrecord dev=/dev/hdd -eject \
|            -tao -data /scratch/iso/track_01.img
| 
| No GUI required.  Full backup of a personal workstation, capable of
| restoring it after reinstall of OS, in only 18 minutes or so.
| 
| 
| -- 
| Any technology distinguishable from magic is insufficiently advanced.
| (*)    http://www.spots.ab.ca/~keeling          Linux Counter #80292
| - -    http://www.faqs.org/rfcs/rfc1855.html    Please, don't Cc: me.
|        Spammers! http://www.spots.ab.ca/~keeling/emails.html
| 
| 
| -- 
| To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org 
| with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org

-- 
a programmer with free time, sometimes.



Reply to: