View Single Post
  #3  
Old 03-09-2010, 03:05 PM
Kobaz
Hill Giant
 
Join Date: Nov 2008
Location: Gold Coast, Oz
Posts: 119
Default

Are you using the -s flag when you create the link?

Code:
ln -s TARGET LINK
will create a symlink, or soft link. The file TARGET need not exist, and will then create a "dangling symlink". Attempts to access LINK will fail until you actually create the file TARGET. In your case the file cleanipc will be created after you compile the software.

Play with the ln command in your /tmp directory. I recall that it took me a while to be comfortable with how it works when I first met UNIX. Also check out

Code:
ln --help
and

Code:
man ln
Reply With Quote