上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页
摘要: 假设你想要安装的软件包叫做app,注意,这里的命令通常需要sudo或者root权限。 //centos系统、redhat系统 rpm-qa | grep app #查找本机是否安装了app; rpm-ivh app.rpm #假设你有app的rpm包,这样直接安装 sudo yum install 阅读全文
posted @ 2024-01-05 14:31 LB_运维技术 阅读(63) 评论(0) 推荐(0)
摘要: nmcli con add type bond ifname bond0 con-name bond0 mode 4 miimon 100 nmcli con add type bond-slave ifname ens21 master bond0 nmcli con add type bond- 阅读全文
posted @ 2024-01-05 10:47 LB_运维技术 阅读(51) 评论(0) 推荐(0)
摘要: 问题1:./openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory 解决方案:cp /usr/local/opens 阅读全文
posted @ 2023-12-28 09:38 LB_运维技术 阅读(296) 评论(0) 推荐(0)
摘要: 命令: # usermod --shell shell类型 用户名 # usermod --shell /bin/sh libin 阅读全文
posted @ 2023-12-21 18:28 LB_运维技术 阅读(122) 评论(0) 推荐(0)
摘要: 第一种: cat /etc/passwd | cut -f 1 -d : | xargs -l {} crontab -l -u {} 阅读全文
posted @ 2023-12-01 16:40 LB_运维技术 阅读(208) 评论(0) 推荐(0)
摘要: 现象: 解决方案: (1)# journalctl 查看原因 (2)可以看出是内存溢出导致进出救援模式,重启解决 # /sbin/reboot -f (3) 如果出现 mount failed 的现象,就需要进行 umount -l /dev/sdX 或者 umount -f /dev/sdX (4 阅读全文
posted @ 2023-09-29 22:05 LB_运维技术 阅读(319) 评论(0) 推荐(0)
摘要: Failed to register (statd, 1, tcp6/udp): svc_reg() err: RPC: Remote system error - No route to host 解决方案: net.ipv6.conf.all.disable_ipv6=0net.ipv4.con 阅读全文
posted @ 2023-09-12 16:29 LB_运维技术 阅读(317) 评论(0) 推荐(0)
摘要: (1) awk -F':' '{print $1}' /etc/passwd | tail -n3 (2) cut -d : -f 1 /etc/passwd | tail -n3 阅读全文
posted @ 2023-09-11 10:04 LB_运维技术 阅读(167) 评论(0) 推荐(0)
摘要: 解决方案: 一、先进入单系统用户状态 1、开机进入grub菜单界面时,快速按键盘e键,进入编辑界面2、在Linux 16的那1行,将ro改为rw init=/sysroot/bin/sh3、ctrl+x 4、chroot /sysroot 二、修改密码 passwd root #或echo "pas 阅读全文
posted @ 2023-09-02 16:20 LB_运维技术 阅读(281) 评论(0) 推荐(0)
摘要: ps -eo user,pid,pcpu,pmem,args --sort=-pmem |head -n 10 阅读全文
posted @ 2023-09-02 07:56 LB_运维技术 阅读(73) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页