Windows Exchange 2010 删除默认邮箱数据库 查看邮箱 Get-Mailbox -Database "Mailbox Database 1179061550" -Arbitration | ft -wrap -auto 迁移普通用户 Get-Ma... 04/294,938评论 阅读全文
Windows Windows Server 2008 R2 修改MTU值 由于一些特殊原因,需要修改Windows的MTU值,做个记录 netsh interface ipv4 show interfaces netsh interface ipv4 set subinte... 03/275,222评论 阅读全文
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评论 阅读全文