Operating System - HP-UX
1751894 Members
4825 Online
108783 Solutions
New Discussion юеВ

Re: How do i make a link ?

 
SOLVED
Go to solution
Chapaya
Frequent Advisor

How do i make a link ?

Hello ,

I have 2 VG's and i removed one vg .
The old vg was mounted on /app2 ,the other was mounted on /app4 .
i want to make a link from /app2 to /app4 .

Bye ,
Eran
7 REPLIES 7
Hai Nguyen_1
Honored Contributor

Re: How do i make a link ?


Eran,

Do this:

# cd /
# rmdir /app2
# ln -s app4 app2


Hai
PIYUSH D. PATEL
Honored Contributor

Re: How do i make a link ?

Hi,

cd /
#ln -s app4 app2

HTH,
Piyush

John Meissner
Esteemed Contributor
Solution

Re: How do i make a link ?

ln -s

ln -s /app2 /app4

That should do it.
All paths lead to destiny
Chapaya
Frequent Advisor

Re: How do i make a link ?

i dont see the link with ll .
Hai Nguyen_1
Honored Contributor

Re: How do i make a link ?

Can you post the output?

Hai
PIYUSH D. PATEL
Honored Contributor

Re: How do i make a link ?

what is the output of ls -l /app2 ?
Caesar_3
Esteemed Contributor

Re: How do i make a link ?

Hello!

Did you remove the old directory (app2)?
What you see with ls -la /app2 ?

ln -s /app4 /app2

Caesar