|
Edited by linuxuser at 2023-11-12 00:10
Search the web, to disable fastboot is recommended always. I noticed the same problem with Wifi. Installing Ubuntu I was not asked for my Wifi password.I forget to disable fastboot simply. If you are not asked to choose a Wifi AP and have no ethernet connection there is something wrong. After disabling Fastboot the available Access points were shown. Fastboot, as it says, helps booting faster and Windows stores "things" for fastboot, but this irritates the hardware query during Linux installation somehow. Bitlocker encrypts the partition and this can influence the installation too. But the Web knows more, why. I don't care why, because I do not need bitlocker. If you are interested in encryption make a LUKS partition. Depending on why you want enryption, a small encrypted partition can be useful, but I do not see a reason for me to encrypt everything.
BTW if you see no menu to boot Linux, after the Linux installation and if you cannot change the bootorder in the bios, use efibootmgr to see the bootorder. I am talking generally, there are motherboards where the Linux system is not recognized. I did not check how beelink behaves, I use generally efibootmgr.
- sudo efibootmgr -v
- BootCurrent: 0002
- Timeout: 1 seconds
- BootOrder: 0004,0002,0003
Copy the Code
You can change this with "-o" in a Linux live system.
something like
- sudo efibootmgr -o 0003,0002
Copy the Code
Since grub starts Windows, there is no need to assign the boot order for Windows. 3 ist the usb-drive normally, 2 ubuntu using a Linux Live System to change the boot order.
|
|