众所周知 openwrt 的软件包不够完善,除了自己编译,目前官方或第三方源里都没有 systemd 这些程序
本文以 qbittorrent-nox 为栗子?
首先找到 qbittorrent-nox 的执行命令,是 /usr/bin/qbittorrent-nox --profile=/mnt/ThreeTB2/qbit_backup
编写 /mnt/ThreeTB2/check_qbittorrent.sh
#!/bin/bash
# author: hellodk
# time: 202... 阅读全文
2020-08-18 update 优化样式:实现每个核心温度占表格的一行,显示更加直观、美观
每个核心温度占表格的一行,显示更加直观、美观
安装 sed 捕捉 sensors 输出的文本的指定某行的信息到终端。sensors |sed -n 11p 可将 sensors 输出的第 11 行的内容输出到终端,这样可以实现一个核心的温度数据占表格一行的需求
opkg install sed
一开始修改 index.htm 文件如下,能够得到正确的样式,但是发现温度数据是静态的,说明不能将命令... 阅读全文
2021年03月25日 更新
openwrt 安装 netdata 出现 Package size mismatch 问题 解决办法
尝试增加 --force-checksum 选项(Ignore checksum mismatches)
执行
opkg --force-checksum install netdata
root@dkRouter:/mnt/ThreeTB2# opkg install netdata
Installing netdata (1.29.3-1) to root.... 阅读全文
给我的软路由 opkg 相关的配置文件做个备份
首先是 /etc/opkg.conf 主要配置文件
root@softRouter:/etc/opkg# cat /etc/opkg.conf
dest root /
dest ram /tmp
lists_dir ext /var/opkg-lists
option overlay_root /overlay
arch all 100
arch x86_64 200
arch x64-3.2 300
关于 cpu architecture 使用... 阅读全文
前言
最近在软路由和 ThinkPad T400(Ubuntu 16.04 LTS 下文简称 T400)上面捣腾了一些东西
一、在软路由上安装了 qbittorrent
软路由上的 transmission 上传速度实在是不佳,koolshare 的 lede 系统我早就想换掉了。迫于现在的租房环境需要一个稳定可靠的网络环境(不止我一个人使用我的网络,所以得考虑到他人,我一个人的时候想怎么折腾就怎么折腾),所以软路由暂时不准备换系统。但是下次有打算换成 lean 大神的 lede (openwr... 阅读全文