Re: tar question

2003-12-01 Thread Paul Morgan
On Sun, 30 Nov 2003 19:04:37 -0800, Ralph Alvy wrote: I'm trying to create a compressed backup of my home directory in the following location: /mnt/back When I try it uncompressed with tar cvf /mnt/back/20031130 ~ it succeeds. But when I try to do it compressed

usenet gateways (was Re: tar question)

2003-12-01 Thread Jonathan Dowland
On Sun, Nov 30, 2003 at 08:10:17PM -0800, Ralph Alvy wrote: After I noticed that, I deleted my message from the server to not waste anyone's time. Apparently it stayed on long enough for your patient answer. Thanks. Interesting, you are using the GMANE gateway... of course since this is a

Re: tar question

2003-11-30 Thread Bob_parker
- Original Message From: Ralph Alvy [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: tar question Date: 01/12/03 13:22 I'm trying to create a compressed backup of my home directory in the following location: /mnt/back When I try it uncompressed

Re: tar question

2003-11-30 Thread Ralph Alvy
Bob_parker wrote: - Original Message From: Ralph Alvy [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: tar question Date: 01/12/03 13:22 I'm trying to create a compressed backup of my home directory in the following location: /mnt/back When

tar question

2003-10-21 Thread Ralph Alvy
A newbie question. I'm trying to bakup the current directory to my MO device. That device is registered in the system as /dev/sda and is mounted on /mnt/mo Neither of the following attempts success in creating a backup.tar.gz file on my MO drive: tar cvzf /dev/sda

Re: tar question

2003-10-21 Thread Ashish Ariga
On Tue, Oct 21, 2003 at 03:47:29PM -0700, Ralph Alvy wrote: A newbie question. I'm trying to bakup the current directory to my MO device. That device is registered in the system as /dev/sda and is mounted on /mnt/mo Neither of the following attempts success in

Re: tar question

2003-10-21 Thread Ralph Alvy
Ashish Ariga wrote: On Tue, Oct 21, 2003 at 03:47:29PM -0700, Ralph Alvy wrote: A newbie question. I'm trying to bakup the current directory to my MO device. That device is registered in the system as /dev/sda and is mounted on /mnt/mo Neither of the following

Re: tar question from newbie

2002-06-18 Thread Dave Carrigan
On Mon, 2002-06-17 at 19:23, Abner Gershon wrote: This is very frustrating. I have 3 Linux books that I have consulted as well as the man page and I can't figure out how to use tar to back up my /home directory from where it resides on /dev/hdd to my other hard drive /dev/hdb7. Other

tar question from newbie

2002-06-17 Thread Abner Gershon
This is very frustrating. I have 3 Linux books that I have consulted as well as the man page and I can't figure out how to use tar to back up my /home directory from where it resides on /dev/hdd to my other hard drive /dev/hdb7. I accidentaly ran fsck today without making the file system read

Re: tar question from newbie

2002-06-17 Thread Chris Kenrick
On Mon, Jun 17, 2002 at 07:23:00PM -0700, Abner Gershon wrote: This is very frustrating. I have 3 Linux books that I have consulted as well as the man page and I can't figure out how to use tar to back up my /home directory from where it resides on /dev/hdd to my other hard drive /dev/hdb7.

Re: tar question from newbie

2002-06-17 Thread Nick Hastings
Hi, * Abner Gershon [EMAIL PROTECTED] [020618 12:23]: snip Anyway I change to my home directory, cd /home. Then type tar -cf /mnt/abner (I previously mounted /dev/hdb7 to /mnt) The argumen tafter the f needs to be the distination file. eg. tar -cf /mnt/abner.tar abner ^^^

Re: tar question from newbie

2002-06-17 Thread Patrick Wiseman
On Mon, 17 Jun 2002, Abner Gershon wrote: This is very frustrating. I have 3 Linux books that I have consulted as well as the man page and I can't figure out how to use tar to back up my /home directory from where it resides on /dev/hdd to my other hard drive /dev/hdb7. I accidentaly ran

Re: tar question

2002-01-20 Thread Paul Mackinney
martin f krafft declaimed: | On Sun, Jan 06, 2002 at 12:26:58PM -0500, Stan Brown wrote: | | How can I get tar to backup my entire machine to a file in /tmp with | | causing recursion? why would you want to backup /tmp??? The question was how to back up to a file _in_ /tmp. Which

Re: tar question

2002-01-08 Thread dman
On Mon, Jan 07, 2002 at 04:50:36AM +0100, Carel Fellinger wrote: | On Sun, Jan 06, 2002 at 02:08:35PM -0500, dman wrote: | On Sun, Jan 06, 2002 at 12:26:58PM -0500, Stan Brown wrote: | | How can I get tar to backup my entire machine to a file in /tmp with | | causing recursion? | | tar -zcvf

Re: tar question

2002-01-08 Thread martin f krafft
| On Sun, Jan 06, 2002 at 12:26:58PM -0500, Stan Brown wrote: | | How can I get tar to backup my entire machine to a file in /tmp with | | causing recursion? why would you want to backup /tmp??? -- martin; (greetings from the heart of the sun.) \ echo mailto: !#^.*|tr *

Re: tar question

2002-01-07 Thread Carel Fellinger
On Sun, Jan 06, 2002 at 02:08:35PM -0500, dman wrote: On Sun, Jan 06, 2002 at 12:26:58PM -0500, Stan Brown wrote: | How can I get tar to backup my entire machine to a file in /tmp with | causing recursion? tar -zcvf /tmp/backup.tar.gz /[^t]* tar acts recursively automatically, but it is

tar question

2002-01-06 Thread Stan Brown
How can I get tar to backup my entire machine to a file in /tmp with causing recursion? -- Stan Brown [EMAIL PROTECTED]843-745-3154 Charleston SC. -- Windows 98: n. useless extension to a minor patch release for 32-bit extensions and a

Re: tar question

2002-01-06 Thread dman
On Sun, Jan 06, 2002 at 12:26:58PM -0500, Stan Brown wrote: | How can I get tar to backup my entire machine to a file in /tmp with | causing recursion? tar -zcvf /tmp/backup.tar.gz /[^t]* tar acts recursively automatically, but it is bad to try and include the directory you are writing the tar