Forrest logo
back to context overview

apt

List of commands for apt:

  • apt:ai:371ae Install the traceroute tool on a Linux system using apt package manager
    $ apt install traceroute
    try on your machine
    explain this command
  • apt:ai:76431 Updates transmission CLI from version 3 to version 4
    $ apt update && apt upgrade transmission-cli -y
    try on your machine
    explain this command
  • apt:ai:87b42 Install PHP 8.0 on Debian
    $ apt update && apt install -y apt-transport-https lsb-release ca-certificates && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php.list && apt update && apt install -y php8.0
    try on your machine
    explain this command
  • apt:ai:909c3 Use the apt package manager to install the pveperf package
    $ apt install pveperf
    try on your machine
    explain this command
  • apt:tldr:03a07 apt: List all packages.
    $ apt list
    try on your machine
    explain this command
  • apt:tldr:3157c apt: List installed packages.
    $ apt list --installed
    try on your machine
    explain this command
  • apt:tldr:3d111 apt: Search for a given package.
    $ apt search ${package}
    try on your machine
    explain this command
  • apt:tldr:83f73 apt: Show information for a package.
    $ apt show ${package}
    try on your machine
    explain this command
  • apt:tldr:b1d28 apt: Upgrade all installed packages to their newest available versions.
    $ sudo apt upgrade
    try on your machine
    explain this command
  • apt:tldr:d3849 apt: Remove a package (using `purge` instead also removes its configuration files).
    $ sudo apt remove ${package}
    try on your machine
    explain this command
  • apt:tldr:fe7b2 apt: Install a package, or update it to the latest available version.
    $ sudo apt install ${package}
    try on your machine
    explain this command
  • php:modules:install:zip This command installs the PHP 8.1 zip extension on Linux
    $ apt install php-zip
    try on your machine
    explain this command
  • snapd:install Installs snap package manager on Linux.
    $ apt install snapd
    try on your machine
    explain this command
back to context overview