[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] "/" filesystem quota
- Subject: Re: [cobalt-users] "/" filesystem quota
- From: "Ben Liddicott" <ben.liddicott@xxxxxxxxxxxxxxxxxx>
- Date: Wed Nov 28 03:07:02 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
You have the arguments the wrong way around. It is as if you were making a copy:
ln -s existingfile newfile
I.e,.
# First move the directory
# /usr/local exists, /home/local will be new.
mv /usr/local /home/local
# Then make a link to it.
# Now /home/local exists, and /usr/local will be new.
ln -s /home/local /usr/local
If you are feeling cautious, specify ln -si
Cheers,
Ben Liddicott
----- Original Message -----
From: "Chris Fragogiannis" <franki@xxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Wednesday, November 28, 2001 9:27 AM
Subject: Re: [cobalt-users] "/" filesystem quota
> Could someone give us the exact command for creating these links? I don't want to take
> the risk of playing with that! Is this correct?
>
> # ln -s /usr/local /home/local
>
> for the directory /usr/local ?