Linux Proxmox 配置 Let’s Encrypt证书 几台KS3C都装了Proxmox,一直都证书错误,挺烦的,今天搜索了一番,终于把证书搞定了,用的是Let's Encrypt的免费证书:)记录一下: git clone https://github.... 03/263,681评论 阅读全文
Linux 两种方式让KS3C有多IP 第一种方式:Nat转发 VPS端: iptables -t nat -F iptables -t mangle -F iptables -F iptables -X iptables -... 03/224,541评论 阅读全文
Linux SSH无法登陆解决办法 解决办法:检查服务器是否开启了selinux,如开启请关闭。 sed -i "s/SELINUX=enforcing/#SELINUX=enforcing\nSELINUX=disabled/g" /... 12/195,070评论 阅读全文
Linux Centos 7 安装新内核启用BBR 1:首先yum update -y更新到最新CentOS 7.3 1611 cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) 2... 12/134,530评论 阅读全文
Linux KVM DD Windows 直接在Linux命令行下,下载一个已封装好的Windows,用dd命令写入到/dev/sda。 网上找到有2个镜像节点下载: http://kvm.im/ISO/Windows/DD/ http://... 11/304,878评论 阅读全文
Linux 使用证书登录Centos 1、新建链接 2. 点击Authentication, --Method选择Public Key,点击Browse 3、点击Generate生成public/private key 4、点击Next ... 11/264,998评论 阅读全文
Linux Centos 更新 initscripts 报错 更新initscripts时,报如下错误: Error unpacking rpm package initscripts-9.49.30-1.el7_2.3.x86_64 error: unpack... 08/155,231评论 阅读全文
Linux L2TP 开放端口以及NAT转发 开放端口: iptables -A INPUT -p udp -m udp --dport 500 -j ACCEPT iptables -A INPUT -p udp -m udp --dport ... 08/075,810评论 阅读全文
Linux yum update 命令详解 1.列出所有可更新的软件清单 命令: yum check-update 2.安装所有更新软件 命令: yum update 3.仅安装指定的软件 命令: yum install <package... 08/057,309评论 阅读全文
Linux Centos 7 Crontab用法 名称 : crontab 使用权限 : 所有使用者 使用方式 : crontab file [-u user]-用指定的文件替代目前的crontab。 crontab-[-u user]-用标准输入替... 08/024,704评论 阅读全文