Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

new mac mini with snow leopard.

entering the following into the terminal: cd /usr/local

get the following message: -bash: cd: /usr/local: No such file or directory

not sure why?

share|improve this question
The directory does not exist. Why don't you believe the error message? If you need it, create it. sudo mkdir /usr/local – EmmEff Dec 17 '09 at 18:03
Why do you expect it to exist? – ā„¯aphink Dec 17 '09 at 20:00

2 Answers

You're getting this error because the directory /usr/local does not exist. I don't have a Snow Leopard install in front of me right now, but it's entirely possible that this directory doesn't exist by default -- nothing would be installed there in a stock install.

share|improve this answer
2  
/usr/local doesn't exist by default on OS X. – mipadi Dec 17 '09 at 20:28

Try this command in the terminal instead: ls /usr

This lists the contents of the /usr directory.

Do you see "local" is in the list of directories in /usr? If not, it doesn't exist and that's why you can't cd to /usr/local.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.