Skip to content

Instantly share code, notes, and snippets.

@fuji246
Last active January 22, 2023 17:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fuji246/2d913ae6c2b0a01c0d53775fb96b535f to your computer and use it in GitHub Desktop.
Save fuji246/2d913ae6c2b0a01c0d53775fb96b535f to your computer and use it in GitHub Desktop.
ACEPC T11 install ubuntu

Notes for ACEPC T11 Ubuntu installation

  1. Install Ubuntu 20.04 fix the HDMI audio issue. But need to set Start Application to choose the default audio input/output.

  2. WiFi driver:

sudo apt install dkms bc git 
git clone https://github.com/brektrou/rtl8821CU.git
cd rtl8821CU
sudo ./dkms-install.sh
wget https://github.com/khadas/android_hardware_amlogic_wifi/raw/b6709758755568e4a0ff6e80993be0fc64c77fb9/bcm_ampak/config/6255/nvram.txt
sudo mv nvram.txt /lib/firmware/brcm/brcmfmac43455-sdio.txt
  1. no battery but indicate as battery, sudo nano /etc/modprobe.d/blacklist-axp288.conf with content:
blacklist axp288_fuel_gauge
  1. /etc/network/interface not working
sudo apt install ifupdown
sudo systemctl restart networking
  1. wake on lan
$ cat /etc/network/interfaces 
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

auto enp1s0
iface enp1s0 inet dhcp
    up ethtool -s enp1s0 wol g
  1. mount

udisk2 is used and can change default mount options, https://help.ubuntu.com/community/AutomaticallyMountPartitions http://storaged.org/doc/udisks2-api/latest/mount_options.html

@Thogibo
Copy link

Thogibo commented Jan 21, 2023

Hi. I am new in linux. could you tell me the way to work with a token on github.
i cannot do the command. git clone https://github.com/brektrou/rtl8821CU.git
it does not work.
I have create a token but I don't know to use it.

@fuji246
Copy link
Author

fuji246 commented Jan 22, 2023

Hi. I am new in linux. could you tell me the way to work with a token on github. i cannot do the command. git clone https://github.com/brektrou/rtl8821CU.git it does not work. I have create a token but I don't know to use it.

you need to install git first, or you can just download the zip file directly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment