LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   looking up my root directory (https://www.linuxquestions.org/questions/linux-newbie-8/looking-up-my-root-directory-38788/)

isaacais 12-18-2002 01:16 PM

looking up my root directory
 
How can I lookup the directory structure on my account?

:confused:

acid_kewpie 12-18-2002 01:22 PM

well what are you trying to achieve? just see what directories exit in /home/user?

find /home/user -type d

is one of many many ways to achieve it.

cipher_arg 12-18-2002 01:37 PM

if you feel lost on command line, you can run mc (midgniht commander)
is a nice application with suport for ftp links, managing authorizations etc...
you type "mc" from command line and you ll have a relativly similar windoz explorer :D

Ciccio 12-19-2002 06:35 AM

use ls with switches: -a (show all, includin . files) -l (show description of file) -R (lists directories and files recursively) rrun something like this:
ls -R /home/<user>
this should list all the directories and subdirectories as well as ALL th files under /home/<use> were <user> is your username.


All times are GMT -5. The time now is 09:37 AM.