This is a small but powerful computer that was very pleasant to set up. Also, the price was very attractive! And no assembly required, just unpack and plug it in.
The box came bundled with a keyboard and a mouse (both wired), which was a nice unexpected bonus considering the low price. It also came with Windows 10 Pro installed, which was not so nice since it means I probably paid some unnecessary Microsoft tax for that. But installing Linux was straightforward:
Boot mode
from UEFI Only
to Auto
.
By choosing Entire Disk
as the installation target, all Windows-related partitions
are purged, so that's what I did. Installing Ubuntu was a breeze. The only thing that required
some tinkering was making HDMI audio output work. This is what I did:
aplay -l
to get a list of card numbers and device numbers.
speaker-test --channels 2 --rate 48000 --device hw:<CARD>,<DEV>
for each combination of <CARD>
and <DEV>
that looks like it has something to do with HDMI, until you hear noise from the HDMI speakers.
<CARD>
=0 and <DEV>
=8. Using that info I created the file ~/.asoundrc
with the following content:pcm.!default { type hw card 0 device 8 }Adjust the card and device numbers according to whatever combination works for you.
Note: I never install pulseaudio on my machines, so I don't know if pulseaudio will complicate this. And I don't really care, actually.
Further note: Even when taking the HDMI audio configuration into account, the contrast is huge when compared to the total train wreck of an experience that I had with the Intel NUC two years ago.