basic linux commands
basic linux commands
The below is the list of some Linux commands along with a brief purpose of each. Run
the following commands in the Kali Linux terminal (pressing enter after each):
• Update the Linux Environment
o apt-get is the command-line tool used to install, remove, and manage
software package. To obtain further information about the command-line
options that can be used with apt-get use the terminal command apt-get
--help
o apt-get update is the command used to retrieve new lists of packages
from a server on the internet. It does not install packages but only
retrieves a list of all available packages that can be installed.
o apt-get upgrade is the command used to perform an upgrade of the
current packages installed on the system. In e?ect, it upgrades software
to the most recently released version.
o apt-get install <package name> is the command used to install a
specific package (replace with the name of the package you are trying to
install). If the package is already installed on the system, then it will
upgrade it to the most recent version.