What is the Unix systems characteristic called that refers to its modular design?
The Unix Philosophy
2
New cards
What is the set of simple tools provided by the Unix operating system?
coreutils or core utilities
3
New cards
What is the name of the GNU kernel?
GNU Hurd
4
New cards
Which shell is the POSIX shell synonymous with?
Bourne Shell
5
New cards
What is the default shell on GNU/Linux?
Bash/ Bourne again shell
6
New cards
True or False: The CLI, terminal, and shell are just different names for the same thing.
False
7
New cards
What is the root of the filesystem in Unix?
/ or a/
8
New cards
What is the name of the user that resides in kernel land?
root
9
New cards
What is the home directory of the root user?
/root
10
New cards
What is the administrator on a Linux system?
A user that is allowed to run commands as root, typically using the sudo command.
11
New cards
What is a device driver?
Device drivers let the OS know how to access and use information from that device, acting as a translator between device and application/OS.
12
New cards
What are the two types of device drivers?
Kernel-Mode Device Driver and User-Mode Device Driver
13
New cards
Where are log files kept in a Unix system?
/var/log
14
New cards
Where are system configuration files located in Unix?
/etc/
15
New cards
True or False: The /usr/bin directory contains required binaries.
False
16
New cards
What does the ~ symbol represent?
The home directory of the user.
17
New cards
What does a single dot (.) signify?
The current working directory.
18
New cards
Where does the absolute path for a file or directory start?
/
19
New cards
What is the fundamental interface between an application and the Linux kernel?
Syscalls
20
New cards
What is the command to list system calls by number on a Linux machine?
ausyscall –dump or ausyscall –dump | less
21
New cards
What is the name of the C library on GNU/Linux?
glibc
22
New cards
What is the file type for executable files in Unix/Linux?
elf
23
New cards
What does the mmap system call do?
Map files or devices into memory.
24
New cards
True or False: A reboot is required when one installs a Loadable Kernel Module (LKM)?
False
25
New cards
What command is used to list loaded kernel modules?
lsmod
26
New cards
What does the .ko file extension represent?
Kernel Object.
27
New cards
What are some common arguments used with the ps command?
UID - user ID, PID - process ID, PPID - parent process ID, C - CPU utilization percentage, TTY - terminal, TIME - elapsed CPU use time, CMD - command to start process.
28
New cards
What is a type of process that runs in the background without any human interaction?