Module 3 July 6 Flashcards

1
Q

what tool can install programs, but doesn’t install package dependencies?

A

d package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what does the linux shell command
~/Desktop$ ls
do?

A

show you the items in the desktop (the first part is just the location. you don’t actually write it.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what do you use to install packages in linux?

A

sudo dpkg-i

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what does the error in linux:
dependency problems prevent configuration of google-chrome-stable
package ‘pakagename’ is not installed
signify?

A

dpkg can’t install Chrome because its dependencies aren’t installed. it is dependent on another package that isn’t currently installed on this machine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what package needs to be installed before you can get google chrome?

A

libappindicator1.

you can find information about missing pkg dependencies if you try to use sudo dpkg to install something and it fails. The error message will tell you what package is missing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what standalone package installer is quick to use, but doesn’t install package dependencies?

A

dpkg

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what can dependencies be in linux?

A

other packages or shared libraries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are Linux shared libraries?

A

libraries of code that other programs can use.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is one annoying thing you can do if you have a dependency error in linux?

A

install the dependencies one by one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What come with the works to make package installation and removal easier, including installing package dependencies?

A

Package managers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is one of many free operating systems, OS, used as a foundation for other OSes, like Ubuntu?

A

Debian

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a compressed software archive file that contains the files needed for a software application?

A

Linux packages, three types:
.deb
.rpm
.tgz

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what files can include binary executables, a software library, configuration files, package dependencies, command line utilities, and/or application(s) with a graphical user interface?

A

.deb
.rpm
.tgz

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what can also be an OS update?

A

a linux package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What installations normally come with thousands of packages?

A

linux OS installations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what are common linux package types?

A

.deb, .rpm, .tgz

17
Q

what is the file extension for debian packages?

A

.deb

18
Q

what is the file extension for Redhat packages?

A

.rpm

19
Q

What is the file extension for TAR archive files?

A

.tgz

20
Q

What is a binary executable file?

A

a type of binary file that contains machine code for the computer to execute.

21
Q

what is storage space on a remote server that hosts thousands of Linux packages? Must be added to a Linux system in order for the system to search and download packages from it.

A

Linux repository

22
Q

What is a package that does not require any dependencies? all files required to install and run the package on the Linux system are contained in a single package.

A

stand alone package

23
Q

what is a package that other Linux packages depend on to function properly? Often packages do not contain these. Instead, package manifests list these, which are needed by the package.

A

Package dependencies

24
Q
A