1

I just installed ubuntu 14.04 LTS Surprised to know that it does not have usr directory when i type the following command in terminal "cd usr" error - no such file or directory

any help would be appreciated

Harvey
  • 11
  • 1
  • 2

1 Answers1

0

Try cd /usr.

The directory is off the root, and without the forward slash, you are changing directories to one below your current directory.

Paul
  • 60,031
  • 19
  • 150
  • 170
  • tried that to, but nothing works i am not even able to find it in GUI – Harvey Aug 17 '14 at 14:17
  • What is the output of cd / && ls -l | grep usr in the terminal? du -sh /usr/ says 5,1G /usr/ for me. – Hannu Aug 17 '14 at 14:37
  • cd / && ls -l | grep usr gives drwxr-xr-x 10 root root 4096 Apr 17 06:51 usr and du -sh /usr/ shows 3.1G /usr/ – Harvey Aug 17 '14 at 17:16
  • You have just shown the results of two commands that have found /usr. In what way do you mean that you can't see it? – Paul Aug 17 '14 at 21:57