摘要:
先设置umask为0002 全部用户都设置为0002: vi /etc/profile.d/set-umask-for-all-users.sh 输入 002 如果只是单一用户,vi ~/.bashrc 添加: umask 002 详细介绍看这里:https://www.cyberciti.biz/ 阅读全文
摘要:
One approach could be using find: for directoriesfind /desired_location -type d -print0 | xargs -0 chmod 0755 for filesfind /desired_location -type f 阅读全文
摘要:
以用户pi身份运行qbittorrent-nox qbittorrent-nox --webui-port=8081 --daemon 相关配置文件会出现在pi用户的home文件夹中,即/home/pi 分别是.config和.local 其中种子文件位于/home/pi/.local/share/ 阅读全文
摘要:
下载地址: https://github.com/Eugeny/tabby 阅读全文
摘要:
使用命令 sudo passwd 来设置root的密码 然后使用 su 来登录即可 阅读全文