6.4.1 Flashcards

1
Q

You can configure a package manager to access packages from a l_________. Packages are more quickly and easily transferred from a local repository than from an internet repository

A

ocal repository

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

Some Linux software may not have a compiled package for your Linux distribution, but may offer the source code. Other Linux software may only be offered as _________. In these cases, you can download and compile the software as an executable. The executable can be installed so that your Linux system will know how to run it

A

source code

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

_______ is a program which finds and loads the shared libraries needed by a program. It also prepares the program to run and executes it.

A

/lib/ld.so

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

________ is a file which contains a list of directories in which to search for shared libraries. Some lines in the file begin with the include directive which list files that are to be included as if they were part of the main file.

A

/etc/ld.so.conf

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

_________ is a cached list of libraries found in the directories specified in __________. The system uses this cached list instead of loading __________ every time a program runs.

A

/etc/ld.so.cache

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

Modify ___________ to add the path of the libraries.

A

/etc/ld.so.conf

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

static libraries are integrated into the code of the ____________ itself when the code is compiled

A

application

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

Discovers which libraries are used by another library (e.g., library dependencies).

When using _____ to track down problems, check the complete dependency chain.
Run ___ as root (recommended)

A

ldd

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

Reloads the library cache every time libraries are added or removed, and update the symbolic links. This creates the necessary links and cache for the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories

A

idconfig

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