快2026了,给有需要升级家用路由器的家人们介绍个老盆友,r66s/r68s 路由器。在综合考虑了性价比,性能和维护性,可以说r66s/r68s 是现在最值得配置的家用路由器之一。
基本介绍
简单介绍下 r66s/r68s 拥有不错的 cpu, 够大的内存,多个网络接口;能满足不同场景下的使用需求。
- cpu RK3568 到现在依然能打, 在流行的家用路由器CPU排行榜中依然排在前面;同时满载功耗 7.5W 可以放心的配置为家用路由,
- 相对的“大内存”,又可以让喜欢折腾的玩家愉快的玩耍飞牛NAS等。
- r66s 的2个2.5G网口/r68s的 4个网口可以下挂多个主机/家用设备,家里设备多的也不用发愁。
因为发行时间较早(2022年左右),有多个成熟稳定版本的系统可以适配,无需为系统发愁。
| 项目 | R68s | R66s |
|---|---|---|
| CPU | RK3568 | Corex-A55 4核心 2.0GHz | RK3568 | Corex-A55 4核心 2.0GHz |
| 内存 | 2GB LPDDR4 | 4GB LPDDR4 | 1GB LPDDR4 | 2GB LPDDR4 |
| 硬盘 | 16GB EMMC | TF卡槽 |
| 2.5G网口 | RTL8125B 2个 | RTL8125B 2个 |
| 千兆网口 | RTL8211 2个 | 无 |
| 接口 | USB3.0 2个 | USB3.0 2个 |
| 电源 | DC 12V | DC 12V |
系统下载
这里我们推荐纯净的 ImmortalWrt 的系统。虽然初始安装系统未安装常用的插件,但是系统已经配置好了软件源,可以十分方便的在线安装常用插件。
系统下载地址 firmware-selector.immortalwrt.org
系统安装
系统安装与配置
下面以r68s为列,简单的写以下部署 ImmortalWrt 的过程
- 下载系统
- 解压系统
- 上传系统(r68s拿到手后,一般默认已经安装了 istoreos)
> ssh root@192.168.100.1 # 登录到路由上
$ dd if=/tmp/immortalwrt-rockchip-armv8-lunzn_fastrhino-r68s-ext4-sysupgrade.img of=/dev/mmcblk0 conv=fsync
$ reboot -f
重启后就可以愉快的玩耍了。
根分区扩容(可选)
我们注意到 ImmortalWrt 系统默认安装完后,系统分区固定使用了300M大小,没有完全使用到 r68s的 16G emmc.
所以,你希望扩容根分区的话,可以进行如下操作:
收集系统信息
# ==========
# 安装依赖
# ==========
$ opkg update && opkg install fdisk resize2fs losetup
# ==========
# 分区信息
# ==========
$ fdisk -l
Disk /dev/mmcblk0: 14.45 GiB, 15518924800 bytes, 30310400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x5452574f
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 * 65536 98303 32768 16M 83 Linux
/dev/mmcblk0p2 131072 745471 614400 300M 83 Linux # 记住分区2的起始大小 131072
# ==========
# 挂载信息
# ==========
oot@ImmortalWrt:/tmp/aaa$ df -mh
Filesystem Size Used Available Use% Mounted on
/dev/root 374.4M 168.2M 200.2M 46% /
tmpfs 1.9G 1.7M 1.9G 0% /tmp
tmpfs 512.0K 0 512.0K 0% /dev
/dev/mmcblk0p1 15.7M 6.1M 9.3M 39% /mnt/mmcblk0p1
开始扩容
root@r68s:~$ fdisk /dev/mmcblk0
Welcome to fdisk (util-linux 2.40.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
This disk is currently in use - repartitioning is probably a bad idea.
It's recommended to umount all file systems, and swapoff all swap
partitions on this disk.
Command (m for help): p
Disk /dev/mmcblk0: 14.45 GiB, 15518924800 bytes, 30310400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x5452574f
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 * 65536 98303 32768 16M 83 Linux
/dev/mmcblk0p2 131072 745471 614400 300M 83 Linux # 记住分区2的起始大小 131072
Command (m for help): d
Partition number (1,2, default 2):
Partition 2 has been deleted.
Command (m for help): n
Partition type
p primary (1 primary, 0 extended, 3 free)
e extended (container for logical partitions)
Select (default p):
Using default response p.
Partition number (2-4, default 2):
First sector (2048-30310399, default 2048): 131072 # 分区2 起始sector
Last sector, +/-sectors or +/-size{K,M,G,T,P} (131072-30310399, default 30310399):
Created a new partition 2 of type 'Linux' and of size 14.4 GiB.
Partition #2 contains a ext4 signature.
Do you want to remove the signature? [Y]es/[N]o: n
Command (m for help): w
The partition table has been altered.
Syncing disks.
root@r68s:~$ losetup
root@r68s:~$ losetup /dev/loop0 /dev/mmcblk0p2
root@r68s:~$ resize2fs -f /dev/loop0
root@r68s:~$ reboot
重启后,正常登录系统
插件安装
系统默认已经配置好了软件源,直接命令行安装自己常用的插件就可以
root@r68s:~$ opkg update
root@r68s:~$ opkg install openxxxxx
最后
那么何如以相对低价买到这台机器呢? 这就要拎出来我们的小黄鱼了,通过搜索作者用 2XX 的价格买到了全新的 r68s.
比较可惜的是,目前这家 r68s 缺货。但 r66s 依旧很香价格较低。有与需要的家人可以考虑以下。
欢迎关注本公众号其他社媒平台
muselink.cc/hamisay 👈这是我的MuseLink数字名片!