r/BeelinkOfficial

Beelink ME mini PC NAS N200 proxmox test

Hello there!

I've been running my homelab on a Ryzen 7 5825U box (8c/16t) for a while, and it's massively overkill for what's actually on it - a dozen lightweight LXCs and a couple of VMs that mostly just idle. I picked up a cheap Beelink N200 mini PC and wanted to know : could this thing realistically take over the fleet ? So instead of guessing, I cloned the whole setup onto it and tried to break it.

Writing this up because I didn't find what I expected. (I used Claude for my testing and for this message, english is not my native language).

TL;DR: I cloned my whole prod homelab fleet (10 LXCs + 2 VMs, 21 vCores total) onto an Intel N200 mini PC (4 cores, no hyperthreading, 12GB RAM) and threw everything at it — simultaneous boot storm, staged CPU stress, real service load (git/sync/VPN/cameras), and finally every single guest pegged at 100% CPU at once (5.25:1 core oversubscription). No breaking point: RAM and swap never budged, the host stayed responsive throughout, only management-plane latency roughly doubled under worst-case load and recovered instantly once the load stopped. Caveat: this fleet is mostly idle/I/O-bound in real life, so this isn't proof a CPU-hungry fleet would fare the same.

The test box

  • CPU: Intel N200 — 4 physical cores, no hyperthreading, up to 3.7GHz turbo (this is the whole ballgame here, it's the only real constraint on this machine)
  • RAM: 12GB total (~11.7GB usable), 7GB swap configured
  • Storage:
    • A 58GB eMMC on the board — present, but I'm not using it for anything
    • A 256GB NVMe (Linkmore XE-300 Lite) as the boot/system drive running Proxmox itself
    • 2x 1TB WD Green SN350 NVMe drives, concatenated/striped via ZFS (no mirror, no redundancy — pure stripe) giving ~1.81TB usable for VM/LXC storage. Yes, if one of those two dies I lose everything on it. Known tradeoff, this pool is for disposable test data, not anything I'd cry over.
  • Networking: one physical NIC in use (the other two ports are unpopulated on this box)
  • Proxmox VE 9.2.10, kernel 7.0.14

Setting up a fair test

A few things I made sure to get right before touching any numbers:

  1. Fully isolated test network. I didn't want test VMs anywhere near my real LAN, so I created a second bridge with no physical port attached at all (invisible from the real network), its own private subnet, and NAT out through the host for internet access when needed. New MAC addresses for everything — never reused anything from the production fleet's config.
  2. Dedicated storage. All test VMs/LXCs live on the ZFS stripe, not mixed in with the Proxmox boot disk.
  3. Cloned the real fleet's specs, not just made something up. I pulled the actual .conf files off my production box and recreated every guest with identical vCPU count, RAM, and swap allocations. 10 LXCs + 2 VMs, mirroring cores/RAM 1:1. The two VMs (a Python scraper and a Home Assistant OS instance in prod) were recreated as lightweight cloud-init shells with the same core/RAM allocation rather than the real disk images — I wasn't trying to test HAOS itself, just how the hypervisor schedules that much CPU demand.

Total allocated: 21 vCores across 4 physical cores — a 5.25:1 oversubscription ratio if literally everything asked for CPU at once. On the source 8c/16t machine the equivalent ratio is only about 2:1. This is the number that made me expect trouble.

For context, my actual production box (the 5825U) sits at a load average of ~0.15-0.18 running this exact fleet in real life — it's an almost entirely idle, I/O-bound workload (DNS, VPN, git server, password manager, camera NVR, home automation, sync). Only one container (a WireGuard VPN gateway) ever peaks above 3% CPU. So the open question wasn't "is this fleet heavy," it's "does a 4-core box choke on the scheduling overhead of that many guests even when each one individually barely does anything."

What I actually ran

1. Idle boot storm

Started all 12 guests simultaneously (cold LXC boot + VM cloud-init). Load average spiked to 5.77 transiently, then dropped below 1.5 within about 90 seconds and settled around 1.1-1.3. RAM landed around 5GB/11.7GB used. Zero swap touched. All 12 guests came up healthy and pingable.

2. Staged CPU stress (synthetic, stress-ng)

Went up in careful steps rather than nuking everything at once:

  • 3 lightweight LXCs (4 vCores) at 80% load → load avg peaked at 1.91, host fully responsive.
  • All 10 LXCs together (13 vCores) at 80% → peaked at 6.71, still totally responsive, no swap.
  • The two heavy VMs (4 vCores each, the "scraper" and "HAOS" shells) run solo at 100% each, to get a clean baseline throughput number.
  • Then both together at 100% simultaneously — 8 vCores fighting over 4 physical cores, a 2:1 squeeze:
    • Load avg peaked at a fairly mild 4.83.
    • Measured CPU throughput (stress-ng bogo-ops/sec) for each VM dropped to almost exactly half its solo number — the scheduler split the 4 cores 50/50 between them, cleanly, with no thrashing or starvation.
    • Host stayed fully responsive the entire time (verified by timing a monitoring loop against wall-clock — zero scheduling lag detected).

I expected running two "needs 4 cores" VMs on a 4-core box simultaneously to be ugly. It wasn't — it degrades exactly the way a well-behaved CFS scheduler should: everyone gets a fair, proportional slice instead of anyone stalling.

3. Realistic I/O burst (not synthetic CPU load — actual services doing actual work)

I didn't want to only test synthetic CPU spin loops, so I installed the real lightweight services from the fleet and hit them concurrently with real workloads for 30 seconds:

  • Git: 5 parallel git clone operations against a real self-hosted Gitea instance (~91MB repo each)
  • File sync: added 500MB of fresh data to a Syncthing instance and triggered a real rescan/hash pass
  • VPN throughput: a live WireGuard tunnel pushed through iperf3 for the full 30s
  • Camera/NVR: 4 concurrent RTSP viewers pulling a live H.264 stream from a mediamtx instance

All four running at once:

  • 5/5 git clones succeeded cleanly
  • WireGuard sustained ~1.9 Gbit/s the entire time, tunnel never hiccupped
  • All 4 camera streams ran the full 30 seconds without a dropped connection
  • Syncthing indexed everything with zero errors
  • Load average peaked around 5.6, RAM stayed flat around 5.5-6GB, swap stayed at 0

4. The big one — ramping every single guest to 100% CPU at once

This is the test I actually built this whole environment for: find the breaking point. Instead of slamming all 21 vCores on at once, I added load one guest at a time, 15 seconds apart, watching the trend the whole way, so I could stop early if things went sideways. Order: the 10 LXCs one by one (up to 13 vCores), then the "HAOS" VM (17 vCores), then the "scraper" VM last (the full 21 vCores on 4 physical cores).

I also added a second metric beyond load average this time: I timed how long pct list (a basic Proxmox management call) took to respond, as a proxy for "is the hypervisor itself still snappy," since load average alone can be a misleading, laggy number under heavy oversubscription.

Results at full 21-vCore load (5.25:1 oversubscription, every single guest pegged at 100%):

  • Load average (1-min) peaked at 18.34
  • Management-plane latency (pct list) went from a baseline of ~900ms to a peak of ~1.9 seconds — roughly 2x slower, but it never hung, never timed out, it just got proportionally slower
  • RAM stayed rock-stable the entire time, ~5.2-5.5GB used out of 11.7GB
  • Swap never moved off 0MB — not even a single megabyte, even at the absolute worst-case CPU contention this fleet could produce
  • The moment I killed the stress load, management latency snapped back to baseline (~900ms) instantly, while load average did its normal slow exponential decay afterward
  • Verified clean teardown — zero stray processes left anywhere, all 12 guests still healthy

Verdict

I went in expecting to find a wall, especially once I calculated the 5.25:1 core oversubscription ratio (vs. ~2:1 on the source hardware). I didn't find one. Even at the worst-case scenario — every guest in the fleet pegged at 100% CPU simultaneously, more than 5x the available physical cores — the little N200 degraded gracefully instead of falling over: no OOM, no swap thrashing, no hung management daemon, just a proportional and fully-recoverable slowdown.

The catch, and it's an important one: this specific fleet is CPU-idle/I/O-bound in real life. Every container in it runs under 3% CPU in production except the VPN gateway (~8.6%). The "21 vCores" number is almost entirely paper allocation, not real demand — which is exactly why the synthetic all-cores-at-once test was useful as a worst-case stress probe, but also why it doesn't prove the N200 would handle a CPU-hungry fleet the same way. If your homelab is compile farms or transcoding or ML workloads instead of DNS/VPN/git/notes-apps, this result doesn't transfer.

For a fleet like mine — a bunch of small self-hosted services that mostly sit around waiting on network I/O — a $200-ish 4-core mini PC handled the full simultaneous-worst-case scenario without breaking a sweat. That's a genuinely different answer than I expected going in.

What I'd still want to test

  • Sustained (multi-hour, not 30-40s bursts) load, to rule out thermal throttling on a mini PC's presumably modest cooling
  • Real disk I/O contention pushed harder — my burst test used real services but only for 30 seconds
  • What actually happens if you push past 100% per guest — I never asked for more CPU than each guest was configured for, so "guest fighting for cores it wasn't allocated" territory is unexplored
  • The ZFS stripe (no redundancy) is a known soft spot — fine for disposable test data, not a decision I'd make for anything I cared about keeping
  • Retesting on a proper 4-disk NVMe RAID10 (striped mirrors) instead of the current 2-disk stripe would be worth doing purely for the redundancy and better parallel read performance. I wouldn't expect it to meaningfully change RAM usage on its own though — ZFS RAM pressure comes mostly from ARC (the read cache, capped by default around 50% of host RAM), which applies regardless of pool topology. The real thing worth watching on a 12GB box like this is ARC competing with guest RAM in general, not something specific to going RAID10. Honestly, I'd love to do this with 4x 4TB NVMe drives instead of 1TB ones, but that's way outside the "cheap test box" budget right now :(

Power draw

I also measured this at the wall out of curiosity:

  • ~10W with just Proxmox running and every guest powered off (idle host baseline)
  • ~26.3W during the final worst-case test (all 21 vCores pegged at 100% simultaneously)

That 26.3W is probably close to a practical ceiling for this box under sustained full load — for a 4-core mini PC pulling this little power even maxed out, that's a pretty compelling efficiency story next to leaving an 8c/16t desktop chip idling 24/7.

reddit.com
u/Warm-Preference4856 — 1 day ago

Ser10 bios hang after specific windows update, keeps reverting

I picked up a SER10 from beelink and was initially charmed after not having a new pc for 10 yrs, but it isn’t working out for me. Specifically, every time I try to install KB5121003, august security and feature update, I fail to boot and get locked at bios, no ability to use del or f7. After power cycling a few times, windows repair takes over and uninstalls the update.

Beelink support has directed me to do a few troubleshooting steps including a full reinstall of windows, none have resolved the issue

Anyone else having the same problem or is this a lemon?

reddit.com
u/Ficus_picus — 4 days ago

Beelink Me Mini Power Issues

Anyone know if the new Beelink Me Mini configuration with no eMMC and 16GB RAM with 1TB SSD still have 3.3V power rail issues?

I am trying to see if i can populate the NAS (if not full 6x DRAM SSDs) then with at least 3x nvme ssds which have DRAM and 3 more without DRAM; or am i still limited to only running DRAM-less?

I already tried searching online for more information, but most of the information is outdated from the end of last year and the results have been mixed.

It’s now 2026, and I haven’t seen any new discussions about the power rail issues regarding this. Just wondering if it’s safe to go ahead and purchase this device if I do plan to at least populate some of the slots with DRAM SSDs or if i can even go full DRAM. or am I stuck with only DRAMless again.

reddit.com
u/darkandark — 3 days ago
▲ 4 r/BeelinkOfficial+2 crossposts

GTi14 + RTX 4060: GPU only hitting 20-35% in games, anyone else?

Got a Beelink GTi14 (Ultra 9 185H, 64GB) with the EX Dock and an RTX 4060. Fortnite used to run at 180+ fps on this thing. Now I'm getting 25-60 with dips into the low 20s, and GPU usage sits at 20-35%, sometimes dropping to 0%. The card is basically idle while the framerate tanks.

The confusing part is that everything benchmarks completely fine:

  • 3DMark Time Spy: 10,254 graphics / 9,152 CPU
  • GPU-Z shows full PCIe x8 4.0 under load
  • GPU at 44°C, storage idle, 64GB RAM, network's fine

Stuff I've already tried:

  • BIOS Internal Graphics = Enabled (the known GTi14 dock throttling fix, this genuinely helped, took me from sub-20fps to where I am now)
  • Monitor plugged straight into the 4060 in the dock instead of the mini PC (also helped)
  • Full clean reinstall of the game + fresh config
  • Performance Mode instead of DX12, literally zero difference which is the part I can't explain.
  • Disabling E-cores and the SOC north LP E-cores in BIOS. Made it worse so I reverted.

So every subsystem tests healthy on its own but the GPU just won't get saturated in an actual match. Anyone running a GTi14 + EX Dock seeing the same? Trying to work out if this is a dock/firmware quirk or something dumb on my end. I already sent an email to Beelink support but I don't think they can reply until next weekday.

reddit.com
u/billie_eyelashh — 5 days ago

SER8 unable to install windows

Just got a SER8 8845HS and tried to do a clean reinstall of windows. It gets to 100% but then shuts off completely without installing and boots into an error when turning back on. Tried Linux Mint and its working well so far with no interruptions during install, but would prefer to have windows on this device.

reddit.com
u/Capital-Substance-80 — 5 days ago

Product MINI PC EQ13 getting hardware failure - pc shuts down and I have to restart

8/3/2026 1:59 PM Windows Error Reporting Fault bucket MEMORY_CORRUPTION_ONE_BIT, type 0
Event Name: BlueScreen
Response: Not available
Cab Id: ec16fb83-124a-4d87-923b-4bb36c55a97e

Problem signature:
P1: 1a
P2: 41792
P3: ffffc080dad4b538
P4: 200000000
P5: 0
P6: 10_0_26200
P7: 0_0
P8: 256_1
P9: 
P10: 

Attached files:
\\?\C:\WINDOWS\Minidump\080326-10515-01.dmp
\\?\C:\WINDOWS\SystemTemp\WER-10515-0.sysdata.xml
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.8bdce95a-681b-49ca-96da-67b69a9b5185.tmp.xml
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WER.3c48f661-943a-4f01-aeca-3bec32e07193.tmp.WERInternalMetadata.xml

These files may be available here:
\\?\C:\ProgramData\Microsoft\Windows\WER\ReportArchive\Kernel_1a_5f11bea7b19ec9c982c19e338fc9d5dea1b6bcd2_00000000_cab_e5666023-c2d1-4e12-8eed-b8605948eae9

Analysis symbol: 
Rechecking for solution: 0
Report Id: b4322852-3508-4b3a-b3fc-7bb506ccc982
Report Status: 268435460
Hashed bucket: 
Cab Guid: 0

reddit.com
u/Pleasant_Chapter_927 — 4 days ago

Is the Beelink SER8 (Ryzen 7 8745HS / 16GB / 500GB) at £539 a good pick for Linux Mint, Xenia, and VMs?

Hey everyone, I’m looking at picking up the Beelink SER8 (Ryzen 7 8745HS, 16GB DDR5, 500GB SSD) on Amazon UK, where it’s currently sitting at £539 after an on-page voucher. I’m planning to buy around October, hoping the price stays roughly in this range. My intended daily use is fairly straightforward: Web browsing and 1080p YouTube streaming General light office work Retro/Console emulation — specifically Xbox 360 (Xenia Canary) and PS2/PS3 at 1080p Running a few Linux and Windows Virtual Machines (just for fun / light testing) Before committing, I’d love some real-world feedback from anyone daily-driving the SER8: Linux Mint Compatibility: How is out-of-the-box driver support for Wi-Fi, audio, and Bluetooth on newer Linux kernels with this hardware? Hardware Reliability & Thermals: How does the vapor chamber cooling hold up over time? Any issues with fan noise, component failures, or coil whine? Xbox 360 Emulation: Does the 8745HS and Radeon 780M handle 1080p Xenia Canary smoothly for 3D titles? Price Check: Is £539 a fair price for the 8745HS variant on Amazon UK, or should I hold off for better voucher drops? Appreciate any insights or advice!

reddit.com
u/bc_2006 — 6 days ago

Kudos to Beelink

I purchased a Beelink Me Mini months ago. I was hesitant because I live in Italy and don't have customs clearance, and I was worried about a nasty surprise when the package arrived. I contacted support about my concerns, and they reassured me that with a few more days' wait, they could ship from their warehouse in the Schengen area. So, I placed the order through support, and it arrived in 20 days. I mounted it, ran several tests, and now I have a fully functional NAS that looks great, is compact, and has zero issues. I've learned to appreciate the brand both for the quality of its products and the customer service I received.

reddit.com
u/CignoZoe — 7 days ago

Looking to recommend a Home Office/Zoom PC - Beelink EQR7 AMD Ryzen™ 7 7735U

Beelink EQR7, AMD Ryzen 7 link...

It's going to be replacing an A8 processor based PC that's reach)ed/ing) End Of Life.

It will primarily be used for quite a bit of Zoom calls and Emailing, multiple Tabs open in the Web Browser, all at the same time.

Pretty confident this is a good rec, bang for the buck wise.

Any reason to run away screaming?

u/Zealousideal-Bet-950 — 7 days ago

catastrophic failure. how do i contact beelink.

i bought a beelink me pro n150 from amazon and it locked up during a windows update. now it won't power on. how do i contact beelink?

reddit.com
u/LinuxMacM1Novice — 7 days ago

Which AMD chipset driver now for SER8?

Have a SER8. The latest amd chipset driver Beelink has is back from 2024 on their site.

Does anyone know if they recommend sticking with that? Or can you use the more modern updates from Windows 11/AMD Adrenaline/etc?

reddit.com
u/neil_va — 9 days ago

Great support service from Beelink

My SER9 MAX SSD had bad sectors, reached out to Beelink support and roughly a week later i got my replacement SSD.

This was amazing support, no BS, no hidden fee. For anyone hesitating about support from Beelink, this is way better support then i got from a lot of companies these days, including American companies.

Just wanted to give my kudos to the Beelink team!

reddit.com
u/Abject-Blacksmith934 — 9 days ago

Mini S 13 Can't change RAM to 3200mhz

I bought a Mini S 13 two days ago, supposedly with 3200mhz but it shows 2666mhz on the BIOS and I can't change it. Is there any way to alter this?

SKU: MINIS13-A-16512SD0W64-B/XB

reddit.com
u/XonaMan — 12 days ago

SER 8 chipset drivers not updating (can’t be installed)

I was initially having freezing issues on my Beelink SER 8 mini pc after updating drivers but I was able to roll back drivers and update the bios to the most recent fix for this issue and everything is running well now. I was able to update the graphics drivers in AMD adrenaline but every time I try to update the chipset drivers, it stops after a few percent and then says “can’t be installed”. With the new bios update, am I supposed to update the chipset drivers somehow or not needed ?

reddit.com
u/Acrobatic-Box-961 — 13 days ago

GTR9 Pro E610 model ......

GTR9 Pro E610 model:

Even after updating to the BIOS version for LAN testing and the Intel 1.61 driver, the issue where the LAN connection disappears still persists. It’s been nearly a year... this is really unacceptable.

reddit.com
u/donghoon_kor — 12 days ago