Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Such as? | 14 comments | Create New Account
Click here to return to the 'Such as?' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Such as?
Authored by: robg on May 07, '02 11:44:33AM

What's the output when you try it?

-rob.



[ Reply to This | # ]
Such as?
Authored by: semiotek on May 07, '02 12:55:47PM

cp: /usr/local/share/man/man1/webalizer.1: No such file or directory



[ Reply to This | # ]
Such as?
Authored by: eo on May 07, '02 02:12:24PM

Take out the "local" to get /usr/share/man/man1/webalizer.1 and try it again.



[ Reply to This | # ]
missing target
Authored by: sjk on May 08, '02 03:10:33AM
Try this first:

sudo mkdir -p /usr/local/share/man/man1

... to create the destination directory since the error indicates it doesn't exist. The -p flag causes other directories leading up to the final destination to be created if they don't exist.


[ Reply to This | # ]