Re: Very big files with tar

2003-07-04 Thread Joerg Johannes
On Friday 04 July 2003 12:50, Raffaele Sandrini wrote: > Hi > > I'd like to do a backup to another partition using tar. Here are > about 9GB data to be saved. After a while tar complaints about a to > big output file (i think max size is around 2GB). Is there a way to > s

Re: Very big files with tar

2003-07-04 Thread Paul Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, Jul 04, 2003 at 12:50:52PM +0200, Raffaele Sandrini wrote: > I'd like to do a backup to another partition using tar. Here are about 9GB > data to be saved. After a while tar complaints about a to big output file (i > think max

Very big files with tar

2003-07-04 Thread Raffaele Sandrini
Hi I'd like to do a backup to another partition using tar. Here are about 9GB data to be saved. After a while tar complaints about a to big output file (i think max size is around 2GB). Is there a way to split the output in more files? cheers, Raffaele -- Raffaele Sandrini <[EMAIL P

Re: tar over ssh (SOLVED!!!!)

2003-03-31 Thread Iñaki Martínez
Kaixo Colin Watson!!! > tar cvz directories_to_tar | ssh [EMAIL PROTECTED] 'cat > file_in_server1.tgz' This is the solution Thanks to everybody who answer! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: tar over ssh

2003-03-31 Thread Colin Watson
On Mon, Mar 31, 2003 at 03:23:13PM +0200, I?aki Mart?nez wrote: > Then what i need it is something like this: > > server2$ tar cvz directories_to_tar | ssh [EMAIL PROTECTED] > file_in_server1.tgz > > but THIS NOT WORK :-( You need to make sure that the redirection hap

Re: tar over ssh

2003-03-31 Thread Thomas Krennwallner
On Mon Mar 31, 2003 at 03:23:13PM +0200, the boisterous Iñaki Martínez <[EMAIL PROTECTED]> wrote to me: > server1$ ssh [EMAIL PROTECTED] tar cvz directories_to_tar > file_in_server1.tgz do it like this: $ ssh [EMAIL PROTECTED] "tar cvz dir2tar" > [EMAIL P

Re: tar over ssh

2003-03-31 Thread Eduard Bloch
#include Iñaki Martínez wrote on Mon Mar 31, 2003 um 03:23:13PM: > Then what i need it is something like this: > > server2$ tar cvz directories_to_tar | ssh [EMAIL PROTECTED] > file_in_server1.tgz > > but THIS NOT WORK :-( tar cvz directories_to_tar | ssh [EMA

Re: tar over ssh

2003-03-31 Thread Joerg Johannes
Hi Iñaki > i have 2 servers, server1 and server2, and i want to make a "tar" of some > directories in server2, but storing the tar_file in server1, as in server2 > there is NOT space left. Why don't you copy the files first and tar them locally? Directories can be cop

Re: tar over ssh

2003-03-31 Thread Lukas Ruf
try * I?aki Mart?nez <[EMAIL PROTECTED]> [2003-03-31 15:45]: > Then what i need it is something like this: > > server2$ tar cvz directories_to_tar | ssh [EMAIL PROTECTED] > file_in_server1.tgz > tar cf - | ssh [EMAIL PROTECTED] "cat > file" wbr, Lukas --

tar over ssh

2003-03-31 Thread Iñaki Martínez
HI!!! i have 2 servers, server1 and server2, and i want to make a "tar" of some directories in server2, but storing the tar_file in server1, as in server2 there is NOT space left. NOTE: i do NOT want to use NFS. If i do the following: server1$ ssh [EMAIL PROTECTE

Re: How do I 'tar' a huge file?

2003-03-28 Thread Paul Mackinney
missing something here? or can this simply not be done? > > > >-Roberto Sanchez > > > > Did you pass the same -L option to tar for the untar as you did > for the tar? > I think the --multi-volume option will do the trick; it worked for me when backing up to a

{SOLVED] Re: How do I 'tar' a huge file?

2003-03-21 Thread Roberto Sanchez
On Fri, 2003-03-21 at 15:22, Roberto Sanchez wrote: > I have a VMWare virtual machine image of ~3.5GB, that I need to tar (and > hopefully gzip) into multiple (relatively) smaller archives that I can > backup onto CD-R. Not quite if this meets your requirements, but how about using sp

Re: How do I 'tar' a huge file?

2003-03-21 Thread Travis Crump
you pass the same -L option to tar for the untar as you did for the tar? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: How do I 'tar' a huge file?

2003-03-21 Thread Shri Shrikumar
On Fri, 2003-03-21 at 20:22, Roberto Sanchez wrote: [...] > Am I missing something here? or can this simply not be done? I dont know much about this stuff but try copying the file instead of renaming it. tar might hold a pointer to the file which would work even after it was moved. Jus

Re: How do I 'tar' a huge file?

2003-03-21 Thread Mark Roach
On Fri, 2003-03-21 at 15:22, Roberto Sanchez wrote: > I have a VMWare virtual machine image of ~3.5GB, that I need to tar (and > hopefully gzip) into multiple (relatively) smaller archives that I can > backup onto CD-R. Not quite if this meets your requirements, but how about using sp

How do I 'tar' a huge file?

2003-03-21 Thread Roberto Sanchez
I have a VMWare virtual machine image of ~3.5GB, that I need to tar (and hopefully gzip) into multiple (relatively) smaller archives that I can backup onto CD-R. I know that if I invoke tar with -L and give it the media size in KB, I can generate a multivolume archive. However, when I give

Re: tar ate my symlinks

2003-03-19 Thread Kevin Buhr
Brian Victor <[EMAIL PROTECTED]> writes: > > I believe you're right. It was "exiting now" when untarring /proc, > which apparently prevented it from finishing the job. > > >tar -jtvf linuxbackup.tar.bz2 | egrep '^l' | \ > >

Re: tar ate my symlinks

2003-03-18 Thread Colin Watson
On Mon, Mar 17, 2003 at 10:59:06AM -0800, Vineet Kumar wrote: > * nate <[EMAIL PROTECTED]> [20030317 10:45 PST]: > > Brian Victor said: > > > I backed up my debian installation with the following: > > > > > > tar --preserve -cv / | ssh 192.168.2.10 

Re: tar ate my symlinks

2003-03-18 Thread Pigeon
On Mon, Mar 17, 2003 at 01:30:45PM -0800, Vineet Kumar wrote: > When figuring out which files to back up, I'd say you should avoid > backing up things that can just be reinstalled. Like, for example, take > the output of dpkg --get-selections, and you won't need to back up all > of /usr; you can r

Re: tar ate my symlinks

2003-03-18 Thread Brian Victor
Kevin, you are a life saver. On Mon, Mar 17, 2003 at 03:36:37PM -0800, Kevin Buhr wrote: >Sure, use: > > tar tvfj linuxbackup.tar.bz2 | less > >and you'll get an "ls -l"-style directory listing. That's very nice. Takes a long time on a 3GB bz2'ed f

Re: tar ate my symlinks

2003-03-17 Thread Kevin Buhr
a compressed (or even a > decompressed) tarball? Sure, use: tar tvfj linuxbackup.tar.bz2 | less and you'll get an "ls -l"-style directory listing. The symlinks should have an "lrwxrwxrwx" mode, and you should be able to see their values. I believe you've bee

Re: tar ate my symlinks

2003-03-17 Thread Vineet Kumar
* Brian Victor <[EMAIL PROTECTED]> [20030317 12:07 PST]: > On Mon, Mar 17, 2003 at 09:43:09AM -0800, Vineet Kumar wrote: > >* Brian Victor <[EMAIL PROTECTED]> [20030317 07:52 PST]: > >> I backed up my debian installation with the following: > >> > >&

Re: tar ate my symlinks

2003-03-17 Thread Vineet Kumar
* Brian Victor <[EMAIL PROTECTED]> [20030317 12:05 PST]: > On Mon, Mar 17, 2003 at 09:53:26AM -0800, nate wrote: > >Brian Victor said: > >> I backed up my debian installation with the following: > >> > >> tar --preserve -cv / | ssh 192.168.2.10 'cat

Re: tar ate my symlinks

2003-03-17 Thread Brian Victor
On Mon, Mar 17, 2003 at 09:43:09AM -0800, Vineet Kumar wrote: >* Brian Victor <[EMAIL PROTECTED]> [20030317 07:52 PST]: >> I backed up my debian installation with the following: >> >> tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2'

Re: tar ate my symlinks

2003-03-17 Thread Brian Victor
On Mon, Mar 17, 2003 at 09:53:26AM -0800, nate wrote: >Brian Victor said: >> I backed up my debian installation with the following: >> >> tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' > >may I ask why? I have never heard of someone atte

Re: tar ate my symlinks

2003-03-17 Thread Craig Dickson
nate wrote: > Brian Victor said: > > I backed up my debian installation with the following: > > > > tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' > > may I ask why? I have never heard of someone attempting such > a task in th

Re: tar ate my symlinks

2003-03-17 Thread Vineet Kumar
* nate <[EMAIL PROTECTED]> [20030317 10:45 PST]: > Brian Victor said: > > I backed up my debian installation with the following: > > > > tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' > > may I ask why? I have never heard of som

Re: tar ate my symlinks

2003-03-17 Thread nate
Brian Victor said: > I backed up my debian installation with the following: > > tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' may I ask why? I have never heard of someone attempting such a task in that manor. I would say that the above is the source of

Re: tar ate my symlinks

2003-03-17 Thread Vineet Kumar
* Brian Victor <[EMAIL PROTECTED]> [20030317 07:52 PST]: > I backed up my debian installation with the following: > > tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' That .bz2 extension on that file is misleading. The usual extension for uncompr

Re: tar ate my symlinks

2003-03-17 Thread ronin2
On Mon, 17 Mar 2003 09:54:14 -0500 Brian Victor <[EMAIL PROTECTED]> wrote: > > Thanks in advance to anyone who helps make my machine usable again. > I don't know the answer to your question, but I have other recommendations. Right now, before you do anything else, mount a floppy and do: dpkg -

tar ate my symlinks

2003-03-17 Thread Brian Victor
I backed up my debian installation with the following: tar --preserve -cv / | ssh 192.168.2.10 'cat > linuxbackup.tar.bz2' And attempted to restore it with the following: ssh 192.168.2.10 'cat linuxbackup.tar.bz2' | tar -jxv Both commands were run as root. However

Re: Applying Debian diff to a newer upstream tar ball.

2003-03-07 Thread David Z Maze
Shaul Karl <[EMAIL PROTECTED]> writes: > I have just applied a debian .diff.gz to a newer upstream tar ball. > Although the patch succeeded, any comments or pointers for discussion > about this process would be appreciated. I do believe that my case was > easy because the

Applying Debian diff to a newer upstream tar ball.

2003-03-07 Thread Shaul Karl
I have just applied a debian .diff.gz to a newer upstream tar ball. Although the patch succeeded, any comments or pointers for discussion about this process would be appreciated. I do believe that my case was easy because the newer upstream tar ball was only slightly different from Debian's

Re: moving fs to new disk using tar

2003-02-10 Thread Richard Hector
On Tue, Feb 11, 2003 at 12:48:34AM -0500, sean finney wrote: > heya, > > On Tue, Feb 11, 2003 at 05:11:08PM +1300, Richard Hector wrote: > > tar -c --atime-preserve -l usr |tar -C /spareide -x -v --atime-preserve > > --preserve --same-owner > > may i suggest a

Re: moving fs to new disk using tar

2003-02-10 Thread sean finney
heya, On Tue, Feb 11, 2003 at 05:11:08PM +1300, Richard Hector wrote: > tar -c --atime-preserve -l usr |tar -C /spareide -x -v --atime-preserve > --preserve --same-owner may i suggest a less confusing alternative: rsync -a usr/ /spareide it does for most intents and purposes the same

moving fs to new disk using tar

2003-02-10 Thread Richard Hector
user mode - that's what "init 1" does, right?): tar -c --atime-preserve -l usr |tar -C /spareide -x -v --atime-preserve --preserve --same-owner I wasn't entirely clear from the man page which options were intended for use with creating and which with extracting the archive,

Re: Need help: tar and huge files

2003-02-04 Thread Ron Johnson
shame!!! Why didn't you back up your data??? [snip] > Does anyone have any ideas on how to get that file out from the tar so I > may access the files that reside after it in the tar? There's about > 2,000 more files in there I'd really like to pull out. 1/2 my hom

Need help: tar and huge files

2003-02-04 Thread Steve Lamb
t the Woody bootable CD rom. Huge thanks to whomever created that, smoothest Debian install I've ever had. Anyway my problem is putting the files back onto the file system. Some of the files that were tar.gz'd had file pointers far beyond their allocated memory. As a result when ta

Re: looking inside zip/tar files with nautilus2

2003-01-18 Thread Rich Rudnick
ilus2-data 2.0.0-1Development files of Nautilus > (GNOME2) > > What else do I need to install in order to be able to look inside various > archives? (i.e., *.zip, *.tar, *.gz, *.bz, etc) > > Currently, when I click on one of the archives, Nautilus complains that it > h

looking inside zip/tar files with nautilus2

2003-01-18 Thread Maciej Kalisiak
install in order to be able to look inside various archives? (i.e., *.zip, *.tar, *.gz, *.bz, etc) Currently, when I click on one of the archives, Nautilus complains that it has no install viewer capable of opening those files. -- Maciej Kalisiak mac "at" dgp.t

Re: tar file extract specific

2003-01-09 Thread Johannes Berth
* Mike Egglestone <[EMAIL PROTECTED]>: > I have a normal backup tar file of my /home directory. > Is it possible to extract certain or specific files out of this > tar file without having to untar the entire file first? Yes. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] wi

Re: tar file extract specific

2003-01-09 Thread Alvin Oga
hi ya On Thu, 9 Jan 2003, Mike Egglestone wrote: > Hi, > > I have a normal backup tar file of my /home directory. > Is it possible to extract certain or specific files out of this > tar file without having to untar the entire file first? # # go to some work area where yu kn

Re: tar file extract specific

2003-01-09 Thread Robert L. Harris
tar xvf home.tar file1_to_recover.ext file2.ext Thus spake Mike Egglestone ([EMAIL PROTECTED]): > Hi, > > I have a normal backup tar file of my /home directory. > Is it possible to extract certain or specific files out of this > tar file without having to untar the en

tar file extract specific

2003-01-09 Thread Mike Egglestone
Hi, I have a normal backup tar file of my /home directory. Is it possible to extract certain or specific files out of this tar file without having to untar the entire file first? Thanks, Mike - This mail sent through IMP: http://horde.org/imp

Re: How do I tell apt that X is installed (from tar dist)

2002-12-19 Thread Tony Crawford
Doug MacFarlane wrote (on 19 Dec 2002 at 13:32): > APT::Default-Release "stable"; > > and add lines to /etc/apt/sources.list that point to testing, as > well as to stable, like this: > > deb http://ftp.us.debian.org/debian/ stable main non-free contrib > deb-src http://ftp.us.debian.org/debian/

Re: How do I tell apt that X is installed (from tar dist)

2002-12-19 Thread Doug MacFarlane
On 19 Dec 2002, 12:52:18, Tony Crawford wrote: > I have a woody notebook and put XFree86 4.2.0 on it from the > tarballs (because of better hdw support than in X v3). Now I > want to try out some window managers, but apt-get wants to > install xfree86-common every time I ask it for an X app.

How do I tell apt that X is installed (from tar dist)

2002-12-19 Thread Tony Crawford
Hi Gang! (sorry for the repost. I'm still practicing my Subject lines.) I have a woody notebook and put XFree86 4.2.0 on it from the tarballs (because of better hdw support than in X v3). Now I want to try out some window managers, but apt-get wants to install xfree86-common every time I ask i

Re: Help with tape tar and backup over the network

2002-11-14 Thread Haim Ashkenazi
On Thu, 2002-11-14 at 10:47, Paul Lewis wrote: > I have a DAT tape drive which works on my RH6 server I would like to > use it to backup my Debian machine. I cannot seem to make the tar > syntax work for me. Does anyone use this type of setup and what rights > need to be setup o

Help with tape tar and backup over the network

2002-11-14 Thread Paul Lewis
I have a DAT tape drive which works on my RH6 server I would like to use it to backup my Debian machine. I cannot seem to make the tar syntax work for me. Does anyone use this type of setup and what rights need to be setup on the server (hosts.allow, etc) to permit this to work? tar -cvf /dev

Re: Backup Script - tar vs rsync

2002-10-22 Thread Alvin Oga
as is its good too... oh well... pick one... and i still like a tar file of anything copied.. i still like the backup the way i doing it.. ;-) - recover from any of 3 mechanisms - for those looking ( in the archives ) for backup scripts to any media and finding this post ... :-)

Re: Backup Script - tar vs rsync

2002-10-21 Thread Alan Chandler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 22 October 2002 3:12 am, Alvin Oga wrote: > rsync .> possible bad stuff > - if the master erased foo.txt, the backup will also be erased Not if you use the --backup --backup-dir options. In fact I use these to create an incre

Re: Backup Script - tar vs rsync

2002-10-21 Thread Alvin Oga
On Mon, 21 Oct 2002, Auke Jilderda wrote: > On Sun, Oct 20, 2002 at 12:19:11PM -0700, Karsten M. Self wrote: > > > > Read the following page, then modify the associated script to your > > system. It's geared toward tape. For drive-to-drive, I'd suggest rs

Re: tar question from newbie

2002-06-17 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 driv

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. &

Re: tar question from newbie

2002-06-17 Thread Nick Hastings
Hi, * Abner Gershon <[EMAIL PROTECTED]> [020618 12:23]: > 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.

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 > o

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

Re: Entire tar download for debian LINUX with all the rpms ?

2002-04-22 Thread Karsten M. Self
on Mon, Apr 22, 2002, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > Hi, > > > > Can someone give the exact site for the Entire tar download for debian > LINUX with all the rpms and the Kernel 2.4.17 or later for intel > plaform. I don't believe you know what

Entire tar download for debian LINUX with all the rpms ?

2002-04-22 Thread dkotian3
Hi, Can someone give the exact site for the Entire tar download for debian LINUX with all the rpms and the Kernel 2.4.17 or later for intel plaform. I have tried ftp://ftp.jp.debian.org/debian/ via www.debian.org, it says the site has been moved. Can someone please help me with this

Re: backup with tar

2002-03-01 Thread Karsten M. Self
on Wed, Feb 27, 2002, Raffaele Sandrini ([EMAIL PROTECTED]) wrote: > Hi > > I use tar to do my backups. > > For now i allways do full backups. Is tar able to treat only changed files? > That would make my bakups smaller... :-) # Full backup, run weekly: touch /var/log

RE: backup with tar --newer

2002-02-27 Thread Alvin Oga
hi ya there is "tar --newer" too that does incremental backups presumably from the last time it ran with that option c ya alvin http://www.Linux-Backup.net On Wed, 27 Feb 2002, Kurc, Marcin A. wrote: > Sure does > check -g option, incremental ... >

RE: backup with tar

2002-02-27 Thread Kurc, Marcin A.
Sure does check -g option, incremental ... Marcin Kurc CAD Systems Administrator Cooper-Standard Automotive -Original Message- From: Raffaele Sandrini [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 2:02 PM To: debian-user@lists.debian.org Subject: backup with tar Hi I

backup with tar

2002-02-27 Thread Raffaele Sandrini
Hi I use tar to do my backups. For now i allways do full backups. Is tar able to treat only changed files? That would make my bakups smaller... :-) cheers, Raffaele -- Raffaele Sandrini <[EMAIL PROTECTED]> For encrypted Mail get my Public Key from "search.keyserver.net" ID: 0xEC4950E9

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 questi

Re: untarring tar file into specific directory

2002-01-14 Thread ben
On Monday 14 January 2002 10:44 am, MH wrote: > >>>>> "Elizabeth" == Elizabeth Barham <[EMAIL PROTECTED]> writes: > > Elizabeth> you can also untar into a specific directory by going > Elizabeth> to the directory itself and untarring th

Re: untarring tar file into specific directory

2002-01-14 Thread MH
>>>>> "Elizabeth" == Elizabeth Barham <[EMAIL PROTECTED]> writes: Elizabeth> you can also untar into a specific directory by going Elizabeth> to the directory itself and untarring their, e.g. Elizabeth> tar xzf ../../oldtzs/xyz.tar.gz E

Re: untarring tar file into specific directory

2002-01-14 Thread Elizabeth Barham
you can also untar into a specific directory by going to the directory itself and untarring their, e.g. tar xzf ../../oldtzs/xyz.tar.gz hth elizabeth

Re: untarring tar file into specific directory

2002-01-14 Thread David Z Maze
Darren Wyn Rees <[EMAIL PROTECTED]> writes: > What option do I give tar to untar a file into a specific location ? > > I've backed up /var; re-formatted the partition, and now I want to > untar things back to /var. I've gone through the manual, but can't

Re: untarring tar file into specific directory

2002-01-14 Thread MH
>>>>> "Darren" == Darren Wyn Rees <[EMAIL PROTECTED]> writes: Darren> What option do I give tar to untar a file into a specific Darren> location ? I've backed up /var; re-formatted the Darren> partition, and now I want to untar things ba

untarring tar file into specific directory

2002-01-14 Thread Darren Wyn Rees
What option do I give tar to untar a file into a specific location ? I've backed up /var; re-formatted the partition, and now I want to untar things back to /var. I've gone through the manual, but can't find the right option. (I need something like unzip's '-d exdir&#

Re: tar giving different results for same command, trying to test cdrom device integrity

2002-01-11 Thread Paul E Condon
Walter Tautz wrote: > I am curious if anyone can clear up the following phenomena > for gnu tar on testing: > > # tar --version > tar (GNU tar) 1.13.25 > Copyright (C) 2001 Free Software Foundation, Inc. > This program comes with NO WARRANTY, to the extent permitted by law. &

tar giving different results for same command, trying to test cdrom device integrity

2002-01-11 Thread Walter Tautz
I am curious if anyone can clear up the following phenomena for gnu tar on testing: # tar --version tar (GNU tar) 1.13.25 Copyright (C) 2001 Free Software Foundation, Inc. This program comes with NO WARRANTY, to the extent permitted by law. You may redistribute it under the terms of the GNU

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.)

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? | &

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 recursive

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

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: Is it possible to convert a debian source package to a tar b

2001-12-08 Thread Sean 'Shaleh' Perry
On 08-Dec-2001 scott worley wrote: > Hi, > > I've been reading the man pages on dpkg & dpkg-deb to find out if it's > possible to covert the deb source directory: > > foo-x.y.z.orig > debian-dir with all the patches > upstream-source-dir >

Is it possible to convert a debian source package to a tar ball?

2001-12-07 Thread scott worley
Hi, I've been reading the man pages on dpkg & dpkg-deb to find out if it's possible to covert the deb source directory: foo-x.y.z.orig debian-dir with all the patches upstream-source-dir to a source tar ball with all patches applied? dpkg & dpkg-deb man page

Re: Tar dependencies broken?

2001-11-30 Thread Ross Boylan
I see the same problem; the upgrade tools (e.g. apt-get dist-upgrade or aptitude) are eager to remove lots of woody packages. The problem seems to be that the new tar knocks out cpio, and this in turn takes out dpkg-dev, which takes out a lot of things. Here's my list of affected packages

Re: new tar wants to remove my kernel!

2001-11-30 Thread dman
On Thu, Nov 29, 2001 at 09:49:26PM -0800, Sean 'Shaleh' Perry wrote: | | On 30-Nov-2001 David Wright wrote: | > | > I am running testing with kernel 2.4.12. Get this... | > | > debian:/home/ichbin# apt-get install tar | > Reading Package Lists... Done | > Buil

Re: Tar dependencies broken?

2001-11-30 Thread Colin Watson
On Fri, Nov 30, 2001 at 01:04:51PM +0200, Johann Spies wrote: > Fortunately I added the -s option in today's dist-upgrade and saw that > quite a few packages which I regard as important will be removed. I > figured out that it has to do with a new version of tar: Get apt to install

Tar dependencies broken?

2001-11-30 Thread Johann Spies
Fortunately I added the -s option in today's dist-upgrade and saw that quite a few packages which I regard as important will be removed. I figured out that it has to do with a new version of tar: $ sudo apt-get install tar Reading Package Lists...

Re: new tar wants to remove my kernel!

2001-11-29 Thread Sean 'Shaleh' Perry
On 30-Nov-2001 David Wright wrote: > > I am running testing with kernel 2.4.12. Get this... > > debian:/home/ichbin# apt-get install tar > Reading Package Lists... Done > Building Dependency Tree... Done > The following packages will be REMOVED: >build-essentia

new tar wants to remove my kernel!

2001-11-29 Thread David Wright
I am running testing with kernel 2.4.12. Get this... debian:/home/ichbin# apt-get install tar Reading Package Lists... Done Building Dependency Tree... Done The following packages will be REMOVED: build-essential cpio debhelper debmake devscripts dh-make dpkg-dev initrd-tools kernel-image

Re: tar replaces cpio in unstable

2001-11-24 Thread Dave Carrigan
[EMAIL PROTECTED] (David Natkins) writes: > tar replaces cpio in unstable. You may not want to do this. In dselect, put a hold on tar (the = key) until the new cpio gets up. Then, you won't see any mass un-installs. -- Dave Carrigan| Yow! Well, I'm

Re: tar replaces cpio in unstable

2001-11-24 Thread Sean 'Shaleh' Perry
On 24-Nov-2001 David Natkins wrote: > tar replaces cpio in unstable. You may not want to do this. > see my post yesterday on the thread "tar conflicts with cpio" for an explanation.

Re: tar replaces cpio in unstable

2001-11-24 Thread Craig Dickson
David Natkins wrote: > tar replaces cpio in unstable. You may not want to do this. We went over this yesterday here on the list. Tar does not exactly replace cpio, it simply insists that you get a newer cpio, which does not yet exist. Why it cares about cpio at all, I do not know. For mys

Re: tar replaces cpio in unstable

2001-11-24 Thread Hank Marquardt
it complains about gs-common versioning ... the box I did today all the kde stuff upgraded but I've the tar/cpio/gs issues -- I'd guess there is something in incoming that is slow to move but that's just a guess -- in the mean time if upgrading, look at the REMOVAL items in do

tar replaces cpio in unstable

2001-11-24 Thread David Natkins
tar replaces cpio in unstable. You may not want to do this.

Re: tar conflicts with cpio

2001-11-23 Thread Sean 'Shaleh' Perry
On 23-Nov-2001 Jeffrey W. Baker wrote: > On Fri, 2001-11-23 at 15:30, Sean 'Shaleh' Perry wrote: >> >> On 23-Nov-2001 Jeffrey W. Baker wrote: >> > What's the story with tar? The new package conflicts with cpio, and by >> > extension much of GNO

Re: tar conflicts with cpio

2001-11-23 Thread Jeffrey W. Baker
On Fri, 2001-11-23 at 15:30, Sean 'Shaleh' Perry wrote: > > On 23-Nov-2001 Jeffrey W. Baker wrote: > > What's the story with tar? The new package conflicts with cpio, and by > > extension much of GNOME. I'm not aware of inherent conflicts between >

Re: tar conflicts with cpio

2001-11-23 Thread Sean 'Shaleh' Perry
On 23-Nov-2001 Jeffrey W. Baker wrote: > What's the story with tar? The new package conflicts with cpio, and by > extension much of GNOME. I'm not aware of inherent conflicts between > cpio and tar: in my experience they are orthogonal or at least > complementary. Wh

Re: tar conflicts with cpio

2001-11-23 Thread Sean 'Shaleh' Perry
On 23-Nov-2001 Jeffrey W. Baker wrote: > What's the story with tar? The new package conflicts with cpio, and by > extension much of GNOME. I'm not aware of inherent conflicts between > cpio and tar: in my experience they are orthogonal or at least > complementary. Wh

tar conflicts with cpio

2001-11-23 Thread Jeffrey W. Baker
What's the story with tar? The new package conflicts with cpio, and by extension much of GNOME. I'm not aware of inherent conflicts between cpio and tar: in my experience they are orthogonal or at least complementary. Why do they now conflict?

Re: trying to verify contents of my tar archive

2001-11-10 Thread Karsten M. Self
on Sat, Nov 10, 2001 at 11:14:36AM -0800, Kurt Lieber ([EMAIL PROTECTED]) wrote: > I've been using Karsten Self's sample backup script available in the Linux > Backup mini-FAQ at: > > http://kmself.home.netcom.com/Linux/FAQs/backups.html > > This script basically u

trying to verify contents of my tar archive

2001-11-10 Thread Kurt Lieber
I've been using Karsten Self's sample backup script available in the Linux Backup mini-FAQ at: http://kmself.home.netcom.com/Linux/FAQs/backups.html This script basically uses tar to archive a list of directories to tape and then verifies the backup as well. When I run the script,

Re: tar and '-p' option

2001-11-10 Thread Dimitri Maziuk
option and I > want to make sure that if I have to recover > a filesystem that when I untar everything is > not set with the root permissions and ownership. Not sure about GNU tar, but most tars default to -p when run as root. In any case, giving it -p doesn't hurt. I always use -c

Re: tar and '-p' option

2001-11-10 Thread David Raeker-Jordan
Lance Hoffmeyer wrote: > When backing up directories do I need the -p > option to save file attributes, ownership... > or do I use -p during restore to do this, OR > do I not need -p and it is done by default? > I use -p on the extraction side and it works fine. Also, from the man page: -p, --s

Re: tar split into 650M sizes

2001-11-10 Thread Karsten M. Self
on Sat, Nov 10, 2001 at 01:32:57AM -0600, Lance Hoffmeyer ([EMAIL PROTECTED]) wrote: > Is there a way to run tar on a direcory that is 2Gig and have tar > create multiple file that are 650M each? > > Yes, I am trying to create a CD backup. None of the programs I have > seen creat

<    1   2   3   4   5   6   7   8   9   >