Chuwi Minibook X:我们应得的上网本
Chuwi Minibook X: the netbook we deserve

原始链接: https://tylercipriani.com/blog/2026/05/28/chuwi-minibook-x/

Chuwi Minibook X 是一款售价 350 美元的 10.5 英寸“迷你超极本”,它重现了经典上网本的精神。该机搭载英特尔 N100 处理器,配备 16GB 内存和 512GB NVMe 固态硬盘,以其亲民的价格提供了令人惊喜的性能表现和高效的散热能力。它仅重 912 克,坚固紧凑的铝合金机身使其成为理想的便携设备。 尽管硬件存在明显的缺点,包括表现平平的 50Hz 屏幕、效果一般的扬声器以及手感欠佳的键盘,但它在处理基础日常任务时依然表现稳定。Linux 爱好者需要注意一个特殊的硬件问题:该机的显示屏是侧向安装的,因此需要通过修改内核参数(如 `fbcon=rotate:1`)以及在引导加载程序和桌面环境中进行相关配置,才能实现正常显示。 总而言之,Minibook X 作为一台“玩乐”型电脑非常出色。由于价格低廉且风险较低,它非常适合作为一个实验沙盒,用来尝试各类小众 Linux 发行版、窗口管理器和软件,而无需担心损坏主力工作站。它让计算机回归到了充满乐趣的探索性爱好属性,证明了廉价且独特的硬件在当今科技领域依然占有一席之地。

Hacker News 最新 | 过往 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 Chuwi Minibook X:我们应得的上网本 (tylercipriani.com) 11 分,发布者:thcipriani,32 分钟前 | 隐藏 | 过往 | 收藏 | 1 条评论 | 帮助 fancyfredbot 7 分钟前 我喜欢小尺寸笔记本电脑,但这台设备如果能配上更好的处理器会更好。它的速度大约比两年前的智能手机芯片骁龙 8 Elite 慢 4 倍。不过 16GB 内存倒是不错。 回复 准则 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系 搜索:
相关文章

原文

Netbooks are dead, but the Chuwi Minibook X scratches the same itch.

The Minibook X is a 10.5″ x86_64 sub-ultrabook with 16GB RAM, a 512GB NVMe drive, and only one majorly annyoing Linux quirk.

I needed a knock-around laptop, so I bought myself a Minibook for my birthday last year. The more I tote it around, the more fun I’m having with this ridiculous little computer.

Chuwi Minibook X, KDE lock screen

Quick specs

Much like the netbooks of yore, the Minibook is a budget machine. But it’s 2026, so even budget machines pack more oomph than I need from a utility laptop.

  • CPU 4-core/4-thread 3.6GHz Intel N150 Twin Lake
  • 16 GB RAM – LPDDR5-6400 – soldered 😿
  • 512GB NVMe – upgradable
  • 10.51” IPS 2K 16:10 screen
  • 28.88Wh Li-Ion battery
  • Weight: 911g
  • Ports: 2×USB-C (1×PD charging)
  • Cost: $350
Chuwi Minibook with back cover removed, exposing battery and NVMe drive

One oddity is that the Minibook comes bundled with a 12V/2A USB-C charger. I chucked the charger; I worried I’d fry some 5V SoC someday. The Minibook works fine with a PD charger.

Minibook X using a PD Charger at 20V

I’d assume the 12V charger was a cost-saving choice, but it also creates some weird possibilities for DC/off-grid setups.

Linux and weirdness: sideways panels and kernel parameters

Charlie Stross, one of my favorite SciFi authors, recommended the Chuwi Minibook X on Mastodon

The fediverse told me that Minibook runs Linux “boringly well,” which was almost true.

I tried Debian, then jumped to NixOS for kicks.

What works:

  • Camera/Microphone/Speakers
  • Touchscreen
  • Sleep/Suspend
  • Hibernate
  • Keyboard backlight
  • USB-C HDMI
  • Bluetooth (non-free blobs – Intel)
  • Wi-Fi 6 (non-free blobs – Intel)

But on first boot, the screen orientation is 270° clockwise:

Tails setup screen rotated

The Chuwi’s screen is a panel from a cheap tablet; the screen rotation issue is a hardware problem (the screen is mounted sideways). To fix the screen’s rotation, I had to tweak screen orientation at every software layer. Fixing this problem was a journey:

  1. Bootloader – Switched from systemd-boot to grub, carrying some unmerged GRUB rotation patches on top.
  2. Initrd – Tell the Intel display driver about the panel orientation via a kernel parameter, and force the Intel driver to load in the initramfs. On NixOS: boot.kernelParams = ["video=DSI-1:panel_orientation=right_side_up"]; and boot.initrd.kernelModules = ["i915"]; (see Kernel docs for modedb default video mode support)
  3. Desktop environment – For X11, good ole xrandr --output DSI-1 --rotate right. Wayland picked this up from the DRM connector. This one was easy.
  4. Framebuffer – Ensure all TTYs have the proper orientation by adding fbcon=rotate:1 to kernel parameters boot.kernelParams = ["fbcon=rotate:1"]; (see Kernel docs for framebuffer console boot options)

Behold, the final result in all its glory:

Non-rotated system boot. Zero Cool's bootscreen courtesy of mainframed/Hackers-Plymouth

Size, weight, and build

This computer is mind-bogglingly small. The build is sturdy and totable; it’ll hold up to a backpack jostling.

Chuwi Minibook X with banana for scale

The laptop’s case is MacBook-esque: aluminum and good-looking. The MacBook Air’s dimensions dwarf the Chuwi’s, but the two laptops are about the same thickness.

A notebook that weighs more than a kilo is simply not a good thing

Linus Torvalds

The Minibook weighs in just shy of a kilo at 912 grams.

Chuwi Minibook X weights 912g

Perf, thermals, and power

tl;dr: you get what you pay for. But battery life and cooling are better than I’d have guessed.

The Minibook X was never going to compile the Linux kernel in record time. But the performance matches the specs, it stays cool, and it has enough battery life to run a movie marathon.

Numbers:

  • Geekbench6 (a fun side-quest to get running on NixOS), better than I expected.
    • Single-core: 1295
    • Multi-core: 3332
  • Wi-Fi 6 speed: 424 Mbps, more than enough to stream a 4K movie.
  • Power
    • Idle: 3.8W
    • During benchmark: ~15W

Battery: When I left the 1995 classic film “Hackers” looping in VLC, the battery lasted about 6 hours.

Heat: Running stress-ng for 10 minutes, the hottest part of the laptop chassis remained below 90°F (32°C):

Chuwi Minibook X running stress-ng on thermal camera. Thermal camera reads 88.4°F

What I dislike

There’s so much to dislike about this laptop:

  • Screen is terrible – 2K? 50Hz refresh rate? Why!?
  • Keyboard is terrible – it only registers keystrokes when you hit the exact center of each key.
  • Touchpad is terrible – It’s a diving board-style, without physical buttons.
  • Sound is meh – I can hear the tinny laptop speaker fine, but it’s underwhelming. I’ve never tried tweaking it in Pipewire, though; it’s possible it could be better.

But “terrible” is in comparison to the nicest modern laptops in existence. Everything I listed here works fine. I’m honestly blown away when I tune my expectations to the sub-$400 laptop range.

Verdict

In The Death and Life of Great American Cities, Jane Jacobs wrote, “new ideas require old buildings”: cheap spaces let people try risky ideas.

The Chuwi Minibook X is an old building.

I can brick the Minibook and have a normal Monday on my serious work laptop. Nothing has to work, which makes it perfect to try out new Linux desktop stuff:

  • NixOS – I’ve been using Debian for 15 years+, figured I’d try joining the NixOS cult for a while.
  • RiverWM – I’m on a quest to find the Wayland version of XMonad; River is pretty close.
  • KDE Plasma – I’ve used a tiling window manager for over a decade. What’s it like to use a desktop that Just Works™?
  • Steam – Never been much into games, but I decided to give Steam a try since, well, why not?

Cheap, weird computers like the Chuwi make it safe to play. And playing with computers is still fun.

Playing Melatonin on Steam on the Chuwi
联系我们 contact @ memedata.com