-
Boot Menu
F2
orDel
-
Boot Device Menu
F7
-
WARNING: Dont change the OS from Windows to "Intel Linux" on the BIOS. Doing that causes the screen to not startup at BIOS time making impossible to enter into it again (requires to drain the battery and press power button several times to reset the settings)
Observation of functional distributions:
- Debian 10
- Ubuntu 18.04
- Archlinux
- Solus OS
- Format USB (FAT32 + MBR Partition Table)
- (Optional) Use gparted
- Copy ISO with
dd bs=4M if=/path/to/iso of=/dev/sdX && sync
- Boot
- If doesn't boot, try a newer iso (see Grub bug below) or use something like reFIND
- Install
- Don't forget ~100MB for a EFI System Partition (ESP)
Use Rufus.
- MBR for BIOS or UEFI
- Getting a working (u)efi usb stick
- Worked out of the box with:
- Archlinux
- Solus OS
- Debian 10
- Ubuntu 18.04
- If your ISO fails, use reFIND or see frub fix below.
- Worked out of the box with:
- Grub fails to boot (happens with old Grub like on Debian 9).
- Touchpad not working or partially working
- Wifi is slow (Realtek RTL8723BU 0bda:b720)
-
Fix: use vendor driver instead of mainline one.
a. First establish internet connection by other means, for example by ethernet cable.
b. Launch a terminal window. (You can launch a terminal window like this: Click)
c. Copy/paste the following command line into the terminal, in order to install the required build packages (the building tools with which you're going to build the driver):
sudo apt-get install git build-essential linux-headers-$(uname -r)
d. Download the driver packages by means of git, with this command (use copy/paste):
git clone https://github.com/lwfinger/rtl8723bu
Are the driver packages no longer available on github.com? Then get the driver packages from here (driver as it was on May 2, 2018). Then unpack the zipped file in your home folder, because it's a compressed folder. Don't unpack it in the subfolder Downloads, because then the ensuing terminal commands won't work.
e. Now you're going to disable a line in the makefile of the new driver, because without this hack, two instances of the wireless chipset will show in Network Manager (which would of course be bizarre and useless). The command below is one line; make sure you copy/paste it, in order to avoid typing errors:
sed -i 's/EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE/#EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE/g' ~/rtl8723bu/Makefile
Press Enter.
f. Now compile the required kernel module from the driver packages. Copy/paste this line into the terminal, in order to enter the folder with the driver packages:
cd rtl8723bu
And then run this command:
make
g. Finally, install the compiled module with this command:
sudo make install
h. Reboot your computer.
i. Your wifi should work well now: click on the icon of Network Manager in the system tray, in order to see the available wireless networks.
-
how todo this if i have a windows pc only?