The Minibook X is a netbook for 2026

The Chuwi Minibook X is a 10.5-inch x86_64 sub-ultrabook with 16GB RAM, a 512GB NVMe drive, and a $350 price tag. It weighs 911 grams and runs Linux with only one major annoyance: the screen is mounted sideways.

Tyler Cipriani bought one as a knock-around laptop and documented the experience. The machine is a budget device, but in 2026, even budget hardware packs enough punch for utility computing.

Quick specs

  • CPU: 4-core/4-thread 3.6GHz Intel N150 Twin Lake
  • RAM: 16GB LPDDR5-6400 (soldered)
  • Storage: 512GB NVMe (upgradable)
  • Display: 10.51-inch IPS 2K 16:10
  • Battery: 28.88Wh Li-Ion
  • Weight: 911g
  • Ports: 2×USB-C (1×PD charging)
  • Cost: $350

The Minibook comes with a 12V/2A USB-C charger, but Cipriani chucked it for a standard PD charger to avoid frying 5V components. The 12V charger is a cost-saving choice, but it also enables DC/off-grid setups.

Linux and the sideways screen

The Fediverse promised Linux runs "boringly well." Almost true. First boot shows the screen rotated 270° clockwise because the panel is from a cheap tablet and mounted sideways. Fixing it requires tweaking orientation at every software layer:

  1. Bootloader: Switch from systemd-boot to GRUB with unmerged rotation patches.
  2. Initrd: Tell the Intel display driver the panel orientation via kernel parameter video=DSI-1:panel_orientation=right_side_up and force the i915 module into initramfs. On NixOS:
    boot.kernelParams = ["video=DSI-1:panel_orientation=right_side_up"];
    boot.initrd.kernelModules = ["i915"];
    
  3. Desktop environment: For X11, xrandr --output DSI-1 --rotate right. Wayland picks this up from DRM connector automatically.
  4. Framebuffer: Add fbcon=rotate:1 to kernel parameters for proper TTY orientation:
    boot.kernelParams = ["fbcon=rotate:1"];
    

Everything else works: camera, microphone, speakers, touchscreen, sleep/suspend, hibernate, keyboard backlight, USB-C HDMI, Bluetooth (Intel non-free blobs), and Wi-Fi 6 (Intel non-free blobs).

Size, weight, and build

The Minibook X is mind-bogglingly small. The aluminum case is MacBook-esque but dwarfed by a MacBook Air. It weighs 912g, just under Linus Torvalds' 1kg threshold for a good notebook.

Performance, thermals, and power

Cipriani ran Geekbench 6 (a side-quest on NixOS): single-core 1295, multi-core 3332. Wi-Fi 6 speed: 424 Mbps. Idle power draw: 3.8W. Under benchmark: ~15W. Battery life looping the 1995 film "Hackers" in VLC: about 6 hours. Heat during stress-ng for 10 minutes: chassis stayed below 90°F (32°C).

What's terrible (but forgivable at $350)

  • Screen: 2K resolution but 50Hz refresh rate. Why?
  • Keyboard: Only registers keystrokes when hitting exact center of each key.
  • Touchpad: Diving board-style with no physical buttons.
  • Sound: Tinny speakers, though Pipewire tweaks might help.

Cipriani notes "terrible" is relative to premium laptops. Everything works fine for a sub-$400 machine.

Verdict: an old building for new ideas

Cipriani quotes Jane Jacobs: "new ideas require old buildings." The Minibook X is an old building. It's cheap enough that bricking it means a normal Monday on a serious work laptop. That freedom lets him experiment with NixOS after 15+ years on Debian, try RiverWM as a Wayland replacement for XMonad, explore KDE Plasma, and even play Steam games like Melatonin.

If you want a cheap, portable Linux machine that's fun to tinker with, the Chuwi Minibook X is a solid choice. Just be ready to fix that screen rotation.