6.4.1 Flashcards
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
ocal repository
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
source code
_______ is a program which finds and loads the shared libraries needed by a program. It also prepares the program to run and executes it.
/lib/ld.so
________ 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.
/etc/ld.so.conf
_________ 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.
/etc/ld.so.cache
Modify ___________ to add the path of the libraries.
/etc/ld.so.conf
static libraries are integrated into the code of the ____________ itself when the code is compiled
application
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)
ldd
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
idconfig