内容一:yumdownloader 命令的安装
# yum install yum-utils -y
内容二:获取某软件的安装包和此软件的依赖包
# yumdownloader --resolve --destdir /tmp/ansible ansible
(补充:这里以将 ansible 安装包和 ansible 的依赖包下载到本地的 /tmp/ansible 目录为例)
# yum install yum-utils -y
# yumdownloader --resolve --destdir /tmp/ansible ansible
(补充:这里以将 ansible 安装包和 ansible 的依赖包下载到本地的 /tmp/ansible 目录为例)
如果是 Rocky Linux & RHEL
# yum install lldpad
如果是 openSUSE & SLES
# zypper in lldpad
# lldptool -t -n -i eth0
(补充:这里以查看本地网卡 eth0 接入的交换机的接口信息为例)
# tput clear
# tput cols
# tput civis
# tput cnorm
# tput sc
# tput cup 20 30
(补充:这里以将光标跳转到第 20 行的第 30 列为例)
# tput rc
1) 0,黑色
2) 1,蓝色
3) 2,绿色
4) 3,青色
5) 4,红色
6) 5,洋红色
7) 6,黄色
8) 7,白色
# tput setaf 1
(补充:这里以把字体设置成蓝色为例)
# tput setab 4
(补充:这里以把背景设置成红色为例)
# tput setaf setab
(补充:这里以把字体设置成蓝色把背景设置成红色为例)
# tput bold
# tput underline
# tput sc ; tput cup 23 45 ; echo “Output this location is 23/45” ; tput rc
(
补充:
1) 这里的 tput sc 是保存当前的光标位置
2) 这里的 tput cup 23 45 是将光标移动到第 23 行的第 45 列
3) 这里的 echo “Output this location is 23/45” 是输出内容 “Output this location is 23/45”
4) 这里的 tput rc 是将光标回到刚刚保存的光标位置
5)这里以在第 23 行的第 45 列输出信息 “Output this location is 23/45” 为例
)
tput
>certUtil -hashfile <file> MD5
Or:
> Get-FileHash .\<file> -Algorithm MD5 | Format-List
>certUtil -hashfile <file> SHA256
# lsb_release -i -s 2> /dev/null
# lsb_release -r -s 2> /dev/null
# uname -r 2> /dev/null