Zouter.io 香港VPS 首发套餐测评
虚拟世界

Zouter

2C2G 超高性价比,首发价年付仅需129元。

测试IP

https://iplark.com/155.117.82.11

Test IP
BGP

YABS

# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
#              Yet-Another-Bench-Script              #
#                     v2025-04-20                    #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #

Sat Sep 20 04:37:23 PM CST 2025

Basic System Information:
---------------------------------
Uptime     : 0 days, 21 hours, 48 minutes
Processor  : Intel(R) Xeon(R) Platinum 8269CY CPU @ 2.50GHz
CPU cores  : 2 @ 2494.140 MHz
AES-NI     : ✔ Enabled
VM-x/AMD-V : ✔ Enabled
RAM        : 1.9 GiB
Swap       : 0.0 KiB
Disk       : 14.9 GiB
Distro     : Debian GNU/Linux 12 (bookworm)
Kernel     : 6.1.0-10-amd64
VM Type    : KVM
IPv4/IPv6  : ✔ Online / ✔ Online

IPv6 Network Information:
---------------------------------
ISP        : Unknown
ASN        : AS205548 ZOUTER LIMITED
Location   : Hong Kong, Kowloon ()
Country    : Hong Kong

fio Disk Speed Tests (Mixed R/W 50/50) (Partition /dev/vda1):
---------------------------------
Block Size | 4k            (IOPS) | 64k           (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 72.06 MB/s   (18.0k) | 1.21 GB/s    (18.9k)
Write      | 72.25 MB/s   (18.0k) | 1.21 GB/s    (19.0k)
Total      | 144.32 MB/s  (36.0k) | 2.43 GB/s    (37.9k)
           |                      |                     
Block Size | 512k          (IOPS) | 1m            (IOPS)
  ------   | ---            ----  | ----           ---- 
Read       | 1.23 GB/s     (2.4k) | 1.22 GB/s     (1.1k)
Write      | 1.30 GB/s     (2.5k) | 1.30 GB/s     (1.2k)
Total      | 2.54 GB/s     (4.9k) | 2.52 GB/s     (2.4k)

Geekbench 5 Benchmark Test:
---------------------------------
Test            | Value                         
                |                               
Single Core     | 804                           
Multi Core      | 1608                          
Full Test       | https://browser.geekbench.com/v5/cpu/23797042

Geekbench 6 Benchmark Test:
---------------------------------
Test            | Value                         
                |                               
Single Core     | 1072                          
Multi Core      | 1921                          
Full Test       | https://browser.geekbench.com/v6/cpu/13937593

YABS completed in 12 min 14 sec

默认镜像源修改

以Debain 12为例,Zouter默认镜像源为中科大的。

deb http://mirrors.ustc.edu.cn/debian/ bookworm main non-free non-free-firmware contrib 
deb-src http://mirrors.ustc.edu.cn/debian/ bookworm main non-free non-free-firmware contrib 
deb http://mirrors.ustc.edu.cn/debian/ bookworm-updates main non-free non-free-firmware contrib 
deb-src http://mirrors.ustc.edu.cn/debian/ bookworm-updates main non-free non-free-firmware contrib 
deb http://mirrors.ustc.edu.cn/debian/ bookworm-backports main non-free non-free-firmware contrib 
deb-src http://mirrors.ustc.edu.cn/debian/ bookworm-backports main non-free non-free-firmware contrib

因为VPS在海外,访问国内镜像速度并不理想,我们可以将这个改为Debain默认源。

编辑 sources.list 文件

sudo nano /etc/apt/sources.list

将文件中的内容替换为以下默认的 Debian 官方源(以 Debian 12 "Bookworm" 为例):

deb http://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
deb http://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware
deb http://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
deb http://deb.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware

编辑完成后,按 Ctrl+O(保存)、Enter(确认)、Ctrl+X(退出)保存文件

更新即可

sudo apt update -y && apt dist-upgrade -y