mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
Merge branch 'master' of github.com:LCTT/TranslateProject
finish translating 20180928 A Free And Secure Online PDF Conversion Suite.md
This commit is contained in:
commit
6207e27964
@ -3,21 +3,19 @@
|
||||
|
||||
![](https://www.ostechnix.com/wp-content/uploads/2018/09/prettyping-720x340.png)
|
||||
|
||||
众所周知,`ping` 命令可以用来检查目标主机是否可达。使用 `ping` 命令的时候,会发送一个 ICMP Echo 请求,通过目标主机的响应与否来确定目标主机的状态。如果你经常使用 `ping` 命令,你可以尝试一下 `prettyping`。Prettyping 只是将一个标准的 ping 工具增加了一层封装,在运行标准 ping 命令的同时添加了颜色和 unicode 字符解析输出,所以它的输出更漂亮紧凑、清晰易读。它是用 `bash` 和 `awk` 编写的免费开源工具,支持大部分类 Unix 操作系统,包括 GNU/Linux、FreeBSD 和 Mac OS X。Prettyping 除了美化 ping 命令的输出,还有很多值得注意的功能。
|
||||
众所周知,`ping` 命令可以用来检查目标主机是否可达。使用 `ping` 命令的时候,会发送一个 ICMP Echo 请求,通过目标主机的响应与否来确定目标主机的状态。如果你经常使用 `ping` 命令,你可以尝试一下 `prettyping`。Prettyping 只是将一个标准的 ping 工具增加了一层封装,在运行标准 `ping` 命令的同时添加了颜色和 unicode 字符解析输出,所以它的输出更漂亮紧凑、清晰易读。它是用 `bash` 和 `awk` 编写的自由开源工具,支持大部分类 Unix 操作系统,包括 GNU/Linux、FreeBSD 和 Mac OS X。Prettyping 除了美化 `ping` 命令的输出,还有很多值得注意的功能。
|
||||
|
||||
* 检测丢失的数据包并在输出中标记出来。
|
||||
* 显示实时数据。每次收到响应后,都会更新统计数据,而对于普通 ping 命令,只会在执行结束后统计。
|
||||
* 能够在输出结果不混乱的前提下灵活处理“未知信息”(例如错误信息)。
|
||||
* 显示实时数据。每次收到响应后,都会更新统计数据,而对于普通 `ping` 命令,只会在执行结束后统计。
|
||||
* 可以灵活处理“未知信息”(例如错误信息),而不搞乱输出结果。
|
||||
* 能够避免输出重复的信息。
|
||||
* 兼容常用的 ping 工具命令参数。
|
||||
* 兼容常用的 `ping` 工具命令参数。
|
||||
* 能够由普通用户执行。
|
||||
* 可以将输出重定向到文件中。
|
||||
* 不需要安装,只需要下载二进制文件,赋予可执行权限即可执行。
|
||||
* 快速且轻巧。
|
||||
* 输出结果清晰直观。
|
||||
|
||||
|
||||
|
||||
### 安装 Prettyping
|
||||
|
||||
如上所述,Prettyping 是一个绿色软件,不需要任何安装,只要使用以下命令下载 Prettyping 二进制文件:
|
||||
@ -52,9 +50,9 @@ $ prettyping ostechnix.com
|
||||
|
||||
![](https://www.ostechnix.com/wp-content/uploads/2018/09/prettyping-in-action.gif)
|
||||
|
||||
如果你不带任何参数执行 `prettyping`,它就会一直运行直到被 ctrl + c 中断。
|
||||
如果你不带任何参数执行 `prettyping`,它就会一直运行直到被 `ctrl + c` 中断。
|
||||
|
||||
由于 Prettyping 只是一个对普通 ping 命令的封装,所以常用的 ping 参数也是有效的。例如使用 `-c 5` 来指定 ping 一台主机的 5 次:
|
||||
由于 Prettyping 只是一个对普通 `ping` 命令的封装,所以常用的 ping 参数也是有效的。例如使用 `-c 5` 来指定 ping 一台主机的 5 次:
|
||||
|
||||
```
|
||||
$ prettyping -c 5 ostechnix.com
|
||||
@ -76,7 +74,7 @@ $ prettyping --nomulticolor ostechnix.com
|
||||
|
||||
![](https://www.ostechnix.com/wp-content/uploads/2018/09/prettyping-without-unicode-support.png)
|
||||
|
||||
如果你的终端不支持 **UTF-8**,或者无法修复系统中的 unicode 字体,只需要加上 `--nounicode` 参数就能轻松解决。
|
||||
如果你的终端不支持 UTF-8,或者无法修复系统中的 unicode 字体,只需要加上 `--nounicode` 参数就能轻松解决。
|
||||
|
||||
Prettyping 支持将输出的内容重定向到文件中,例如执行以下这个命令会将 `prettyping ostechnix.com` 的输出重定向到 `ostechnix.txt` 中:
|
||||
|
||||
@ -89,10 +87,9 @@ Prettyping 还有很多选项帮助你完成各种任务,例如:
|
||||
* 启用/禁用延时图例(默认启用)
|
||||
* 强制按照终端的格式输出(默认自动)
|
||||
* 在统计数据中统计最后的 n 次 ping(默认 60 次)
|
||||
* 覆盖对终端尺寸的检测
|
||||
* 覆盖 awk 解释器(默认不覆盖)
|
||||
* 覆盖 ping 工具(默认不覆盖)
|
||||
|
||||
* 覆盖对终端尺寸的自动检测
|
||||
* 指定 awk 解释器路径(默认:`awk`)
|
||||
* 指定 ping 工具路径(默认:`ping`)
|
||||
|
||||
|
||||
查看帮助文档可以了解更多:
|
||||
@ -101,18 +98,14 @@ Prettyping 还有很多选项帮助你完成各种任务,例如:
|
||||
$ prettyping --help
|
||||
```
|
||||
|
||||
尽管 prettyping 没有添加任何额外功能,但我个人喜欢它的这些优点:
|
||||
尽管 Prettyping 没有添加任何额外功能,但我个人喜欢它的这些优点:
|
||||
|
||||
* 实时统计 - 可以随时查看所有实时统计信息,标准 `ping` 命令只会在命令执行结束后才显示统计信息。
|
||||
* 紧凑的显示 - 可以在终端看到更长的时间跨度。
|
||||
* 实时统计 —— 可以随时查看所有实时统计信息,标准 `ping` 命令只会在命令执行结束后才显示统计信息。
|
||||
* 紧凑的显示 —— 可以在终端看到更长的时间跨度。
|
||||
* 检测丢失的数据包并显示出来。
|
||||
|
||||
|
||||
|
||||
如果你一直在寻找可视化显示 `ping` 命令输出的工具,那么 Prettyping 肯定会有所帮助。尝试一下,你不会失望的。
|
||||
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://www.ostechnix.com/prettyping-make-the-output-of-ping-command-prettier-and-easier-to-read/
|
||||
@ -120,7 +113,7 @@ via: https://www.ostechnix.com/prettyping-make-the-output-of-ping-command-pretti
|
||||
作者:[SK][a]
|
||||
选题:[lujun9972](https://github.com/lujun9972)
|
||||
译者:[HankChow](https://github.com/HankChow)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
校对:[wxy](https://github.com/wxy)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
@ -1,43 +1,33 @@
|
||||
How To List An Available Package Groups In Linux
|
||||
如何在 Linux 中列出可用的软件包组
|
||||
======
|
||||
As we know, if we want to install any packages in Linux we need to use the distribution package manager to get it done.
|
||||
我们知道,如果想要在 Linux 中安装软件包,可以使用软件包管理器来进行安装。由于系统管理员需要频繁用到软件包管理器,所以它是 Linux 当中的一个重要工具。
|
||||
|
||||
Package manager is playing major role in Linux as this used most of the time by admin.
|
||||
但是如果想一次性安装一个软件包组,在 Linux 中有可能吗?又如何通过命令去实现呢?
|
||||
|
||||
If you would like to install group of package in one shot what would be the possible option.
|
||||
在 Linux 中确实可以用软件包管理器来达到这样的目的。很多软件包管理器都有这样的选项来实现这个功能,但就我所知,`apt` 或 `apt-get` 软件包管理器却并没有这个选项。因此对基于 Debian 的系统,需要使用的命令是 `tasksel`,而不是 `apt`或 `apt-get` 这样的官方软件包管理器。
|
||||
|
||||
Is it possible in Linux? if so, what would be the command for it.
|
||||
在 Linux 中安装软件包组有很多好处。对于 LAMP 来说,安装过程会包含多个软件包,但如果安装软件包组命令来安装,只安装一个包就可以了。
|
||||
|
||||
Yes, this can be done in Linux by using the package manager. Each package manager has their own option to perform this task, as i know apt or apt-get package manager doesn’t has this option.
|
||||
当你的团队需要安装 LAMP,但不知道其中具体包含哪些软件包,这个时候软件包组就派上用场了。软件包组是 Linux 系统上一个很方便的工具,它能让你轻松地完成一组软件包的安装。
|
||||
|
||||
For Debian based system we need to use tasksel command instead of official package managers called apt or apt-get.
|
||||
软件包组是一组用于公共功能的软件包,包括系统工具、声音和视频。 安装软件包组的过程中,会获取到一系列的依赖包,从而大大节省了时间。
|
||||
|
||||
What is the benefit if we install group of package in Linux? Yes, there is lot of benefit is available in Linux when we install group of package because if you want to install LAMP separately we need to include so many packages but that can be done using single package when we use group of package command.
|
||||
**推荐阅读:**
|
||||
**(#)** [如何在 Linux 上按照大小列出已安装的软件包][1]
|
||||
**(#)** [如何在 Linux 上查看/列出可用的软件包更新][2]
|
||||
**(#)** [如何在 Linux 上查看软件包的安装/更新/升级/移除/卸载时间][3]
|
||||
**(#)** [如何在 Linux 上查看一个软件包的详细信息][4]
|
||||
**(#)** [如何查看一个软件包是否在你的 Linux 发行版上可用][5]
|
||||
**(#)** [萌新指导:一个可视化的 Linux 包管理工具][6]
|
||||
**(#)** [老手必会:命令行软件包管理器的用法][7]
|
||||
|
||||
Say for example, as you get a request from Application team to install LAMP but you don’t know what are the packages needs to be installed, this is where group of package comes into picture.
|
||||
### 如何在 CentOS/RHEL 系统上列出可用的软件包组
|
||||
|
||||
Group option is a handy tool for Linux systems which will install Group of Software in a single click on your system without headache.
|
||||
RHEL 和 CentOS 系统使用的是 RPM 软件包,因此可以使用 `yum` 软件包管理器来获取相关的软件包信息。
|
||||
|
||||
A package group is a collection of packages that serve a common purpose, for instance System Tools or Sound and Video. Installing a package group pulls a set of dependent packages, saving time considerably.
|
||||
`yum` 是 Yellowdog Updater, Modified 的缩写,它是一个用于基于 RPM 系统(例如 RHEL 和 CentOS)的,开源的命令行软件包管理工具。它是从分发库或其它第三方库中获取、安装、删除、查询和管理 RPM 包的主要工具。
|
||||
|
||||
**Suggested Read :**
|
||||
**(#)** [How To List Installed Packages By Size (Largest) On Linux][1]
|
||||
**(#)** [How To View/List The Available Packages Updates In Linux][2]
|
||||
**(#)** [How To View A Particular Package Installed/Updated/Upgraded/Removed/Erased Date On Linux][3]
|
||||
**(#)** [How To View Detailed Information About A Package In Linux][4]
|
||||
**(#)** [How To Search If A Package Is Available On Your Linux Distribution Or Not][5]
|
||||
**(#)** [Newbies corner – A Graphical frontend tool for Linux Package Manager][6]
|
||||
**(#)** [Linux Expert should knows, list of Command line Package Manager & Usage][7]
|
||||
|
||||
### How To List An Available Package Groups In CentOS/RHEL Systems
|
||||
|
||||
RHEL & CentOS systems are using RPM packages hence we can use the `Yum Package Manager` to get this information.
|
||||
|
||||
YUM stands for Yellowdog Updater, Modified is an open-source command-line front-end package-management utility for RPM based systems such as Red Hat Enterprise Linux (RHEL) and CentOS.
|
||||
|
||||
Yum is the primary tool for getting, installing, deleting, querying, and managing RPM packages from distribution repositories, as well as other third-party repositories.
|
||||
|
||||
**Suggested Read :** [YUM Command To Manage Packages on RHEL/CentOS Systems][8]
|
||||
**推荐阅读:** [使用 yum 命令在 RHEL/CentOS 系统上管理软件包][8]
|
||||
|
||||
```
|
||||
# yum grouplist
|
||||
@ -82,7 +72,7 @@ Done
|
||||
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command. In this example we are going to list what are the packages is associated with “Performance Tools” group.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。下面的例子是列出和 Performance Tools 组相关联的软件包。
|
||||
|
||||
```
|
||||
# yum groupinfo "Performance Tools"
|
||||
@ -116,17 +106,17 @@ Group: Performance Tools
|
||||
|
||||
```
|
||||
|
||||
### How To List An Available Package Groups In Fedora
|
||||
### 如何在 Fedora 系统上列出可用的软件包组
|
||||
|
||||
Fedora system uses DNF package manager hence we can use the Dnf Package Manager to get this information.
|
||||
Fedora 系统使用的是 DNF 软件包管理器,因此可以通过 DNF 软件包管理器来获取相关的信息。
|
||||
|
||||
DNF stands for Dandified yum. We can tell DNF, the next generation of yum package manager (Fork of Yum) using hawkey/libsolv library for backend. Aleš Kozumplík started working on DNF since Fedora 18 and its implemented/launched in Fedora 22 finally.
|
||||
DNF 的含义是 Dandified yum。、DNF 软件包管理器是 YUM 软件包管理器的一个分支,它使用 hawkey/libsolv 库作为后端。从 Fedora 18 开始,Aleš Kozumplík 开始着手 DNF 的开发,直到在Fedora 22 开始加入到系统中。
|
||||
|
||||
Dnf command is used to install, update, search & remove packages on Fedora 22 and later system. It automatically resolve dependencies and make it smooth package installation without any trouble.
|
||||
`dnf` 命令可以在 Fedora 22 及更高版本上安装、更新、搜索和删除软件包, 它可以自动解决软件包的依赖关系并其顺利安装,不会产生问题。
|
||||
|
||||
Yum replaced by DNF due to several long-term problems in Yum which was not solved. Asked why ? he did not patches the Yum issues. Aleš Kozumplík explains that patching was technically hard and YUM team wont accept the changes immediately and other major critical, YUM is 56K lines but DNF is 29K lies. So, there is no option for further development, except to fork.
|
||||
由于一些长期未被解决的问题的存在,YUM 被 DNF 逐渐取代了。而 Aleš Kozumplík 的 DNF 却并未对 yum 的这些问题作出修补,他认为这是技术上的难题,YUM 团队也从不接受这些更改。而且 YUM 的代码量有 5.6 万行,而 DNF 只有 2.9 万行。因此已经不需要沿着 YUM 的方向继续开发了,重新开一个分支才是更好的选择。
|
||||
|
||||
**Suggested Read :** [DNF (Fork of YUM) Command To Manage Packages on Fedora System][9]
|
||||
**推荐阅读:** [在 Fedora 系统上使用 DNF 命令管理软件包][9]
|
||||
|
||||
```
|
||||
# dnf grouplist
|
||||
@ -180,7 +170,7 @@ Available Groups:
|
||||
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command. In this example we are going to list what are the packages is associated with “Editor” group.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。下面的例子是列出和 Editor 组相关联的软件包。
|
||||
|
||||
```
|
||||
|
||||
@ -215,13 +205,13 @@ Group: Editors
|
||||
zile
|
||||
```
|
||||
|
||||
### How To List An Available Package Groups In openSUSE System
|
||||
### 如何在 openSUSE 系统上列出可用的软件包组
|
||||
|
||||
openSUSE system uses zypper package manager hence we can use the zypper Package Manager to get this information.
|
||||
openSUSE 系统使用的是 zypper 软件包管理器,因此可以通过 zypper 软件包管理器来获取相关的信息。
|
||||
|
||||
Zypper is a command line package manager for suse & openSUSE distributions. It’s used to install, update, search & remove packages & manage repositories, perform various queries, and more. Zypper command-line interface to ZYpp system management library (libzypp).
|
||||
Zypper 是 suse 和 openSUSE 发行版的命令行包管理器。它可以用于安装、更新、搜索和删除软件包,还有管理存储库,执行各种查询等功能。 Zypper 命令行界面用到了 ZYpp 系统管理库(libzypp)。
|
||||
|
||||
**Suggested Read :** [Zypper Command To Manage Packages On openSUSE & suse Systems][10]
|
||||
**推荐阅读:** [在 openSUSE 和 suse 系统使用 zypper 命令管理软件包][10]
|
||||
|
||||
```
|
||||
# zypper patterns
|
||||
@ -277,8 +267,7 @@ i | yast2_basis | 20150918-25.1 | @System |
|
||||
| yast2_install_wf | 20150918-25.1 | Main Repository (OSS) |
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command. In this example we are going to list what are the packages is associated with “file_server” group.
|
||||
Additionally zypper command allows a user to perform the same action with different options.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。下面的例子是列出和 file_server 组相关联的软件包。另外 `zypper` 还允许用户使用不同的选项执行相同的操作。
|
||||
|
||||
```
|
||||
# zypper info file_server
|
||||
@ -317,7 +306,7 @@ Contents :
|
||||
| yast2-tftp-server | package | Recommended
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。
|
||||
|
||||
```
|
||||
# zypper pattern-info file_server
|
||||
@ -357,7 +346,7 @@ Contents :
|
||||
| yast2-tftp-server | package | Recommended
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。
|
||||
|
||||
```
|
||||
# zypper info pattern file_server
|
||||
@ -396,7 +385,7 @@ Contents :
|
||||
| yast2-tftp-server | package | Recommended
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。
|
||||
|
||||
```
|
||||
# zypper info -t pattern file_server
|
||||
@ -436,17 +425,17 @@ Contents :
|
||||
| yast2-tftp-server | package | Recommended
|
||||
```
|
||||
|
||||
### How To List An Available Package Groups In Debian/Ubuntu Systems
|
||||
### 如何在 Debian/Ubuntu 系统上列出可用的软件包组
|
||||
|
||||
Since APT or APT-GET package manager doesn’t offer this option for Debian/Ubuntu based systems hence, we are using tasksel command to get this information.
|
||||
由于 APT 或 APT-GET 软件包管理器没有为基于 Debian/Ubuntu 的系统提供这样的选项,因此需要使用 `tasksel` 命令来获取相关信息。
|
||||
|
||||
[Tasksel][11] is a handy tool for Debian/Ubuntu systems which will install Group of Software in a single click on your system. Tasks are defined in `.desc` files and located at `/usr/share/tasksel`.
|
||||
[tasksel][11] 是 Debian/Ubuntu 系统上一个很方便的工具,只需要很少的操作就可以用它来安装好一组软件包。可以在 `/usr/share/tasksel` 目录下的 `.desc` 文件中安排软件包的安装任务。
|
||||
|
||||
By default, tasksel tool installed on Debian system as part of Debian installer but it’s not installed on Ubuntu desktop editions. This functionality is similar to that of meta-packages, like how package managers have.
|
||||
默认情况下,`tasksel` 工具是作为 Debian 系统的一部分安装的,但桌面版 Ubuntu 则没有自带 `tasksel`,类似软件包管理器中的元包(meta-packages)。
|
||||
|
||||
Tasksel tool offer a simple user interface based on zenity (popup Graphical dialog box in command line).
|
||||
`tasksel` 工具带有一个基于 zenity 的简单用户界面,例如命令行中的弹出图形对话框。
|
||||
|
||||
**Suggested Read :** [Tasksel – Install Group of Software in A Single Click on Debian/Ubuntu][12]
|
||||
**推荐阅读:** [使用 tasksel 在 Debian/Ubuntu 系统上快速安装软件包组][12]
|
||||
|
||||
```
|
||||
# tasksel --list-task
|
||||
@ -494,20 +483,20 @@ u openssh-server OpenSSH server
|
||||
u server Basic Ubuntu server
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command. In this example we are going to list what are the packages is associated with “file_server” group.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。下面的例子是列出和 lamp-server 组相关联的软件包。
|
||||
|
||||
```
|
||||
# tasksel --task-desc "lamp-server"
|
||||
Selects a ready-made Linux/Apache/MySQL/PHP server.
|
||||
```
|
||||
|
||||
### How To List An Available Package Groups In Arch Linux based Systems
|
||||
### 如何在基于 Arch Linux 的系统上列出可用的软件包组
|
||||
|
||||
Arch Linux based systems are using pacman package manager hence we can use the pacman Package Manager to get this information.
|
||||
基于 Arch Linux 的系统使用的是 pacman 软件包管理器,因此可以通过 pacman 软件包管理器来获取相关的信息。
|
||||
|
||||
pacman stands for package manager utility (pacman). pacman is a command-line utility to install, build, remove and manage Arch Linux packages. pacman uses libalpm (Arch Linux Package Management (ALPM) library) as a back-end to perform all the actions.
|
||||
pacman 是 package manager 的缩写。`pacman` 可以用于安装、构建、删除和管理 Arch Linux 软件包。`pacman` 使用 libalpm(Arch Linux Package Management 库,ALPM)作为后端来执行所有操作。
|
||||
|
||||
**Suggested Read :** [Pacman Command To Manage Packages On Arch Linux Based Systems][13]
|
||||
**推荐阅读:** [使用 pacman 在基于 Arch Linux 的系统上管理软件包][13]
|
||||
|
||||
```
|
||||
# pacman -Sg
|
||||
@ -550,7 +539,7 @@ vim-plugins
|
||||
|
||||
```
|
||||
|
||||
If you would like to list what are the packages is associated on it, run the below command. In this example we are going to list what are the packages is associated with “gnome” group.
|
||||
如果需要列出相关联的软件包,可以执行以下这个命令。下面的例子是列出和 gnome 组相关联的软件包。
|
||||
|
||||
```
|
||||
# pacman -Sg gnome
|
||||
@ -589,7 +578,7 @@ gnome simple-scan
|
||||
|
||||
```
|
||||
|
||||
Alternatively we can check the same by running following command.
|
||||
也可以执行以下这个命令实现同样的效果。
|
||||
|
||||
```
|
||||
# pacman -S gnome
|
||||
@ -609,7 +598,7 @@ Interrupt signal received
|
||||
|
||||
```
|
||||
|
||||
To know exactly how many packages is associated on it, run the following command.
|
||||
可以执行以下命令检查相关软件包的数量。
|
||||
|
||||
```
|
||||
# pacman -Sg gnome | wc -l
|
||||
@ -623,7 +612,7 @@ via: https://www.2daygeek.com/how-to-list-an-available-package-groups-in-linux/
|
||||
|
||||
作者:[Prakash Subramanian][a]
|
||||
选题:[lujun9972](https://github.com/lujun9972)
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
译者:[HankChow](https://github.com/HankChow)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
@ -642,3 +631,4 @@ via: https://www.2daygeek.com/how-to-list-an-available-package-groups-in-linux/
|
||||
[11]: https://wiki.debian.org/tasksel
|
||||
[12]: https://www.2daygeek.com/tasksel-install-group-of-software-in-a-single-click-or-single-command-on-debian-ubuntu/
|
||||
[13]: https://www.2daygeek.com/pacman-command-examples-manage-packages-arch-linux-system/
|
||||
|
Loading…
Reference in New Issue
Block a user