linux
程序猿里我是最帅的
有想法就去做,要做一个实干家!
展开
-
linux git版本更新
1.卸载git旧版本yum remove git2.安装依赖包yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidocyum install gcc perl-ExtUtils-MakeMaker3.编译安装最新的git版本cd /usr/local/src/wget -O git.zip https://github.com/git/git/archive/ma原创 2020-05-20 14:36:18 · 3814 阅读 · 3 评论 -
vnc服务故障排查及处理方法
主机系统:Redhat系列vnc服务端配置完成后,客户端(win7)无法远程到服务端的linux系统。netstat -anp|grep vnc 查看vnc端口启动情况,结果显示5901,6001端口正常启动。若上述正常,可能是linux防火墙问题。执行iptables -I INPUT -p tcp --dport 5901 -j ACCEPT 和 iptables -I INPUT...原创 2018-04-10 14:40:11 · 4132 阅读 · 0 评论 -
linux-Redhat系统:外置硬盘挂载失败解决方案
1.硬盘挂载不上,怎么办 umount 挂载路径(eg:/home/JV840); 若出现device busy等提示信息,则 fuser -km + 处于工作状态的挂载路径(eg:/home/JV840); 再进行一次umount卸载。 卸载成功后,输入mount命令查看是否有其他挂载路径是只读模式(ro:只读;rw:读写) →若没有:重新挂载,看是否成功;不成功继续执行上述步骤。 →若有:继续...原创 2018-04-11 18:54:21 · 3641 阅读 · 0 评论 -
搭建ntp服务器
1.yum install ntp2.vim /etc/ntp.conf服务端ntp配置如下: driftfile /var/lib/ntp/drift keys /etc/ntp/keys restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noque...原创 2018-04-11 19:25:00 · 287 阅读 · 0 评论 -
yum update 出core的解决办法
使用yum命令出core:[root@lee ~]# yum updateLoaded plugins: fastestmirror, refresh-packagekitLoading mirror speeds from cached hostfile* base: mirrors.tuna.tsinghua.edu.cn* extras: mirrors.tuna.tsinghu...原创 2018-10-19 14:43:39 · 597 阅读 · 0 评论 -
yum安装步骤
rpm -aq|grep yum|xargs rpm -e --nodeps(删除原有yum,若已删除,请忽略)1.下载yum安装文件:http://mirrors.163.com/(网易开源镜像站)举个下载路径的栗子:centos→选择版本→readme(复制下载链接)→http://vault.centos.org/6.5/os/x86_64/Packages/→yum-3.2.29-...原创 2018-11-14 17:08:05 · 7297 阅读 · 0 评论