安装新软件

APT 和 APT-GET

最简单快捷的方法是使用 apt-get 命令。此命令可以被视为较低级别和后端,并支持其他基于 APT 的工具。没有花哨的装载机,只有基本的进度信息。这是安装应用程序的最快方式。

用法:

sudo apt-get install deluge openssh-server

此命令将安装两个新应用程序:deluge 和 openssh-server。你可以在一行命令中安装任意数量的应用程序。

同一过程的花式方式是智慧 2:

sudo apt install deluge openssh-server

结果相同,但与用户的交互与以前的命令不同。apt 专为最终用户(人类)而设计,其输出可能会在不同版本之间进行更改。

这两个命令都将自动处理依赖项。

user@host:~$ sudo apt install vlc
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libtimezonemap1 sbsigntool
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libbasicusageenvironment0 libcddb2 libcrystalhd3 libdvbpsi8 libebml4
  libfreerdp1 libgnutls28 libgroupsock1 libhogweed2 libiso9660-8
  liblivemedia23 libmatroska6 libproxy-tools libresid-builder0c2a libsidplay2
  libssh2-1 libtar0 libupnp6 libusageenvironment1 libva-x11-1 libvcdinfo0
  libvlc5 libvlccore7 libxcb-composite0 libxcb-keysyms1 libxcb-randr0
  libxcb-xv0 vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
Suggested packages:
  firmware-crystalhd freerdp-x11 gnutls-bin videolan-doc
Recommended packages:
  libdvdcss2
The following NEW packages will be installed:
  libbasicusageenvironment0 libcddb2 libcrystalhd3 libdvbpsi8 libebml4
  libfreerdp1 libgnutls28 libgroupsock1 libhogweed2 libiso9660-8
  liblivemedia23 libmatroska6 libproxy-tools libresid-builder0c2a libsidplay2
  libssh2-1 libtar0 libupnp6 libusageenvironment1 libva-x11-1 libvcdinfo0
  libvlc5 libvlccore7 libxcb-composite0 libxcb-keysyms1 libxcb-randr0
  libxcb-xv0 vlc vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
0 upgraded, 32 newly installed, 0 to remove and 308 not upgraded.
Need to get 10,5 MB of archives.
After this operation, 51,7 MB of additional disk space will be used.
Do you want to continue? [Y/n] 

DPKG

dpkg 代表 Debian Package。这是 Debian 和其他 Debian 衍生产品的基本的低级包安装程序。dpkg 有很多选择,但我们对 -i 感兴趣,它代表 install

sudo dpkg -i google-chrome-stable.deb

你可以用 dpkg 安装 .deb 包。

如果在安装 .deb 软件包时出错,在大多数情况下,你没有一些依赖项。要摆脱此错误并正确安装应用程序,请运行 sudo apt-get -f install 而不使用任何其他参数。这将搜索依赖项并在 .deb 之前安装它们。安装将继续,将安装应用程序。