Skip to main content

Linux Essentials Prüfungsvorbereitung Teil1

Englisch
Members of a team already have experience using Red Hat Enterprise Linux. For a small hobby project, the team wants to set up a Linux server without paying for a subscription. Which of the following Linux distributions allows the team members to apply as much of their Red Hat Enterprise Linux knowledge as possible?
- Ubuntu Linux LTS
- Raspbian
- Debian GNU/Linux
- CentOS
- openSUSE
Die Mitglieder eines Teams haben bereits Erfahrung mit Red Hat Enterpise Linux. Für ein kleines Hobbyprojekt will das Team einen Linux-Server aufsetzen, ohne für ein Support-Abonnement bezahlen zu müssen. Welche der folgenden Distributionen ermöglicht den Teammitgliedern, möglichst viel von ihrer Red Hat Enterprise Linux-Erfahrung bei dem Projekt anwenden zu können?
A.
B.
C.
D.
E.

Frage 1 von 20

EnglischA user is currently in the directory /home/user/Downloads/ and runs the command ls ../Documents/
Assuming it exists, which directory’s content is displayed?
/home/user/Documents/
/home/user/Documents/Downloads/
/home/user/Downloads/Documents/
/Documents/
/home/Documents
Ein Benutzer ist gerade im Verzeichnis /home/user/Downloads/ und führt den Befehl ls ../Documents/ aus.
Der Inhalt welches Verzeichnisses wird angezeigt, vorausgesetzt es existiert?
A.
B.
C.
D.
E.

Frage 2 von 20

EnglischRunning the command rm Downloads leads to the following error: rm: cannot remove 'Downloads/': Is a directory
Which of the following commands can be used instead to remove Downloads, assuming Downloads is empty? (Choose two.)
undir Downloads
rmdir Downloads
dir -r Downloads
rem Downloads
rm -r Downloads

Beim Ausführen des Befehls rm Downloads erscheint folgende Fehlermeldung:rm: cannot remove 'Downloads/': Is a directory

Welcher der folgenden Befehle kann stattdessen benutzt werden, um Downloads zu löschen, vorausgesetzt Downloads ist leer? (Zwei Antworten auswählen)
A.
B.
C.
D.
E.

Frage 3 von 20

EnglischWhich of the following commands will search for the file foo.txt under the directory /home?
search /home file foo.txt
search /home foo. txt
find /home - file foo.txt
find /home -name foo.txt
find /home foo.txt
Welcher der folgenden Befehle sucht nach der Datei foo.txt im Verzeichnis /home?
A.
B.
C.
D.
E.

Frage 4 von 20

EnglischWhich of the following programs is a graphical editor for vector graphics?
Python
NGINX
Samba
Inkscape
MySQL
Welches der folgenden Programme ist ein grafisches Bearbeitungsprogramm für Vektorgrafiken?
A.
B.
C.
D.
E.

Frage 5 von 20

EnglischWhat is true about the su command?
It is the default shell of the root account.
It can only be used by the user root.
It runs a shell or command as another user.
It changes the name of the main administrator account.
It locks the root account in specific time frames.
Welche Aussage über den su Befehl ist wahr?
A.
B.
C.
D.
E.

Frage 6 von 20

EnglischWhich command adds the new user tux and creates the user's home directory with default configuration files?
defaultuser tux
useradd -m tux
usercreate tux
useradd -o default tux
passwd -a tux
Welcher Befehl erstellt den neuen Benutzer tux und erstellt sein Homeverzeichnis mit den default Konfigurationsdateien?
A.
B.
C.
D.
E.

Frage 7 von 20

EnglischWhich of the following commands output the content of the file Texts 2.txt? (Choose two.)
cat 'Texts 2.txt'
cat - Texts 2.txt
cat |Texts 2.txt|
cat 'Texts\ 2.txt'
cat Texts\ 2.txt

Welcher der folgenden Befehle gibt den Inhalt der Datei Texts 2.txt aus?(Zwei auswählen)
A.
B.
C.
D.
E.

Frage 8 von 20

Englisch
Which of the following commands creates the ZIP archive poems.zip containing all files in the current directory whose names end in .txt?
zip *.txt > poems.zip
zcat *.txt poems.zip
zip poems.zip *.txt
zip cfz poems.zip *.txt
cat *.txt | zip poems.zip
Welcher der folgenden Befehle erstellt das Zip-Archiv poems.zip mit allen Dateien aus dem aktuellen Verzeichnis, deren Namen auf .txt enden?
A.
B.
C.
D.
E.

Frage 9 von 20

EnglischWhich of the following commands extracts the contents of the compressed archive file1.tar.gz?
tar -czf file1.tar.gz
ztar file1.tar.gz
tar -xzf file1.tar.gz
tar --extract file1.tar.gz
detar file1.tar.gz
Welcher der folgenden Befehle extrahiert den Inhalt aus dem komprimierten Archiv file1.tar.gz?
A.
B.
C.
D.
E.

Frage 10 von 20

EnglischWhich of the following devices represents a hard disk partition?

/dev/ttyS0
/dev/sata0
/dev/part0
/dev/sda2
/dev/sda/p2
Welches der folgenden Geräte repräsentiert eine Festplatten-Partition
A.
B.
C.
D.
E.

Frage 11 von 20

EnglischThe file script.sh in the current directory contains the following content:

#!/bin/bash echo $MYVAR

The following commands are used to execute this script:

MYVAR=value
./script.sh

The result is an empty line instead of the content of the variable MYVAR. How should MYVAR be set in order to make script.sh display the content of MYVAR?
!MYVAR=value
env MYVAR=value
MYVAR=value
$MYVAR=value
export MYVAR=value
Die Datei script.sh im aktuellen Verzeichnis hat den folgenden Inhalt:

#!/bin/bash
echo $MYVAR

Das folgenden Kommando wird benutzt, um dieses Skript auszuführen:

MYVAR=value
./script.sh

Das Ergebnis ist eine leere Zeile, anstatt des Inhalts der Variablen MYVAR.
Wie sollte MYVAR stattdessen gesetzt werden, damit das Skript den Inhalt von MYVAR ausgibt?
A.
B.
C.
D.
E.

Frage 12 von 20

Englisch
What is the preferred source for installing new application programs in a Linux-based operating system?
Was ist die bevorzugte Quelle für die Installation neuer Anwendungsprogramme in einem Linux-basierten Betriebsystem?
A.
B.
C.
D.
E.

Frage 13 von 20

EnglischWhat information is stored in /etc/passwd? (Choose three.)
The user's storage space limit
The numerical user ID
The username
The encrypted password
The user\s default shell

Welche Informationen sind in der Datei /etc/passwd gespeichert? (Drei auswählen)
A.
B.
C.
D.
E.

Frage 14 von 20

EnglischWhich of the following tar options handle compression? (Choose two.)

-bz
-z
-g
-j
-z2

Welche der folgenden tar-Optionen ermöglicht die Komprimierung? (Wähle zwei.)
A.
B.
C.
D.
E.

Frage 15 von 20

Englisch
What is defined by a software license?
Was wird durch eine Softwarelizenz definiert?
A.
B.
C.
D.
E.

Frage 16 von 20

EnglischWhat is the return value of a shell script after successful execution?
1
0
-1
-255
255
Was ist der Rückgabewert eines Shell-Skripts nach erfolgreicher Ausführung?
A.
B.
C.
D.
E.

Frage 17 von 20

Englisch

What command displays manual pages? (Specify ONLY the command without any path or parameters.)


Welcher Befehl zeigt Manual Pages an? (nur den Befehl ohne Pfad oder Parameter eingeben)

Frage 18 von 20

EnglischWhich of the following directories contains information, documentation and example configuration files for installed software packages?
/usr/share/doc/
/etc/defaults/
/var/info/
/doc/
/usr/examples/
Welches der folgenden Verzeichnisse enthält Informationen, Dokumentation und Beispiel-Konfigurationsdateien für installierte Softwarepakete?
A.
B.
C.
D.
E.

Frage 19 von 20

EnglischWhich package management tool is used in Red Hat-based Linux Systems?
portage
rpm
apt-get
dpkg
packagectl
Welches Paketverwaltungs-Tool wird in Red-Hat basierten Linux Systemen verwendet?
A.
B.
C.
D.
E.

Frage 20 von 20