Chapter 11 Flashcards
Which of the following commands can be used to search for packages that contain the word oobla on RPM software repositories?
a. yum list oobla
b. yum search oobla
c. rpm -qS oobla
d. rpm -ql oobla
yum search oobla
Which one is NOT a Linux compression tool?
Group of answer choices
- bzip2 / bunzip2
- compress / uncompress
- xz / unxz
- zap / unzap
zap / unzap
Which one is NOT a typical step involved in compiling and installing software on Linux?
Group of answer choices
- Run “make” shell script
- Run “install” shell script
- Run “configure” shell script
- Run “make install” shell script
Run “install” shell script
dnf resolves package dependencies automatically.
Correct!
True
False
True
Which commands can you use or could you have used to install a package on Fedora? (Select three)
- dnf
- fed
- rpm
- yum
- dnf
- rpm
- yum
Which methods describe a typical Linux software installation process? (Select two)
- Download an executable and let the installer extract and install
- Download a tarball, and manually extract, compile, and install
- Download a package and let the package manager extract and install.
- Download an image and let the installer extract and install
- Download a tarball, and manually extract, compile, and install
- Download a package and let the package manager extract and install.
Which one is NOT a Linux backup tool?
- tar
- cpioCo
- ee
- dump / restore
ee
Which one is NOT a typical program used on a Linux server to download a tarball?
- curl
- firefox
- ftp or sftp
- wget
firefox
What is a shared library? (Select two)
- A binary file that contains function calls that are used by multiple applications
- Has the .sl extension
- Placed under /lib/ or /lib64/ directory typically
- Unique to Linux which is not found in Windows OS
A binary file that contains function calls that are used by multiple applications
Placed under /lib/ or /lib64/ directory typically
Which commands can you use or could you have used to install a package on Ubuntu? (Select all that apply)
Correct!
apt
aptitude
apt-get
dpkg
apt
aptitude
apt-get
dpkg
Which command is used to extract the tarball?
- tar -extf gimp-2.10.14.tar.gz
- tar -exvf gimp-2.10.14.tar.gz
- tar -zcvf gimp-2.10.14.tar.gz
- tar -zxvf gimp-2.10.14.tar.gz
tar -zxvf gimp-2.10.14.tar.gz
Which option to the dpkg command can be used to list the files that comprise a package?
- l
- L
- s
- i
-L
When compiling source code into a binary program, which command does the compiling using the GNU C Compiler?
tar
./configure
make
make install
make
You have created a full backup and four incremental backups. In which order must you restore these backups?
0, 1, 2, 3, 4
0, 4, 3, 2, 1
4, 3, 2, 1, 0
1, 2, 3, 4, 0
0, 1, 2, 3, 4
The bzip2 and gzip utilities use similar compression algorithms.
True
False
True