LPIC-1-Exam 101 - Terms and Utilities Flashcards
/sys
virtual file system which stores and allows modification of system connected devices
/proc
virtual file system with text files showing kernel and process status
/dev
contains files that represent devices (device nodes)
modprobe
program to add and remove modules from the Linux Kernel
lsmod
program to show the status of modules in the Linux Kernel
lspci
list all PCI devices
/var/log/messages
system log (On Ubuntu it’s /var/log/syslog)
dmesg
print or control the kernel ring buffer
BIOS
Basic Input Output System
bootloader
a program that loads an operating system
kernel
the code between the hardware and applications
/etc/inittab
config file that controls what happens on a restart or when the run levels are force changed
shutdown
bring the system down
init
program that spawns other processes (Replaced with upstart in Ubuntu)
/etc/init.d
where traditional sysvinit scripts and upstart backward compatible scripts reside
telinit
change system runlevel
/ (root) filesystem
base level of the files system directory tree
/var filesystem
location of often changing files (such as database files)
/home filesystem
location of user home directories
swap space
drive space used as slow virtual memory
mount point
directory entry point to other mounted storage volumes
partitions
a logical storage unit
/boot/grub/menu.lst
config file that determines which kernel GRUB boots
grub-install
install GRUB to a device
MBR
Master Boot Record
superblock
file system blocks that contain info like: file system type, status, size, and other info
/etc/lilo.conf
config file for LILO boot loader (alternative to GRUB)
lilo
LInux LOader (boot loader)
ldd
print shared library dependencies
ldconfig
configure dynamic linker run-time bindings
/etc/ld.so.conf
config file that dictates where to search for libraries (colon, space, newline, tab, or comma-separated)
LD_LIBRARY_PATH
: separated list of paths used by the linker to resolve ELF executable dependencies during run-time
/etc/apt/sources.list
list used by Apt to determine where to get package info and packages
dpkg
package manager for Debian
dpkg-reconfigure
reconfigure an already installed package
apt-get
APT package handling utility - - command-line interface
apt-cache
query the APT cache
aptitude
high-level interface to the package manager
rpm
file(s) in the Red Hat Package Manager format
rpm2cpio
converts a RPM package files into a cpio archive
/etc/yum.conf
config file for YUM package manager
/etc/yum.repos.d/
config file that stores all the YUM repositories
yum
Yellowdog Updater Modified package management utility for RPM based systems
yumdownloader
a program for downloading files from YUM repositories
.
represents the current working directory
bash
GNU Bourne-Again SHell
echo
display a line of text
env
run a program in a modified environment
exec
execute a file
export
makes variables available to all child processes of the running shell or script
pwd
print name of current/working directory
set
reads and writes variables
unset
deletes variables
man
an interface to the on-line reference manuals
uname
print system information
history
GNU History Library
cat
concatenate files and print on the standard output
cut
remove sections from each line of files
expand
convert tabs to spaces
fmt
simple optimal text formatter