Re: Help transfering data....

1997-07-15 Thread Frank Barknecht
Frank Barknecht hat gesagt: // Frank Barknecht wrote: ([EMAIL PROTECTED]): > > A simple solution is the "-x"-switch to cp (Try "man cp"). > "copy -ax" copies everything only out of the one filesystem where you started. well, it's "cp -ax" of course... --

Re: Help transfering data....

1997-07-14 Thread Frank Barknecht
Kevin J Poorman hat gesagt: // Kevin J Poorman wrote: ([EMAIL PROTECTED]): > Hi. > > I just got a new hard drive and wish to transfer my root fs to this new > drive as it is larger > > now to the hard part ... > > I Tryed to do a cp -a * /mnt (where the new hd was mounted) > > but it sat t

Re: Help transfering data....

1997-07-12 Thread Peter S Galbraith
Kevin J Poorman wrote: > I just got a new hard drive and wish to transfer my root fs to this new > drive as it is larger Assuming root (/) is a single partition, and /mnt another, you can do: tar clf - / | ( cd /mnt ; tar xpvf - ) Explanation: c : create tar file l: d

Re: Help transfering data (Correction)....

1997-07-11 Thread Nathan E Norman
Hmm, seems I too replied too fast :) No worries :) -- Nathan Norman:Hostmaster CFNI:[EMAIL PROTECTED] finger [EMAIL PROTECTED] for PGP public key and other stuff Key fingerprint = CE 03 10 AF 32 81 18 58 9D 32 C2 AB 93 6D C4 72 -- On Fri, 11 Jul 1997, Dr. Andreas Wehler wr

Re: Help transfering data....

1997-07-11 Thread Nathan E Norman
No kidding. He doesn't want to copy the files in the proc directory, but he has to copy the prov directory itself ... it's a mount point, no? I believe the original request was to copy the root fs only. This command does that. -- Nathan Norman:Hostmaster CFNI:[EMAIL PROTECTED]

Re: Help transfering data (Correction)....

1997-07-11 Thread Dr. Andreas Wehler
Sorry, please forget my too fast launched reply about find still finding proc. : : find / -xdev -print | cpio -padm /mnt : : Oh, that's not the help. : : : find / -xdev | grep proc : : gives you: : : ... : /var/lib/dpkg/info/procmeter.postinst : /var/lib/dpkg/info/procmeter.list : /var/li

Re: Help transfering data....

1997-07-11 Thread Dr. Andreas Wehler
: find / -xdev -print | cpio -padm /mnt Oh, that's not the help. find / -xdev | grep proc gives you: ... /var/lib/dpkg/info/procmeter.postinst /var/lib/dpkg/info/procmeter.list /var/lib/dpkg/info/procmeter.postrm /var/lib/dpkg/info/xproc.list /proc Andreas. -- Uni Wuppertal, FB Elektro

Re: Help transfering data....

1997-07-11 Thread Nathan E Norman
find / -xdev -print | cpio -padm /mnt -- Nathan Norman:Hostmaster CFNI:[EMAIL PROTECTED] finger [EMAIL PROTECTED] for PGP public key and other stuff Key fingerprint = CE 03 10 AF 32 81 18 58 9D 32 C2 AB 93 6D C4 72 -- On Thu, 10 Jul 1997, Kevin J Poorman wrote: :Hi. : :I j

Re: Help transfering data....

1997-07-10 Thread Jesse Goldman
Hi, /proc (and things like /dev/audio and /dev/hda1) aren't regular files and so can't be copied using "cp". To copy things like this successfully, you could use tar. Here's an example: Suppose you want to copy your / directory from one disk to another. I'm assuming the new disk is empty but has a

Help transfering data....

1997-07-10 Thread Kevin J Poorman
Hi. I just got a new hard drive and wish to transfer my root fs to this new drive as it is larger now to the hard part ... I Tryed to do a cp -a * /mnt (where the new hd was mounted) but it sat there cp'ing files for an hour and never got past the proc directory did I do something wron