之前听人整天听人吹 iKoula 网络好,但是因为性价比太低一直没买,这次黑五总算有性价比还行的型号,就买了台,真香
我这台是 109 段的 G 管,首先要配置一下 IPv6,运行这样一个脚本:
serveripv4=$( ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" ) interface=$( ifconfig -a | grep -B 1 $serveripv4 | head -n1 | awk '{print $1}' | sed "s/:$//" ) AAA=$( echo $serveripv4 | awk -F '.' '{print $1}' ) BBB=$( echo $serveripv4 | awk -F '.' '{print $2}' ) CCC=$( echo $serveripv4 | awk -F '.' '{print $3}' ) DDD=$( echo $serveripv4 | awk -F '.' '{print $4}' ) cat>>/etc/network/interfaces<<EOF iface $interface inet6 static address 2a00:c70:1:$AAA:$BBB:$CCC:$DDD:1 netmask 96 gateway 2a00:c70:1:$AAA:$BBB:$CCC::1 EOF
然后 systemctl restart networking.service 就行了。
如果你像我一样运气不好,拿到了一块 WD 绿盘,IntelliPower 这种垃圾技术的盘,那么还得想办法拯救一下。绿盘默认 8 秒会把磁头停到启停区,这时候如果去读盘,就会卡一下,我们通过 idle3ctl 关闭这个功能:
sudo apt-get install idle3-tools sudo apt-get install idle3-tools # Show current idle3 value sudo idle3ctl -s 138 /dev/sda # setting to 300 seconds # The man page for idle3ctl states that values between 1 and 128 add 0.1 seconds, values between 129 and 256 add 30s: 128 * 0.1 + (138 - 128) * 30 = 312.8 seconds sudo idle3ctl -d /dev/sda # Disable parking, recommended
之后就是网卡,iKoula 的桌面主板用的是 RTL8168 这块开 BBR 会掉速 4MB 的螃蟹卡,我们需要更新驱动
由于 Realtek 的官网不太好使,我备份了驱动到自己的站点
apt update && apt install build-essential libelf-dev linux-headers-$(uname -r) wget https://down.gloriousdays.pw/Tools/0012-r8168-8.046.00.tar.bz2 tar xjvf 0012-r8168-8.046.00.tar.bz2 cd r8168-8.046.00 ./autorun.sh || modprobe r8169
这样就会安装上 R8168 的驱动了,之间会断网 3-5 分钟,之后重连即可,不需要 screen,但是如果一定要用也行。
使用 ethtool 查看驱动情况,如果是 r8168 就已经完成:
# ethtool -i eth0 driver: r8168 version: 8.046.00-NAPI firmware-version: expansion-rom-version: bus-info: 0000:01:00.0 supports-statistics: yes supports-test: no supports-eeprom-access: no supports-register-dump: yes supports-priv-flags: no
如果 10 分钟还连不上,去后台手动重启。
参考资料:
https://wdullaer.com/blog/2015/04/05/hack-your-wd-greens/