0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Intel Compute Stick (STCK1A8LFC) + Xubuntu 18.04.4

Last updated at Posted at 2020-06-27

Intel Compute Stick (STCK1A8LFC) + Xubuntu 18.04.4

To avoid agonistic wifi settings, better install Xubuntu Desktop first.
Thanks to wifi drivers delivered with bionic, wifi works on installation.

Hardware

Prerequisites

prepare installation media

  • at least 2GB USB memory stick as installation media
  • Xubuntu Desktop installation is preferred for better wifi device detection
  • download xubuntu-18.04.4-desktop-amd64.iso (1534459904 bytes) and burn it to USB memory stick

equipments

  • USB power supply (Type-A) and power cable (micro-B, packaged with STCK1A8LFC)
  • HDMI extension cable (packaged with STCK1A8LFC)
  • HDMI display
  • wifi station/home router connected to internet
  • USB HUB (Type-A) with at least 3 Type-A receptacles
    • Keyboard
    • Mouse
    • Installation media (as described above)
  • at least 16GB microSD card as DUMMY system storage
    • Ubiquity (Ubuntu installer) refuses to proceed if only internal MMC exists
    • internal MMC is 8GB small, insufficient but still actually installable
    • better use this external microSD than internal MMC anyway

update BIOS (could be done later)

BIOS settings

LAN

  • see wifi MACs (marked on Compute Stick surface)
  • permit wifi MACs on wifi station/home router per-SSID settings
  • write down available SSID and WPA2 PSK

installation

  • use English, do not change timezone nor keyboard mapping (set later)
    • avoiding unnecessary heuristic locale settings depending timezone
  • do not connect to Internet during installation (connect later)
    • some gigs of free space remained for /var/cache/apt

Post-install

Cstate-related problems

bay trail SoC has broken sleep state. it hangs randomly. fundamentally, cooling failure.

sudo vi /etc/default/grub modify GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_idle.max_cstate=1"

even after above, transition to sleep state seems still fatal. so,

sudo apt remove thermald

CUI/GUI

sudo systemctl set-default {multi-user,graphical}.target

inactivate unattended-upgrade

see and modify /etc/apt/apt.conf.d/20auto-upgrades as you like

wifi

edit /etc/netplan/01-network-manager-all.yaml and perform netplan generate netplan apply

# Let NetworkManager manage all devices on this system
network:
  version: 2
  wifis:
      wlan0:
          access-points:
              <ssid>:
                  password: <WPA2 PSK>
  renderer: NetworkManager

Japan-only settings (no Japanese packages required) as you like

timedatectl set-timezone Asia/Tokyo
localectl set-keymap jp

(optional) add your bread-and-butter packages

sudo apt install tree curl jq git apt-transport-https socat build-essential ssh xorgxrdp-hwe-18.04 xrdp

References

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?