Linux Bible Flashcards
Review the content of book Linux Bible from Cristopher Negus (135 cards)
What is Linux based on
UNIX, a proprietary OS by AT&T.
How can a user direct the output of a command to a file in UNIX
By using >.
What symbol is used in UNIX to use the output of one command as the input for another
|
Which license falls under the open-source initiative umbrella and is the most prominent for Linux software products
GNU public license.
What is a Linux distribution
The union of the Linux kernel and the basic components needed for a functioning Linux system.
What was the graphical interface of Linux initially based on
X, a Window System.
What does GNOME shell extension allow users to do
Implement additional features not default for GNOME.
How can you lock the screen in GNOME
Win + Alt + L.
What is AIGLX
A GUI for a few Linux distros that implemented 3D effects.
What is the Linux shell called
Bash shell (bourne again shell).
What does the PATH variable in the shell contain
All paths where the shell looks for executed commands.
How can you view the history of commands executed in the shell
By using the command history.
What does Ctrl + C do in line editing
Cancels the line.
What does the metacharacter | do
Redirects the output of one command into another.
What directory contains Linux commands
bin directory.
What is umask used for
To set default permissions for file creation.
How do you exit vi and save changes
ZZ or :wq.
What command is used to search for files based on name, permissions, date, etc.
find.
How do you search for a word within a file using grep
grep <word> <file_name></file_name></word>
What parameter of grep is used for a case-insensitive search
-i.
What parameter of grep is used for a reverse search
-v.
What parameter of grep is used for a recursive search
-r.
What does the metacharacter * represent in the filesystem
Any number of characters.
What does the metacharacter ? represent in the filesystem
Any single character.