使用linux生成随机数 2024年1月11日 | linux </dev/urandom tr -dc '12345!@#$%qwertyuioplkjhgfdsazxcvbnm!@#$%^&*()_+{}|":?><XCVBZXCVBNML67890KJHGFDSAQWERTYUIOP' | head -c16; echo -c16 16代表生成多少位…… 阅读全文
Ubuntu snap提示has “install-snap” change in progress 错误 2023年1月16日 | ubuntu linux 错误处理 在Ubuntu 22.04使用snap安装…… 阅读全文
Debian 10/11 开启bbr 2022年7月27日 | linux debian /etc/sysctl.conf 文件修改 #修改文件: net.core.default_qdisc=fq net.ipv4.tcp_congestion_control=bbr #或者直接运行…… 阅读全文
Ubuntu系统启用root用户远程登陆 2022年4月15日 | ubuntu linux 编辑 /etc/ssh/sshd_config 文件 #修改 PermitRootLogin 为true $ sudo vim /etc/ssh/sshd_config #LoginGraceTime 2m…… 阅读全文
Manjaro 21报错 Cannot find the fakeroot binary 2021年10月28日 | linux manjaro 错误处理 原因: 因为没安装 fakeroot、bin…… 阅读全文
Linux 备份打包文件时排除指定的扩展名 2021年9月29日 | linux 忽略少量扩展名 tar -zcvf app.tar.gz --exclude *.log /app/ #忽略扩展名为…… 阅读全文