File System Navigation Flashcards
The Linux filesystem is an “_____ ______” of directories and files, with a root directory called “/”
Inverted Tree
Every process has a….?
Current working directory, often called its “cwd”.
The pwd command ______ the bash shell’s cwd.
Reports
The cd command ______ the bash shell’s cwd
Changes.
Files can be referenced through either absoulte or…?
relative references.
Red Hat Enterprise Linux X graphical enviroment uses what to navigate file systems…?
Nautilus
Nautilus can be found by…?
- Double clicking the home icon found in the upper left-hand corner of the desktop.
- by selecitng the Applications: Systems tools: File browser menu item. (If you prefer this view of Nautilus you can change the settings found under the edit menu, and click behaviour and then always open in browser windows.)
By default, Nautilus browser sidepane includes….?
a “hotlist” of commonly used directories.
Typing _____ converts the location buttons to text entry.
CTRL+L
Each Linux process (i.e. , program, command) is assigned a ______ ____when it runs.
Default directory. (This is used to complete the FQN for any file whose name is not specified as an FQN to start with. This has two effects, first, it allows the process to refer to files more simply, without using tiresome long names, Second it allows the process to operate more flexibly since its actions depend in part on the default directory. Change the default directory, and the action of the process is changed)
The default directory is referred to as the….?
Current working directory, or cwd, for the process.
A process is first assigned a cwd by…?
the parent process which starts it. (however, a process is not locked into a particular cwd the whole time it runs.)
When needed, a process can ______ its cwd to another directory before continuing its work.
change.
One of the processes found running on a Linux system is…?
the command shell.
Command prompts are produced by the…?
command shell, the process which is responsible for reading and interpreting your commands.