谁能帮我提供终端命令来下载和安装软件中心提供的软件?
实际上,我正在寻找通过终端下载和安装 KDbg(调试器)的命令。
答案1
简短而甜蜜:
在终端中运行以下命令进行安装kdbg
:
sudo apt-get update
sudo apt-get install kdbg
广义解:
apt-get
是用于安装/更新/删除软件的命令行包管理工具。要安装任何软件,您可以运行以下命令:
sudo apt-get update # This updates/synchronizes the package index files with the update server (not always necessary to run this command, but preferred)
sudo apt-get install <package_name> # This command actually installs the package
大多数情况下,<package_name>
它与您要安装的软件的名称相同。但是,如果您似乎无法弄清楚软件包的名称,您有几个选择。
假设你想安装dconf 编辑器- 它的包名称与它的名称不同。
1. GUI - 使用 Ubuntu 软件中心:
搜索要安装的软件,然后查看字段Version
。它由空格分隔的两部分组成,空格前的第一部分是软件包名称,第二部分提供版本信息。对于 dconf 编辑器,软件包名称是dconf-tools
。
2. 命令行-使用apt-cache
:
我们运行命令如下apt-cache search <software_name>
$ apt-cache search dconf
dconf-gsettings-backend - simple configuration storage system - GSettings back-end
dconf-service - simple configuration storage system - D-Bus service
dconf-tools - simple configuration storage system - utilities
libc-bin - Embedded GNU C Library: Binaries
libdconf-dbg - simple configuration storage system - debugging symbols
libdconf-dbus-1-0 - simple configuration storage system - D-Bus library
libdconf-dbus-1-dbg - simple configuration storage system - D-Bus debug symbols
libdconf-dbus-1-dev - simple configuration storage system - D-Bus development files
libdconf-dev - simple configuration storage system - development files
libdconf-doc - simple configuration storage system - documentation
libdconf1 - simple configuration storage system - runtime library
asoundconf-gtk - Applet to select the default ALSA sound card
dconf - collect system information
libdconf-qt-dev - dconf Qt bindings (development files)
libdconf-qt0 - dconf Qt bindings (library)
libgrabcd-readconfig-perl - rip and encode audio CDs - common files
libmed-tools - Runtime tools to handle MED files
xnetcardconfig - A simple network card configuration wizard for X
这个排dconf-tools
在第三位。不是很有帮助,但在大多数情况下还是足够好的。
我几乎总是倾向于使用apt-cache
,如果不满意,则使用 Ubuntu 软件中心。
提示:使用模拟apt-get
:
如果不太确定,请使用标志-s
来apt-get
模拟命令的工作。确保将标志放在末尾。因此,请按如下方式运行命令:
sudo apt-get install <package_name> -s
答案2
CTRL使用+ ALT+打开终端T 然后输入
sudo apt-get install kdbg
这将安装您需要的软件。
如果你想了解更多关于在 Ubuntu 上安装软件的信息,我建议你阅读安装软件文档。
我希望这能帮到您。