![](/static/253f0d9b/assets/icons/icon-96x96.png)
![](https://beehaw.org/pictrs/image/1be75b15-2f18-429d-acf7-dcea8e512a4b.png)
10·
6 months agoI’m a baby dev trying to collect some brain wrinkles. Can you expand that last point? What’s the downside of client side decorations? What’s a better alternative?
I’m a baby dev trying to collect some brain wrinkles. Can you expand that last point? What’s the downside of client side decorations? What’s a better alternative?
I didn’t realize HTC was back in the phone business.
I thought they sold off their mobile assets to Google in order to chase VR and crypto hype cycles.
I have the exact same little box for my HTPC in my living room.
It’s possible something went wrong during your install or configuration. I’m running a different distro, but I had to do very little tweaking or configuring of drivers, since the hardware is pretty standard.
Do you have any display output at all? Dropping into a tty or accessing your machine over ssh after boot at least gives you a starting point to debug.
Some tools that you can use to gather more info:
inxi
: prints out helpful summaries of system info for debugging.inxi --graphics
should give you some info to work with. My output tells me that I’m using the i915 kernel driver for display output.modinfo
: prints out kernel module info. The output is lengthy, so piping to a pager is helpful:modinfo i915 | less
journalctl --this-boot --priority=3
, or search for messages related to the i915 kernel module withjournalctl --this-boot --grep i915