Main Flashcards
(43 cards)
Where are bootloader files stored?
/boot
Where are configuration files stored?
/etc
Where are users files stored?
/home
What is root user home directory?
/root
Where are removable media stored?
/media
What is older place where removable media were stored?
/mnt
Where are 3rd party apps stored?
/opt
Where is variable data stored?
/var
Where are Linux user program binaries stored?
/usr/bin
Where are Linux admin program binaries stored?
/usr/sbin
Where is local installation program data stored?
/usr/local
How would you list only directory name?
ls -d
What is a distribution?
Linux kernel (as base) + utility software
What is a distribution?
Linux kernel (as base) + utility software
What is FHS
Filesystem Hierarchy Standard
How would you get the kernel information
uname -r
How would you get kernel compilation datetime?
uname -v
How would you print kernel name?
uname = uname -s
What type of commands we can distinguish?
Built-in and external
What program would you use to check whether a command is built-in or external?
type
What programs will help you find and understand usage of commands? (4)
help | info | man | apropos
If you print your command history. How would you execute n-th command?
!n
What is the difference between history LIST and .bash_history
History LIST ‘lives’ inside’ memory, not storage. LIST contains all commands associated with current’s user session.
In what section of man pages is command syntax described?
SYNOPSIS