Archives (TAR Files) Flashcards
yum search keyword
Search for a package by “keyword”
yum install package
Install “package”
yum info package
Display description and summary information about “package” for RHEL based systems
rpm -i package.rpm
Install package from local file “package.rpm”
yum remove package
Remove/uninstall “package” for RHEL based systems
yum update package
Update “package” for RHEL based systems
tar zxvf sourcecode.tar.gz
cd sourcecode
./configure
make
make install
Install software from sourcecode
apt-get update
Update package list for Debian based systems
apt-get upgrade
Upgrade all installed packages to their newest version for Debian based systems
apt-get install package
Install “package” for Debian-based systems
apt-remove package
Remove “package” for Debian-based systems