QB系统占用内存非常大,本篇主要在不中断任何进程或服务的情况下清除缓存。
单次清理 仅清除页面缓存(Clear PageCache only) 1 sync ; echo 1 > /proc/sys/vm/drop_caches
清除目录项和inode(Clear dentries and inodes) 1 sync ; echo 2 > /proc/sys/vm/drop_caches
清理三者(Clear PageCache, dentries and inodes) 1 sync ; echo 3 > /proc/sys/vm/drop_caches
同步 (sync) 将刷新文件系统缓冲区。命令以 “;” 分隔依次运行。在执行序列中的下一个命令之前,shell 等待每个命令终止。正如内核文档中提到的,写入 drop_cache 将清除缓存而不杀死任何应用程序/服务,命令 echo 正在执行写入文件的工作。
如果您必须清除磁盘缓存,第一个命令在企业和生产中是最安全的“…echo 1 > …”。只会清除 PageCache。不建议在生产中使用“…echo 3 >”上方的第三个选项,直到您知道自己在做什么,因为它会清除 PageCache、dentries 和 inode。
定时清理缓存 1 2 sudo su vim clearcache.sh
写下如下内容:
1 2 3 4 #!/bin/bash sync echo 3 > /proc/sys/vm/drop_caches
以 root 身份创建定时清理任务
写入如下内容,每天0点,12点,18点的0分清理缓存
1 0 0,12,18 * * * /path/to/clearcache.sh
一般来说,不建议定时清理RAM。还有一下替代方法:
清除Linux交换空间 如果想清除掉Swap空间,可以运行下面的命令:
此外,了解有关风险后,您可以将上面的命令添加到cron中。现在,我们将上面两种命令结合成一个命令,写成正确的脚本来同时清除RAM缓存和交换空间。
1 echo 3 > /proc/sys/vm/drop_caches && swapoff -a && swapon -a && printf '\n%s\n' 'Ram-cache and Swap Cleared'
或:
1 su -c 'echo 3 > /proc/sys/vm/drop_caches' && swapoff -a && swapon -a && printf '\n%s\n' 'Ram-cache and Swap Cleared'
在测试上面的命令之前,我们在执行脚本前后运行“free -m” 来检查缓存。
QB相关代码 安装 1 2 3 sudo add-apt-repository -y ppa:qbittorrent-team/qbittorrent-stable sudo apt install -y qbittorrent-nox qbittorrent-nox --version
自启动 1 sudo vim /etc/systemd/system/qbittorrent-nox.service
写入:
1 2 3 4 5 6 7 8 9 10 [Unit] Description=qBittorrent client After=network.target [Service] ExecStart=/usr/bin/qbittorrent-nox --webui-port=8080 Restart=always [Install] WantedBy=multi-user.target
指令 1 2 3 4 5 sudo service qbittorrent-nox start sudo service qbittorrent-nox status sudo service qbittorrent-nox stop sudo service qbittorrent-nox restart sudo systemctl enable qbittorrent-nox
卸载 停止服务,删除系统文件
1 2 3 4 5 sudo service qbittorrent-nox stop sudo systemctl disable qbittorrent-nox sudo rm -rf /etc/systemd/system/qbittorrent-nox.service sudo systemctl daemon-reload sudo systemctl reset-failed
卸载:
1 sudo apt purge --autoremove -y qbittorrent-nox
如果有GPK key和 repository:
1 2 sudo rm -rf /etc/apt/trusted.gpg.d/qbittorrent-team_ubuntu_qbittorrent-stable.gpg sudo rm -rf /etc/apt/sources.list.d/qbittorrent-team-ubuntu-qbittorrent-stable-focal.list
删除其他目录:
1 2 3 4 5 6 sudo rm -rf /.config/qBittorrent sudo rm -rf /.local/share/qBittorrent sudo rm -rf /.cache/qBittorrentrm -rf ~/.config/qBittorrentrm -rf ~/.local/share/qBittorrentrm -rf ~/.cache/qBittorrent
参考文献 1、https://colobu.com/2015/10/31/How-to-Clear-RAM-Memory-Cache-Buffer-and-Swap-Space-on-Linux/ 2、https://xujinzh.github.io/2021/06/20/clear-linux-memory-cache/index.html 3、https://www.tecmint.com/clear-ram-memory-cache-buffer-and-swap-space-on-linux/ 4、https://lindevs.com/install-qbittorrent-nox-on-ubuntu