This command is used to create a new directory in Linux
What is mkdir
This will happen with the command foo 1> bar
What is standard output redirection to the file names bar
This command will set the owner of file.txt to dan and the group to staff
chown dan:staff file.txt
This is the default nice value when starting a program
What is 0
This is a family of open-source Unix-like operating systems that is one of the most used operating systems in the world
What is Linux
This command will show all background tasks running in the current shell
What is jobs
What is the standard output and the file bar
After creating a hard link called bar to the ordinary file foo, this will result when foo is deleted
foo would be removed but bar would remain
This will result from the command `nice -5 /usr/bin/prog`
What is nice -5 /usr/bin/prog
This command will safely power off a machine after warning all logged in users
What is shutdown?
This command will resume the last stopped job in the background
What is bg
This will send output from the program myapp to both standard output and the file file1.log?
What is myapp | tee file1.log
This setting would set the default permission to -rw-r-----
What is umask 027
This command causes the processes with PID 123 to end, but allows it to clean up first
What is kill -TERM
These are the basic components of a Linux machine
What is the Kernel, the shell, the GUI, and utilities
This command shows you what type a given file is
What is type
What is &>
This is the file attributes of a symbolic link with all permissions set for all users
What is lrwxrwxrwx
This is the maximum nice value that a regular user can assign a process
What is 19
This is virtual RAM used when the real RAM is used up
What is swap memory?
This command can be used to create a new blank file in Linux
What is touch
This will result in the output being added to the end of a file and not overwritten
What is append >>
This would set /bin/foo executable by everyone but writable only by its owner?
What is chmod u=rwx,go=rx /bin/foo
This is the signal that is send when ctrl + c is pressed in a terminal
What is SIGINT
This is the difference between the terminal, the shell, and the command line
What is the application used to run the shell, the application used to run commands, and the general type of application that uses commands?