du -sh *
Category Archives: linux
linux查看目录和文件大小命令
2020.05.19 , linux , No Comments ,阿里云卸载云盾/安骑士
2020.04.5 , linux , No Comments ,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...
CentOS7查看和关闭防火墙
2020.03.29 , linux , No Comments ,CentOS 7.0默认使用的是firewall作为防火墙 查看防火墙状态: firewall-cmd --state 停止firewall: systemctl stop firewalld.service 禁止firewall开机启动: systemctl disable firewalld.service
通过iptables防火墙限制端口与放行端口
2020.02.27 , linux , No Comments ,iptables -A INPUT -p tcp --dport 1234 -j DROP iptables -I INPUT 1 -p tcp --dport 1234 -j ACCEPT 12 iptables -A...
阿里云debian8换源
2020.01.15 , linux , No Comments ,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 htt...
阿里云RDS上用mysqldump导入导出
2020.01.15 , linux , No Comments ,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....
Debian 9 Vim不能使用鼠标右键复制粘贴的解决办法
2019.11.12 , linux , No Comments ,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 保存即可生效。
CentOS7安装iptables防火墙
2019.10.9 , linux , No Comments ,CentOS7 默认的防火墙不是iptables,而是firewalle. 安装 iptable iptable-service #先检查是否安装了iptables service iptables status #安装iptables yum install -y iptables #升级ipta...