Torque 是万亿级开源资源和 QUEue 管理器
介绍
在本教程中我们学习如何安装 torque
在 CentOS 8.
什么是 torque
TORQUE(万亿级开源资源和队列管理器)是一种资源管理器,提供对批处理作业和分布式计算节点的控制。 TORQUE 基于 OpenPBS 版本 2.3.12,并融合了 USC、NCSA、OSC、美国能源部、Sandia、PNNL、U of Buffalo、TeraGrid 和许多其他领先 HPC 提供的可扩展性、容错性和功能扩展补丁组织。 该包仅包含一些共享文件和目录。
我们可以用 yum
或者 dnf
安装 torque
在 CentOS 8. 在本教程中,我们讨论了两种方法,但您只需选择一种方法来安装扭矩。
安装扭矩 CentOS 8 使用dnf
更新 yum 数据库 dnf
使用以下命令。
sudo dnf makecache --refresh
输出应如下所示:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
更新 yum 数据库后,我们可以安装 torque
使用 dnf
通过运行以下命令:
sudo dnf -y install torque
安装扭矩 CentOS 8 使用百胜
更新 yum 数据库 yum
使用以下命令。
sudo yum makecache --refresh
输出应如下所示:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
更新 yum 数据库后,我们可以安装 torque
使用 yum
通过运行以下命令:
sudo yum -y install torque
如何卸载扭矩 CentOS 8
仅卸载 torque
打包我们可以使用以下命令:
扭矩 包装内容 CentOS 8
/etc/torque/pbs_environment
/etc/torque/server_name
/usr/lib/.build-id
/usr/lib/.build-id/22
/usr/lib/.build-id/22/3538162b457dac5b0b4f1132b0207ee8c92275
/usr/lib/systemd/system/trqauthd.service
/usr/sbin/trqauthd
/usr/share/doc/torque
/usr/share/doc/torque/CHANGELOG
/usr/share/doc/torque/PBS_License.txt
/usr/share/doc/torque/PBS_License_2.3.txt
/usr/share/doc/torque/README.Fedora
/usr/share/doc/torque/README.torque
/usr/share/doc/torque/Release_Notes
/usr/share/doc/torque/torque.setup
/usr/share/man/man1/pbs.1.gz
/var/lib/torque
/var/lib/torque/aux
/var/lib/torque/checkpoint
/var/lib/torque/pbs_environment
/var/lib/torque/server_name
/var/lib/torque/spool
/var/lib/torque/undelivered
参考
概括
在本教程中我们学习如何安装 torque
在 CentOS 8 使用 yum 和 dnf。