study


Set of flashcards Details

Flashcards 70
Language English
Category Computer Science
Level Other
Created / Updated 31.05.2016 / 06.06.2022
Weblink
https://card2brain.ch/box/linux_exam
Embed
<iframe src="https://card2brain.ch/box/linux_exam/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

One of the jobs of the kernel is to:

Unix is:

(choose two)

Linux is written in:

Source code refers to:

What is the standard option to provide a command line program to view its documentation?

The command man -k is the same as the command apropos.

True or False?

The whatis command is the same as man -w.

The directory where additional documentation for software packages most likely can be found is:

Hidden files are files that begin with what character?

The top-level directory on a Linux system is represented as:

Is the following path absolute or relative?

/etc/ppp

Is the following path absolute or relative?

sysadmin/Documents

Compression on a file works by:

Lossy compression:

(choose three)

You type gzip myfile.tar. What happens?

(choose two)

Error messages generated by commands are sent where by default?

A successful command will print output to STDOUT.

True or False?

Which of the following commands will direct error messages to the file, error.log?

(choose one)

A pipe allows you to…

Channel 2 is:

The echo command:

A file begins with #!/bin/csh. This means:

Which are appropriate editors for writing shell scripts?

(choose two)

Most of nano’s commands take the form of:

What does this shell script do?

FOO=/tmp/foo

if [ ! –d $FOO ]; then

mkdir $FOO

fi

Which of the following are valid CPU types for Intel-based platforms?

(choose two)

64 bit platforms can access more memory than 32 bit platforms.

True or False?

What does the acronym RPM mean?

One way to install new software on a Linux system is to use a package management system.

True or False?

When you execute the dmesg command, the system displays messages that are generated by the kernel.

True or False?

Which of the following are package management commands for distributions with software distributed in files ending in .deb?

(choose three)

Which of the following are package management commands for distributions with software distributed in files ending in .rpm?

(choose three)

Which of the following would be considered a host?

A service is…

A network packet contains …

(choose two)

Only servers have hostnames.

True or False?

Which files contain user account information?

(choose two)

Which user can view the /etc/shadow file?

Which command will display the UID, GID and groups your current user belongs to?

Each user belongs to at least one group.

True or False?