git clone失败

Peer reports incompatible or unsupported protocol version.

curl: (35) Cannot communicate securely with peer: no common encryption algorithm(s).
错误:https://www.elrepo.org/RPM-GPG-KEY-elrepo.org: import read failed(2).

解决方案:
yum update -y nss curl libcurl

linux之没有可用软件包 nginx

[root@k8s-master3 ~]# yum install nginx
已加载插件:fastestmirror
base                                            | 3.6 kB  00:00:00
elrepo                                          | 2.9 kB  00:00:00
extras                                          | 3.4 kB  00:00:00
updates                                         | 3.4 kB  00:00:00
(1/3): extras/7/x86_64/primary_db               | 205 kB  00:00:00
(2/3): updates/7/x86_64/primary_db              | 6.0 MB  00:00:01
(3/3): elrepo/primary_db                        | 592 kB  00:00:01
Determining fastest mirrors
 * base: mirror.bit.edu.cn
 * elrepo: mirrors.neusoft.edu.cn
 * extras: mirror.bit.edu.cn
 * updates: mirrors.aliyun.com
没有可用软件包 nginx。
错误:无须任何处理

解决方法1:

很多软件包在yum里面没有的,解决的方法,就是使用epel源,也就是安装epel-release软件包。EPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系”的操作系统提供额外的软件包,适用于RHEL、CentOS等系统。可以在下面的网址上找到对应的系统版本,架构的软件包。
http://dl.fedoraproject.org/pub/epel/
安装epel
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm
rpm -ivh epel-release-7-9.noarch.rpm

解决方案2:

也可以直接使用yum 安装
yum install epel-release
安装成功之后,再安装nginx
yum install nginx

linux之安装sudo

centos安装sudo

  • yum install sudo

给其它用户赋权

通过root账号执行 visudo 命令,在最后添加以下内容

jenkins  ALL=(ALL)  NOPASSWD: ALL

linux时间不正确

  • 安装ntpdate yum install ntpdate
  • 同步时间ntpdate 0.asia.pool.ntp.org

查看外网ip

  • curl ifconfig.me
  • curl cip.cc

linux执行top问题

TERM environment variable not set

添加环境变量TERM=xterm

top: failed tty get

加个-b 选项皆可