Linux/Unix Operating Systems Fundamentals
A comprehensive quiz covering Linux and Unix operating system concepts including commands, file systems, kernel configuration, system administration tools, and boot processes.
Questions
To start 'Find Files or Folders' what is the key combination ?
- Winkey + E
- Winkey + F
- Winkey + M
- Winkey + D
What will be happen if you press 'Winkey + M' ?
- Minimises all windows and dialogs
- Minimises only dialogs
- Minimises all windows and leaves dialogs up
- None of the Above
What file represents the linux kernel?
- /linux
- /vmlinuz
- /boot/kernel
- /boot/linux
What command is used to determine a file's type or contents?
- file
- type
- which
- grep
You can set cron to run once every second
- True
- False
What is the configuration file for the init program?
- /etc/init.conf
- /etc/default/inittab
- /etc/inittab
- /etc/init.d
All commands require arguments or options.
- True
- False
Lilo can boot operating systems on different drives as well as different partitions.
- True
- False
What information does the major number tell you?
- device type
- kernel version
- filesystem type
- filesystem mount point
Which program represents the SAMBA server?
- sambad
- nfsd
- smbd
- nmbd
Because Linux and Windows have a different understanding of security, you have to be careful when you share filesystems.
- True
- False
Kernels with an odd numbered minor_release are considered "development" releases
- True
- False
What character pair would you use to ensure the shell knows how to interpret a variable correctly?
- [ ]
- $$
- {}
- ##
Printer configuration information is stored in which directory?
- /etc/lpd.conf
- /etc/default/printers
- /var/conf/lpd
- /usr/spool/lpd
Pipes take up physical space on the hard disk.
- True
- False
what is the function of tee command in Unix?
- “tee” command is used to direct the output to print as well as directs it to a file.
- “tee” command is used to direct the output to a file.
- “tee” command is used to direct the output to print
- “tee” command is used to direct output of a command as an input for another command.
- All of the above
You attempt to remove a directory, but Linux won't allow you, what is the most likely problem?
- The directory name contains illegal characters
- You are not logged in as root
- The hard disk is full
- The directory is not empty
- None are likely problems
Which command creates a file system?
- fdisk
- crfs
- mkfs
- fs
- None of the above
To logout from your terminal you
- Press Ctrl-Alt -Del
- switch off the terminal
- type exit
- Press Ctrl-u or type logout
- None of the above
The command ls -l >> f1 would overwrite the contents of f1 with the output of the command ls -l .
- True
- False