Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle8 question for Linux gurus
On Thu, 7 Jan 1999 20:07:07 -0500, David Sisk <davesisk_at_ipass.net> wrote:
>
>ln -s /etc/rc.d/init.d/dbora /etc/rc2.d/S99dbora
>
>I get an error message that the destination doesn't exist.
Make this: ln -s /etc/rc.d/init.d/dbora /etc/rc.d/rc2.d/S99dbora
^^^^
When using a wildcard for "rc*" this will expand to "rc.d". Thus in fact you are giving the command `ls -la rc.d`, and you will get the _contents_ of directory "rc.d".
Try `ls -la /etc | grep rc`, and it will be more clear to you.
I hope this helps,
--
@..@ Marti Rijken <mrijken_at_natrix.demon.nl> (`--') at work: mrijken_at_prv.gelderland.nl ( }..{ ) URL: http://www.natrix.demon.nl/ Received on Thu Jan 07 1999 - 01:36:53 CST
![]() |
![]() |