Question 1: Which command is NOT usable to install debian packages?
 dselect
 dinst
 apt-get
 dpkg
Question 2: What information is provided by the jobs-command?
 A list of all running processes started by you including PIDs
 A list of all jobs started by any of your shells including JobIDs
 A list of all jobs started by the current shell including PIDs
 A list of all jobs started by the current shell or it one of its parent shells including JobIDs
 A list of all jobs started by the current shell including JobIDs
Question 3: Which of the following tools could be used to search a textfile for a particular searchstring without opening it with an interactive editor?
 vi
 sed
 ed
 find
 grep
Question 4: What set of files would be affected by the following wildcard? foo.*bar
 foobar foo.2bar foo.34bar
 foobar foo1bar foo2bar
 foo.1bar foo.2bar Foo.3.bar
 foo.bar foo.1bar foo.2bar
 foo.1bar foo.2bar foo.Fbar
Question 5: What command would you use to show all partitions on all harddrives?
 df
 fstab
 mtab
 fdisk -l
 du
Question 6: How could you check the integrity of a non mounted filesystem /dev/hdb7 even if it has a valid cleanflag?
 fschk -f /dev/hdb7
 hdcheck --force /dev/hdb7
 fsck /dev/hdb7
 chkdsk /dev/hdb7
 fsck -f /dev/hdb7
Question 7: The user foo has reported problems creating files in his home directory. He has got a user quota of 40 megabyte but a quick check of his directory shows only 20 megabyte in use. What may be the reason?
 He has hidden 60 megabytes inside a hush directory.
 The quota file is corrupt
 Quotas are counted in 512-blocks. So he has really only 20 megabyte quota
 He has too many symbolic links to big files
 He has probably many small files and his file limit is exceeded
Question 8: What would be the result of the following command? ln /bin /bin2
 A directory /bin2 would be created, which contains hardlinks to every file in /bin
 A hardlink /bin2 would be created, referencing the directory /bin
 A symbolic link /bin2 would be created, referencing the directory /bin
 A directory /bin2 would be created, which contains symbolic links to every file and subdirectory in /bin
 Nothing, but an error message
Question 9: What is a X-server
 any X11 application
 the program which administrates the graphical IO using the X11 protocol
 the program which manages the window borders/colors
 a computer which offers the ability to run X11-applications
 a computer which offers X11-applications
Question 10: What is the meaning of the SCSI-Address 1,5,0 ?
 The first device on the fifth bus with LUN 0
 The device with SCSI-ID 5 on the second SCSI-Bus, LUN 0
 This isn't a valid SCSI address
 A SCSI-1 device on Bus 0 with the SCSI ID 5
 The fifth device on the first SCSI-cable is deactivated
Question 11: Which file would you edit so that the displaymanager ist started automaticly at boottime?
 /etc/inittab
 /etc/X11/XF86Config
 /etc/X11/xdm/Xstartup
 /etc/X11/xdm/Xsession
 /etc/X11/xdm/xdm-config
Question 12: You want to run a x-application on the computer foo but it should display on the screen of computer bar. What parameter for the application is needed to realize this?
 -display bar
 -display:bar:0
 -display bar:0
 -display=bar:0
 --display=bar
Question 13: Which flag would you use with setserial to enable 115 KBit for a serial port?
 spd_hi
 spd_warp
 spd_vhi
 spd_shi
 spd_115
Question 14: Which of the following directories have to be placed on the root partition?
 /usr
 /lib
 /boot
 /sbin
 /dev
Question 15: When do you need to rerun the grub-install command?
 After every boot
 After installing a new kernel with a new name in /boot
 After overwriting the old kernel in /boot with a new one
 After every modification of the grub configuration file
 Only the first time after installing GRUB
Question 16: You want to compile and install a GNU software package, but you want to change the default installation target. Which file would you edit?
 .config
 configure
 Makefile
 config.h
 targets
Question 17: You have just installed the new program foobar manually. This program uses shared libraries, which are installed to /usr/local/foobar/lib. What is neccesary to do after the installation so that the libraries can be used?
 edit /etc/ld.so.conf to add the new library path and then run ld.so
 run ldconfig
 create symbolic links from every library in /usr/local/foobar/lib to /usr/lib
 restart your computer
 edit /etc/ld.so.conf to add the new library path and then run ldconfig
Question 18: You want to install the RPM package file foobar.rpm. This file is located in /home/bob. Which command would you use to install this file?
 rpm -i /home/bob/foobar.rpm
 install /home/bob/foobar.rpm
 rpminst /home/bob/foobar.rpm
 rpm -e /home/bob/foobar.rpm
 instrpm /home/bob/foobar.rpm
Question 19: You are the system administrator of a RedHat box. After checking your system, you found a file named foobar. What command would you use to get the information from which rpm packet this file was installed?
 rpm -qf foobar
 rpm -l foobar
 rpm -ql foobar
 rpm -f foobar
 rpm -qL foobar

End of questions