You are on page 1of 31

1.Quels types de disque durs doivent tre utilis en LBA-mode? Choose the best answer.

O O O O O Harddisks with more than 1024 cylinders Harddisks with more than 1.2 GByte Harddisks capable of UDMA66 IDE-harddisks which are used as master IDE-harddisks which are used as slave

2.How can you detect, which PCI devices are connected to your computer? Choose every correct answer. O O O O O Using the readpci command Using the lspci command Using the getpci command Using the pci_info command Using the file /proc/pci

3.Which command would you use to set the speed of a serial interface? Choose the best answer. O O O O O setbaud setspeed setserial setcom set_comport

4.Why is it usefull to have a separate partition for the /boot Directory? Choose the best answer. O Every computer on the net could use the same booting information

O The /boot directory should be backuped daily O A separate boot partition can be placed below the 1024st cylinder O If the /boot directory would be placed in the root partition, it's content could be destroyed during the recovery process O It is not possible to have a separate boot partition

5.When do you need to run the lilo command? Choose every correct answer. O O O O O After every boot After every modification of the lilo configuration file After installing a new kernel with a new name in /boot After overwriting the old kernel in /boot with a new one Only the first time after installing LILO

6.Which statements concerning the program gunzip are true? Choose every correct answer. O O O O O After decompressing a file with gunzip, the compressed file is removed gunzip is a replacement for tar gunzip is a replacement for cpio gunzip is just a link to gzip gunzip is used to extract files from a zip archive

7.Whichprogramm is used to maintain the file /etc/ld.so.cache? Choose the best answer. O O O O ld.so ldcache ldd ldconfig

libconf

8.You want to deinstall a rpm packet foobar from your system. What would be a proper command? Choose the best answer. O O O O O removefoobar removefoobar.rpm rpm remove foobar rpm -e foobar deinstallfoobar

9.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? Choose the best answer. O O O O O rpm -qffoobar rpm -f foobar rpm -l foobar rpm -qlfoobar rpm -qLfoobar

10.What set of scripts is included in a debian packet? Choose the best answer. O O O O install,configure,deinstall,deconfigure preinst,postinst,prerm,postrm install,configure,libinst,libconf checklib,checkdep,checkfree,checkspace

11.Which of the following commands results in mailing the content of the

current directory to Bob? Choose the best answer. O O O O O mail Bob <ls ls> mail Bob ls || mail Bob ls | mail Bob mail Bob ls

12.How could you describe the following commandline? foo || bar Choose the best answer. O O O O O The command foo redirect its output to the command bar. The command foo writes its output into the file bar. The command bar is only processed if the command foo leaves without error. The command bar is only processed if the command foo leaves with an error. This isn't a valid commandline

13.What would the following command result in? cp `find . -size -12k` /tmp Choose the best answer. O O O The file with the name "find . -size -12k" will be copied to /tmp All files in the current directory which are smaller than 12 KByte will be copied to /tmp All files in the current directory and in all included subdirectories which are smaller than 12 KByte will be copied to /tmp. All files in the current directory and in all included subdirectories which are smaller than 12 KByte will be copied to /tmp. The directory structure will be copied, too. This isn't a valid command

14.Which of the following commands could be used to search for a particular term inside a textfile without opening the file? Choose every correct answer. O O O O O grep vi ex less sed

15.How could you remove a not empty directory /foo? Choose the best answer. O O O O O rmdir /foo rmdir -rf /foo rm -f /foo rm -r /foo deltree /foo

16.What is the effect of the following command? foo& Choose the best answer. O O O O O The command foo is started in the foreground The command foo is started in the background The command foo connects its STDOUT and STDERR The command foo writes its errorcode into the variable ERR The command foo will be started again and again, until it returns a value of 0

17.What statement describes the following command? kill -9 1234 Choose the best answer.

O O O O O

The KILL signal is sent to the process with PID 1234 The process with the PID 1234 receives the TERM-signal nine times All processes of the user with the UID 1234 are killed The TERM signal is sent to the processes with the PID 9 and 1234 The processes with the PID 9 and 1234 are killed

What tool could you use to change the nice value of a running process? Choose every correct answer. O O O O O ps top nice renice setpriority

20.How could you display all lines of text from the file foo which are not empty? Choose the best answer. O O O O O grep ".*" foo grep -v ^$ foo grep -v ^\r\n foo grep -v \r\n foo grep -v "[]" foo

21. What set of files would be affected by the following wildcard? foo.*bar Choose every correct answer. O O O O foo.bar foo.1bar foo.2bar foobar foo.2bar foo.34bar foo.1bar foo.2bar foo.Fbar foo.1bar foo.2bar Foo.3.bar

foobar foo1bar foo2bar

22.What device is described by the following special file? /dev/hdb2 Choose the best answer.

O O O O O

The slave on the second IDE-channel The second logical partition of the master on the first IDE-channel The second primary partition of the slave on the first IDE-channel The second bootsector of the master on the first IDE-channel The second primary partition of the master on the second IDE-channel

23.Which command shows you, how much space is available on all mounted partitions? Choose the best answer. O O O O O df df --free_space du free fdisk

24.In what file do you configure which partitions should be mounted on bootup? (give the whole path and filename) Type the answer.

25.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? Choose the best answer. O He has hidden 60 megabytes inside a hush directory.

O O O O

The quota file is corrupt Quotas are counted in 512-blocks. So he has really only 20 megabyte quota He has probably many small files and his file limit is exceeded He has too many symbolic links to big files

26.What command is used to change the permission mode of a file? (Just the command - no options) Type the answer.

27. How could you help users to create files with serious file permissions? Choose the best answer. O O O O O Teach users how to use chmod Use a serious umask setting in the user's profile Change the user's directory permissions Use cron to change the file permissions of the users files once a day Use replacements for the standard unix tools which create secure files

28.How could you change the group membership of the file foobar to group foo? Choose the best answer. O O O O chown foo foobar chgrp foo foobar chgroup foo foobar chgrpfoobar foo

chperm --group foo --file foobar

29. You create a hard link bar which points to the file foo. If you remove the file foo, what happens?

Choose the best answer. O O O O O The link is automaticly removed, too The link exists but any access would lead to an error The link exists and it is possible to have access to it's content The link is automaticly changed into a regular file with the content of foo. The link but not the file was removed.

30. You have two program files named foo. One of them is located in /usr/local/bin and the other in /usr/X11R6/bin. How can you find out, which of the both commands would be used, when you just type the command foo? Choose the best answer. O O O O O find / -exec foo find / -name foo find /usr -exec foo locate foo which foo

31. You want to configure an X11 server. For that purpose you have to entervarious information about your hardware. Whichinformations are necessary to configure the server? Choose every correct answer. O O O O O mouse keyboard network adapter monitor printer

32.Which file would you edit so that the displaymanagerist started automaticlyat boottime? Choose the best answer. O /etc/inittab

O O O O

/etc/X11/XF86Config /etc/X11/xdm/xdm-config /etc/X11/xdm/Xsession /etc/X11/xdm/Xstartup

33.You started an X-application with the parameter -display foo:0 but you get the message "Can't open display". What is the reason? Choose the best answer. O O O O O foo is not known, try it with it's IP-address you have to use foo:1 instead of foo:0 you must run the command "xhost foo" before the above command you must run "xhostyourcomputer" on foo before the above command you must be root to display something on other computer's screen

34. You are working with vi, writing a textfile. Being in command mode, you want to move the cursor 7 characters left. What command could you use? Choose the best answer. O O O O O 7l 7L l7 7h 7[212

35.You want to install a Linux-Server without keyboard. What of the following is necessary to avoid error messages during startup? Choose the best answer. O O O O Create an empty file /etc/nokeyb Load the module nokeyb.o Configure the CMos-Setup "Halt on" to "All but keyboard" Enter an entry "alias keyboard off" in /etc/modules.conf

Nothing

36.You create a isapnp.conf file using the pnpdump command. When do you have to call isapnp to read this file? Choose the best answer. O O O O O The first time after you have installed the new card Every time you want to access the card Once a day, using cron Every time you start the computer Never

37.You detect a Compaq USB controler in your computer. Which USB module would you load to use thiscontroler? Choose the best answer. O O O O O usb-via usb-ohci usb-uhci usb-intel usb-compaq

38.When do you need to run the lilo command? Choose every correct answer. O O O O O After every boot After every modification of the lilo configuration file After installing a new kernel with a new name in /boot After overwriting the old kernel in /boot with a new one Only the first time after installing LILO

39.Which statements concerning the program gzip are true? Choose every correct answer. O O O O O After compressing a file with gzip, the uncompressed file is removed gzip is used to compress many files into an archive gzip is used to compress files and directories into an archive gzip is used to compress just a single file gzip changes its behaviour when it is renamed to gunzip

40. You want to deinstall a deb packet foobar from your system. What would be a proper command? Choose every correct answer. O O O O O removefoobar removefoobar.deb dpkg -r foobar dselectfoobar apt-get removefoobar

41. You want to deinstall the packet foobar from your RedHat box. But you are not sure, if some other packets depend on this packet. What command would you use to get this information? Choose the best answer. O O O O O rpm --depfoobar rpm -q --whatrequiresfoobar rpm -q --list-depsfoobar rpm -d foobar grepfoobar /var/rpm/deps

42.What command would you use to get a list of all installed debian packages on your system? Choose the best answer. O dpkg -l

O O O

dpkg -L dpkg --all cat /var/lib/dpkg/available

43.How can you describe the function of the following commands? foo | bar >foobar Choose every correct answer. O O O O O The command foobar gets its input from the command bar The command bar writes its output to the file foobar The command foo writes its output to the file bar The command foo redirects its output to the command bar STDIN of foo is connected to STDOUT of bar

45.How could you describe the following commandline? foo> bar 2>&1 Choose the best answer. O The command foo redirects its output to the command bar and bar redirects its input back to foo. O O O O The command bar is only processed if the command foo returns a status of 1 or 2. The command foo writes its STDOUT and STDERR into the file bar. The command foo writes its output into the file bar and into the file 2. This isn't a valid commandline.

46.What would the following command result in? echo `date +%H:%M` > file Choose the best answer. O O O The string "date +%H:%M" will be written into the file The string "`date +%H:%M`" will be written into the file The current time (Hours:Minutes) will be written into the file

O O

The current time (Hours:Minutes) will be written into the variable named file. This isn't a valid command

47.How could you get the number of all accounts on your system, including administrative and system accounts? Choose the best answer. O O O O O numusers -r wc -l /etc/passwd count --lines /etc/passwd userinfo -n userinfo --get_num

48.Which of the following commands could you use to copy all regular files in the current directory to /tmp? Choose the best answer. O O O O O copy *.* /tmp copy * /tmp cp *.* /tmp cp * /tmp cp --all /tmp

50.You've started three jobs in the background. Now you would like to bring one particular of them into the foreground again. How could you do it? Choose the best answer. O O O O Get the list of jobs using the jobs-command and then use fgjobID Switch through all background-jobs using the Ctrl-Tab key Get the list of jobs using the jobs-command and then use kill -STFG PID Use the command fgjobname

Get the list of jobs using the jobs-command and then use jobname |

51.Many server-processes allow the root-user to force them to read their configfiles while running.How is this done? Choose the best answer. O O O O O Use the reconf command Send them the SIGPIPE signal Send them the SIGCONF signal Send them the SIGHUP signal Use the ps command

52.How could you display any line of text from the file foo which starts with an uppercase letter? Choose the best answer. O O O O O grep [A-Z] foo grep "[A-Z]" foo grep "$[A-Z]" foo grep "^[A-Z]" foo grep "+[A-Z]" foo

53.What statement concerning the following wildcard is correct? [A-Z]* Choose the best answer. O O O O O All files beginning with an uppercase letter followed by one letter All files beginning with an non numeric letter All files beginning with an uppercase non numeric letter All files without numbers in their names All files beginning with one of the letters A, Z or -

54. While monitoring the integrity of the filesystems, you detect, that there

are no more free inodes left on the /home partition although there are many megabytes free space. What could be the reason? Choose the best answer. O O O O This is a typical filesystem error on ext2 partitions. A user has created lots of very small files. The inode table is corrupted. There are lots of cross-linked files.

O The report of many megabytes free space is wrong due to an overflow of the 32 Bit Free-Space-Variable.

55.Consider a unmounted partition /dev/hdc7 should be mounted on /usr/local. The following entry in /etc/fstab exists: /dev/hdc7 /usr/local ext2 defaults 1 2

Which command could you use to mount the filesystem? O O O O O mount -l /dev/hdc7 mount /dev/hdc7 mount /dev/hdc7 /usr/local mount /usr/local mount -V /usr/local

56.What ist the numeric value of the permission mode drwxr-xr-T Type answer. 57.How could you get the information about the group membership of user foo? Choose the best answer. O O O O O getusergrp foo group foo groups foo which groups foo cat /etc/passwd | grep foo

58. Which toplevel directory contains the spool and log directories? Enter the whole path Type the answer.

59.You want your X-server to use an existing fontserver foobar.mydomain.com. What file would youedit to get this done? Choose the best answer. O O O O O /etc/X11/fs.conf /etc/X11/xfs.conf /etc/X11/fs/xfs.options /etc/X11/fontserver /etc/X11/Xf86Config

60.You want to connect a X11-Terminal to your Server. But everytime you try to connect, your terminal screen keeps black. What files on the server would you edit to solve the problem? Choose every correct answer. O O O O O /etc/X11/XF86Config /etc/X11/xdm/x-terminals /etc/X11/xdm/xdm-config /etc/X11/xdm/Xwilling /etc/X11/xdm/Xaccess

61.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? Choose the best answer. O O O --display=bar -display:bar:0 -display bar

O O

-display bar:0 -display=bar:0

62. You are working with vi, writing a textfile. Being in command mode, you want to move the cursor 7 characters left. Enter the necessary command Type the answer.

63. You want to install a ISA-Plug and Play Card into your computer. Which step is necessary to use this card with Linux? Choose the best answer. O O O O O Nothing, Linux is able to use such cards without any configuration Enter the hardware parameters in /etc/pnp Use isapnp and pnpdump Enter the correct settings in /etc/pnp.conf Linux is not able to use Plug and Play Cards

64. You detect a VIA USB controler in your computer. Which USB module would you load to use this controler? Choose the best answer. O O O O O usb-via usb-ohci usb-uhci usb-intel usb-compaq

65.Which of the following directories have to be placed on the root partition? Choose every correct answer. O O O /usr /boot /lib

O O

/sbin /dev

66.When do you need to rerun the grub-install command? Choose every correct answer. O O O O O After every boot After every modification of the grub configuration file After installing a new kernel with a new name in /boot After overwriting the old kernel in /boot with a new one Only the first time after installing GRUB

67. You want to compile and install a GNU software package, but you want to change the default installation target. Which file would you edit? Choose the best answer. O O O O O config.h targets configure Makefile .config

68. 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? Choose the best answer. O O O O O install /home/bob/foobar.rpm rpminst /home/bob/foobar.rpm rpm -i /home/bob/foobar.rpm rpm -e /home/bob/foobar.rpm instrpm /home/bob/foobar.rpm

69. Which command would you use to get a list of all files inside the rpm-packet foobar.rpm in /home/bob? Choose the best answer. O O O O rpm -ql /home/bob/foobar.rpm rpm -ql -p /home/bob/foobar.rpm rpm -l /home/bob/foobar.rpm rpm -l -p /home/bob/foobar.rpm

70. Which command would you use to get a list of all files inside the rpm-packet foobar.rpm in /home/bob? Choose the best answer. O O O O rpm -ql /home/bob/foobar.rpm rpm -ql -p /home/bob/foobar.rpm rpm -l /home/bob/foobar.rpm rpm -l -p /home/bob/foobar.rpm

71. How can you describe the function of the following commands? foo | bar >>foobar Choose the best answer.

O The command foo redirects its output to the command bar, which writes its output to foobar. If foobar exists, it will be overwritten. O The command foo redirects its output to the command bar, which writes its output to foobar. If foobar exists, the results will be appended. The command bar gets its input from the file foo and writes its output to foobar. If foobar exists, it will be overwritten. The command bar gets its input from the file foo and writes its output to foobar. If foobar exists, the results will be appended. The command foo writes its output to the file bar. If this file exists foo writes into the file foobar instead.

72. How could you describe the following commandline? foo&| bar Choose the best answer. O O O O O The command foo is started in the background and redirects its output to the command bar. The command bar is only processed if the command foo returns no error. The command bar is only processed if the command foo returns an error. The command bar is processed after the command foo, regardless of errors. This isn't a valid commandline.

73. Which command would change the owner of all files and subdirectories under /home/foo to foobar? Choose every correct answer. O O O O O chmodfoobar /home/foo chownfoobar /home/foo chown -r foobar /home/foo chown -R foobar /home/foo chown --recursive foobar /home/foo

74. The textfile foo has got 30 lines of text. How could you extract the lines 11 to 20 to STDOUT? Choose every correct answer. O O O O O tail -n 20 | head -n 10 foo tail -n 20 foo | head -n 10 head -n 20 foo | tail -n 10 head -n 20 | tail -n 10 foo extract -l 11-20 foo

75. What command is used to get the last lines of a textfile (just the command - no options)?

Type the answer.

76.What command offers you an ongoing look at processor activity in real time (just the command - no options)? Type the answer.

77. A high nice value of a process means Choose the best answer. O O O O O the process uses less irqs the priority of the process is higher than normal the priority of the process is lower than normal the process uses no enviroment the process allows interprocess communication

78. How could you get the information, how many kilobytes are used by the directory /home/foo including all subdirectories? Choose the best answer. O O O O O dirsize /home/foo du -s /home/foo ls -laR /home/foo free --used_space /home/foo cb --kilobyte --recursive /home/foo

79. You want your users to be able to mount the CD-Rom on /dev/hdc. What is the right way to enable them? Choose the best answer. O O O Change the file permissions of /dev/hdc so that all users can write to this file. Add the SUID-Bit to the /bin/mount command Add the appropriate usernames to /etc/mountusers

O O

Add the entry "user,noauto" to the options of the filesystem in /etc/fstab Add the entry "may_mount(/dev/hdc)" into the users line inside /etc/passwd

80. The user foo has got a userquota of 20 megabyte in his home directory. Now you want to give him 40 megabyte instead. What is to do? Choose the best answer. O O O O O Edit the file /home/quota.user with an editor Edit the entry for /home in /etc/fstab Use the command repquota foo Use the command edquota foo Use the command addquota foo 20M

81.What is the numeric value of the permission mode -rwxr-sr-Type the answer.

82. What would be the default file permission modes for new files if you set umask to 022 ? Choose the best answer. O O O O O 755 644 022 220 550

83. User Bertha is member of different groups. How could you ensure, that her default group is foobar? Choose the best answer. O O Add the line "chgrpfoobar" inside her startup script Ensure that the groupnamefoobar is the first entry in her /etc/group line

O O O

Ensure that the GID of foobar is placed in her /etc/passwd entry Ensure that the GID of foobar is the lowest GID of all her GIDs Ensure that the GID of foobar is the highest GID of all her GIDs

84. Which of the following statements are true? Choose every correct answer. O O O O O A hardlink uses the same inode than it's original file. Hardlinks may be used for files and directories on the same partition Hardlinks can't point to directories A hardlink has to be in the same directory than it's original file A hardlink may reference any file on the whole system

85.Which directory contains manpages? Choose every correct answer. O O O O O /man /usr/man /usr/local/man /usr/doc/man /var/man

86. In what section of your XF86Config file would you enter the directive to use a particular font server? Choose the best answer. O O O O O Section "Module" Section "Files" Section "ServerFlags" Section "InputDevice" Section "Screen"

87. You are working with vi, writing a textfile. Being in command mode, you want to move the cursor 7 characters right. Enter the necessary command Type the answer. 88. In which file will you find a listing of all used IO-Ports of your computer? Type the answer.

89. The isapnp command uses a configuration file named isapnp.conf. How do you create this file? Choose the best answer. O O O O O Using the ./configure command in /etc/isapnp Using the --create-configfile parameter of isapnp Manually with an editor Using the pnpdump command Copy the informations in /proc/pnp to the file

90. Which is the partition ID of a Linux Swap Partition Type answer. 91. You want to install the tarball foobar.tar.gz. What command would unpack the archive? Choose every correct answer. O O O O O tar x foobar.tar.gz untar foobar.tar.gz tar tzvf foobar.tar.gz tar xzf foobar.tar.gz zcat foobar.tar.gz | tar xf

92. Which program is used to determine which shared libraries are used by a particular other program? Choose the best answer. O ldconfig

O O O O

libinfo info ldd ld.so

93.How can you describe the function of the following commands? foo< bar | foobar Choose the best answer. O The command foobar gets its input from the command bar O The command foo redirects its output to foobar O O O The command bar writes its output into the file foo The command foo gets its input from the file bar and if its exitcode is not 0, the command foobar will be executed The file foo is written by the command "bar | foobar"

94. How could you describe the following commandline? foo&& bar Choose the best answer. O The command foo is started in the background, the command bar is started in the foreground. The command foo and the command bar are started simultaneously. The command bar is only processed if the command foo leaves without error. The command bar is only processed if the command foo leaves with an error. This isn't a valid commandline

O O O O

95. What would the following command result in? echo $(date +%H:%M) > file Choose the best answer. The string "date +%H:%M" will be written into the file The content of the variable named "date +%H:%M" will be written into the file

The content of the variable named after the current time (Hours:Minutes) will be written into the file The current time (Hours:Minutes) will be written into the file This isn't a valid command

96. What is the result of the following command? cd ~foo Choose the best answer. O O O O O The current directory is changed to ~foo The current directory is changed to the directory foo inside your home directory The current directory is changed to the home directory of the user foo The current directory is changed to the nearest directory with a name ending with foo This isn't a valid command

97.Which command would display the list of all running background-jobs? Choose the best answer. O O O O O list -bg joblist joblist --background job jobs

98. Which statements are true? Choose every correct answer. O O O O A nice value reaches from 0 to 20 Only root can use negative nice values A less nice value means higher priority Nice-values can be changed with the ps-command

An even nice-value means high, an odd value low priority

99. What means the following construct inside a regular expression? [^A-Z][!A-Z] Choose the best answer. O O O O O The starting of a line, followed by an uppercase letter, followed by a non uppercase letter. Either the starting of a line or an uppercase letter followed by a non uppercase letter. A non uppercase letter followed by either an !or an uppercase letter A non uppercase letter at the beginning of a word followed by a non uppercase letter. An uppercase letter at the beginning of a word followed by a non uppercase letter.

100. What set of files would be affected by the following wildcard? foo.?bar Choose the best answer. O O O O O foo.bar foo.1bar foo.2bar foo.1bar foo.2bar foo.34bar foo.1bar foo.2bar foo.Fbar foo.1bar foo.2bar Foo.3.bar foobar foo1bar foo2bar

101. What device is described by the following special file? /dev/hdb2 Choose the best answer. O O O O O The slave on the second IDE-channel The second logical partition of the master on the first IDE-channel The second primary partition of the slave on the first IDE-channel The second bootsector of the master on the first IDE-channel The second primary partition of the master on the second IDE-channel

102. Which command shows you, how much space in Kilobytes is available on all mounted partitions? Choose the best answer. O O O O O df --free_space du df -k free fdisk

103. How could you get the information, what kind of quota is activated for user foo? Choose the best answer. O O O O O repquota foo repquota --user foo quota foo quota --user foo quotainfo foo

104. What is the meaning of the following file permission mode of the file foobar? -rwsr-xr-x 1 foo bar 12345 Oct 29 14:51 foobar Choose the best answer. O O O O O Everybody who executes this file does this under the EUID of root Everybody who executes this file does this under the EUID of foo Everybody who executes this file does this under the GID of bar Everybody who executes this file does this under the EUID 1 Everybody who executes this file does this under the GID 1

105. Enter the commant to create a link. (Just the command, no options) Type the answer.

106. What would the following command search for? find / -perm +4000

Choose the best answer. O O O O O All files which are "unchanged" since more than 4000 minutes. All files which are permutated more than 4000 times. All files which are permutated more than 4000 minutes ago. All files with a permission of at least 4000 All files which are networking sockets with a permanent connection and which have transmitted more than 4000 Bytes

107. What is a X-client Choose the best answer. O O a computer which uses the X11 Protocol to communicate a computer which uses a super-computer to run applications which are displayed on the local screen a program which is dispayed on a graphical screen of an X Server a computer which offers displaying on its screen a computer with a graphical user interface using X11

O O O

108. Most linux systems offer a display manager runlevel. What statement about this runlevel is true? Choose the best answer. O O O O O X11 can be started using startx in this runlevel X11 can be started using xinit in this runlevel X11 is started automaticly for user root X11 is started automaticly an offers a login window This runlevel has nothing to do with X11

You might also like