Re: Adding more disk-space

2000-03-08 Thread Bob Hilliard
Viggo <[EMAIL PROTECTED]> writes: > Why does Linux only report 515 Mb, when the drive is supposedly 540 Mb? > (linux using 524/32/63, drive physically 1048/16/63) All hard drive manufacturers artificially and incorrectly define 1 Mb = 1,000,000 bytes 524*32*63*512 bytes/sector = 540,868

Re: Adding more disk-space

2000-03-08 Thread Mark Zimmerman
Here's how I do it (it's not the only way): mkdir newdir cd olddir find . -depth -print | cpio -pdmv newdir This should replicate the whole tree with permissions and symlinks intact. You have to do it as root, of course, to get ownweships to replicate. On Wed, Mar 08, 2000 at 06:19:24PM +0100, V