Chapter 1 - Getting Start w The Basics Flashcards
/root
The home directory of the root user
/etc
Contains the Linux config files - files that control when and how programs start up
/home
The user’s home directory
/mnt
Where other filesystems are attached or mounted to the filesystem
/media
Where CDs and USB devices are usually attached or mounted to the filesystem
/bin
Where application binaries (the equivalent of executables in Microsoft Windows or applications in macOS) reside
/lib
Where you’ll find libraries (shared programs that are similar to Windows DLLs)
Command
Returns your location within the directory structure.
pwd
Command
To move up one level in the file structure (towards the root)
cd ..
Command
To move up two levels in the file structure (towards the root)
cd ../..
Command
To move up three levels in the file structure (towards the root)
cd ../../..
Command
Move up to the root level in the file structure
cd /
Command
To get more information about the files and directories, such as their permissions, owner, size, and when they were last modified
ls -l
Show hidden files
ls -a
Three options for help?
-h
–help
-?
Command for manual pages
man [command]