首页 > TAG信息列表 > centos7pc1

no terminal library found checking for tgetent()... configure: error: NOT FOUND! You need to i

  1、系统 [root@centos7pc1 vim-8.2.1862]# hostnamectl Static hostname: centos7pc1 Icon name: computer-vm Chassis: vm Machine ID: d44b8799f26a411a87bb728b10e24a41 Boot ID: 67d4a883960149babd8f6a845f41c2b3 Virtual

linux中一次性计划任务服务at命令

  1、创建计划任务服务 [root@centos7pc1 test2]# ls [root@centos7pc1 test2]# date Wed Apr 6 17:16:12 CST 2022 [root@centos7pc1 test2]# at now+2 min ## 设置任务时间, 2分钟后 at> touch a.txt ## 设置执行的命令 at> <EOT> ## ctrl + D job

linux中 $RANDOM取随机数

 $RANDOM 是linux中的内置变量,可以随机生成 0~32767之间的整数数字。 1、取0~9的随机数 [root@centos7pc1 test3]# ls [root@centos7pc1 test3]# expr $RANDOM % 10 7 [root@centos7pc1 test3]# expr $RANDOM % 10 2 [root@centos7pc1 test3]# expr $RANDOM % 10 0 [root@centos