wget http://update.aegis.aliyun.com/download/uninstall.sh chmod +x uninstall.sh ./uninstall.sh rm -rf uninstall.sh wget http://update.aegis.aliyun.com/download/quartz_uninstall.sh chmod +x quartz_uninstall.sh ./quartz_un...
阿里云卸载云盾/安骑士
2020.04.5 , linux , No Comments , 2,033 views ,CentOS7查看和关闭防火墙
2020.03.29 , linux , No Comments , 2,111 views ,CentOS 7.0默认使用的是firewall作为防火墙 查看防火墙状态: firewall-cmd --state 停止firewall: systemctl stop firewalld.service 禁止firewall开机启动: systemctl disable firewalld.service
通过iptables防火墙限制端口与放行端口
2020.02.27 , linux , No Comments , 1,838 views ,iptables -A INPUT -p tcp --dport 1234 -j DROP iptables -I INPUT 1 -p tcp --dport 1234 -j ACCEPT 12 iptables -A INPUT -p tcp --dport 1234 -j DROPi...
隐藏溢出和内容溢出元素框时自动出现滚动条
2020.01.18 , WEB前端 , No Comments , 2,107 views ,overflow: hidden; //隐藏溢出 overflow-y: auto; //内容溢出元素框时自动出现滚动条,滑动滚动条显示溢出的内容。
whmcs菜单判断登录
2020.01.15 , WEB前端 , No Comments , 2,067 views ,{if $loggedin}{else} 中间是登录代码 {/if}
阿里云debian8换源
2020.01.15 , linux , No Comments , 1,847 views ,cd /etc/apt rm -rf sources.list.d deb http://mirrors.ustc.edu.cn/debian/ jessie main contrib non-free deb http://mirrors.ustc.edu.cn/debian/ jessie-updates main contrib non-free deb http://mirrors.ustc.edu.cn/debian-secu...
阿里云RDS上用mysqldump导入导出
2020.01.15 , linux , No Comments , 1,863 views ,mysqldump -h cloudcc.mysql.aliyun.com -u user_name -p --opt --default-character-set=utf8 --extended-insert=false --triggers --hex-blob db_name > /tmp/db_name.sql mysql -h cloudcc.mysql.aliyun.com -u user_name -p db_name ...
Debian 9 Vim不能使用鼠标右键复制粘贴的解决办法
2019.11.12 , linux , No Comments , 3,094 views ,1. 编辑 vim 的默认配置文件 vim /usr/share/vim/vim80/defaults.vim 2. 转至第 70 行,找到: if has('mouse') set mouse=a endif 3. 将 set mouse=a 改为:set mouse-=a 4. 输入 :wq 保存即可生效。