[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] Stupid CGI path question



> *******************
> [admin@tesla admin]$ su
> Password:
> [root@tesla admin]# ln -s /usr/local/bin/perl /usr/bin/perl
> ln: /usr/bin/perl: File exists
> [root@tesla admin]#
> ********************

typing...

$ man ln

...will tell you that the syntax is 'ln TARGET SOURCE'

so the command you need is

$ ln -s /usr/bin/perl /usr/local/bin/perl

--Stew