Docker部署redis
命令行执行docker run -itd --name redis -p 6379:6379 \ -v /data/r...
Centos8安装Rspamd
执行命令curl https://rspamd.com/rpm-stable/centos-8/rspamd.repo > /etc/yum.repos.d/rsp...
内网穿透工具报错:zerotier-cli: missing port and zerotier-one.port not found in /var/lib/zerotier-one
解决方法可能是zerotier-one服务未启动,尝试启动服务service zerotier-one start或systemctl start zeroti...
Linux下挂载Windows(NTFS)磁盘提示“只读文件系统”
解决方式运行 sudo ntfsfix /dev/sda2注:/dev/sda2要替换成你本地的windows磁盘路径,具体可以执行mount命令查看...
Shell编程
sh(执行脚本) sh # 该命令默认执行bshell脚本 sh -x test1.sh # sh -x 脚本名 解释:运行并输出执行的过程 sh -x test1.sh ˃˃ t...
Git操作不需要重复输入密码解决办法
执行 git config --global credential.helper store 会在~/.gitconfig生成文件 ˂!-- /wp:paragraph -...
Git操作不需要重复输入密码解决办法
执行 git config --global credential.helper store 会在~/.gitconfig生成文件˂/...