Hi Ken,

On Monday 18 June 2007 07:30, Kenneth Schneider wrote:
> On Mon, 2007-06-18 at 00:01 -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

ops     cp -a /home/* /home1
                     ^^^
One slash was missing and -a as suggested in another post. 

> >
> > >   umount /home
> > >   mv home1 home
> >
> >     mv /home1/* /home
>
> mv /home1 /home   is correct. This is the rename incarnation of mv.

It would be after: 
     rm -R /home 
with present /home it will make 
     /home/home1
This was tested as I didn't want to repeat a mistake. 
So I made another one :-D

...

-- 
Regards,
Rajko.
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to