"C.L. Daugaard" <[EMAIL PROTECTED]> writes:
> I've seen (and kept) posts on how to transfer a system to a new HD.
> what I'm stumped on is how this is done when /, /usr, and /home are on
> *separate partitions* and I want to keep it that way. Can anyone tell
> me how this is done? At this state
Rob Browning <[EMAIL PROTECTED]> writes:
> cp -a `ls | grep -v proc` dummy
Oops, this needs to be
cp -a `ls | fgrep -v proc | fgrep -v 'lost+found'` dummy
or something similar.
--
Rob
--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble?
Try cp -ax /source /destination
The a option copies symbolic links as links, preserves permissions, and
copies directories recursively.
The x option tells cp to not copy anything on a different file system.
I have always used this method and the only thing I have to do is
create the directories
Try booting off a floppy, mounting the two drives/partions as
/mnt/target and /mnt/source
Then use the command
(cd /mnt/source && tar c .)|(cd /mnt/target && tar xvp)
That's how I recently moved my home directories to a bigger disk.
The p on the second tar statement is important because it preserv
"C.L. Daugaard" <[EMAIL PROTECTED]> writes:
[snip]
> VFS: Cannot open root device 00:00
> Kernel panic: VFS: Unable to mount root fs on 00:00
>
> I ran rdev on the kernel for the new root device and updated and
> double-checked the info in the fstab and mtab files and the loadlin boo
On Fri, 12 Sep 1997, C.L. Daugaard wrote:
>
> I've seen (and kept) posts on how to transfer a system to a new HD.
> what I'm stumped on is how this is done when /, /usr, and /home are on
> *separate partitions* and I want to keep it that way. Can anyone tell
> me how this is done? At this state
6 matches
Mail list logo