Re: best way to migrate to a new disk

2001-07-10 Thread Christoph Sold
Steven Ames schrieb: Don't use tar. It loses devices, can't handle holey files well and a number of other minor clitches. Use dump instead. Hrm... what about 'rsync'? Does it suffer from the same problems as 'tar'? I use rsync a lot because its incremental. This is off topic from

Re: best way to migrate to a new disk

2001-07-09 Thread David O'Brien
On Sun, Jul 08, 2001 at 12:42:58AM -0700, Matthew Jacob wrote: I mean, Warner- you're right, but, well, I've been using tar to copy systems for the last 5 years for *BSD, and, well, it really works best for me. But you're replying to a call for advice -- you did not prefix your advice that it

Re: best way to migrate to a new disk

2001-07-09 Thread Steven Ames
Don't use tar. It loses devices, can't handle holey files well and a number of other minor clitches. Use dump instead. Hrm... what about 'rsync'? Does it suffer from the same problems as 'tar'? I use rsync a lot because its incremental. This is off topic from migrating to a new disk, but I

Re: best way to migrate to a new disk

2001-07-08 Thread Warner Losh
In message [EMAIL PROTECTED] Jeff Mohler writes: : I need to upgrade to a new HD now that the current one : has shows some reliability issues..and Im polling for : what is the best method to do so. buy new disk. install disk disklabel da1 newfs filesystems. mount fs under /da1 for each partion

Re: best way to migrate to a new disk

2001-07-08 Thread Warner Losh
In message Pine.BSF.4.21.0107071842230.58871-10@beppo Matthew Jacob writes: : tar cfl - . | (cd /altroot/local_fs tar xpf -) Don't use tar. It loses devices, can't handle holey files well and a number of other minor clitches. Use dump instead. Warner To Unsubscribe: send mail to [EMAIL

Re: best way to migrate to a new disk

2001-07-08 Thread Matthew Jacob
Only if you want to be here until next tuesday. Solaris ufsdump runs 8 times as fast. You're right - tar doesn't handle files with holes. Not too many of those around. /dev you can and should always remake. Typically it's only sa0 out of the generic set that tar skips. On Sun, 8 Jul 2001,

Re: best way to migrate to a new disk

2001-07-08 Thread Matthew Jacob
I mean, Warner- you're right, but, well, I've been using tar to copy systems for the last 5 years for *BSD, and, well, it really works best for me. On Sun, 8 Jul 2001, Matthew Jacob wrote: Only if you want to be here until next tuesday. Solaris ufsdump runs 8 times as fast. You're

Re: best way to migrate to a new disk

2001-07-08 Thread Warner Losh
In message Pine.BSF.4.21.0107080040010.61247-10@beppo Matthew Jacob writes: : Only if you want to be here until next tuesday. Solaris ufsdump runs 8 times : as fast. Yes. Mostly because it uses async io and a couple other tricks (Dworkin Muller did a lot of work on ufsdump on solaris to

Re: best way to migrate to a new disk

2001-07-08 Thread Ronald G Minnich
On Sun, 8 Jul 2001, Warner Losh wrote: In message Pine.BSF.4.21.0107071842230.58871-10@beppo Matthew Jacob writes: : tar cfl - . | (cd /altroot/local_fs tar xpf -) Don't use tar. It loses devices, can't handle holey files well and a number of other minor clitches. Use dump instead.

best way to migrate to a new disk

2001-07-07 Thread Jeff Mohler
I need to upgrade to a new HD now that the current one has shows some reliability issues..and Im polling for what is the best method to do so. Do not have a tape drive..but if thats the only solution..one could be gained, but Im sure there might be an easier way. Comments?

Re: best way to migrate to a new disk

2001-07-07 Thread Matthew Jacob
I always newfs a new disk, mount it async on /altroot, and use cd /local_fs mkdir -p /altroot/local_fs tar cfl - . | (cd /altroot/local_fs tar xpf -) I make sure I do a MAKDEV all in /altroot/dev and I make sure I do a disklabel -B on the new disk. It's pretty simple. On Sat, 7 Jul 2001,