On Mon, 18 Jun, 2007 at 00:01:17 -0500, Rajko M. wrote:
> On Sunday 17 June 2007 23:01, Rajko M. wrote:
> 
> 
> >   init 3
> >   mkdir home1
> >   cp home home1
>     cp -R /home/* home1
> >   umount /home
> >   mv home1 home
>     mv /home1/* /home
> 
> It is too late to make no mistakes :-(

I'd do it the 'other' way 'round;

init 3
umount /home
mount /dev/hda7 /mnt
cp -a /mnt/* /home/
umount /mnt
init 5

less steps, and avoids confusion about which directory contains what, at any
step in the process.

Obviously /dev/hda7 in the above should be substituted with actual
partition.

/Jon
-- 
YMMV
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to