Terminal question

nasman

Registered
I'm a Mac newb.
When I'm logged in as my user, I can go into Finder and see everything under "Macintosh-HD" and my user area. When I open a terminal, I'm in my user's area and I can't get to directories/files which are under "Macintosh-HD". I need to be able to get to some files under "Macintosh-HD" from within the terminal but I can't figure out how to do this.
My user has Admin privs and I figured there should be a way to get to these directories/files from within the terminal.
Thanks for any help
 
The disk images you see on the desktop are under directory /Volumes, so type

Code:
 cd /Volumes

if you like to see the disks. But, since most files are from the Macintosh-HD,

Code:
 cd /

is more likely what you are after.
 
Back
Top