39 lines
1.3 KiB
Markdown
39 lines
1.3 KiB
Markdown
# Troubleshouting Boot Issues
|
|
|
|
## SecureBoot
|
|
|
|
While having secure boot enabled it is not possible to load the yfs kernel module. Therefore it is important that secure boot is disabled on the systems booting EFI!
|
|
|
|
|
|
This is how to check on a running system if secure boot is enabled:
|
|
|
|
```bash
|
|
mokutil --sb-state
|
|
```
|
|
|
|
https://access.redhat.com/articles/5337691
|
|
|
|
|
|
## Redirect Serial Output to File in VMware
|
|
|
|
To change the serial port settings the VM needs to be shut down. Then edit the VM settings and add a new serial device by clicking "ADD NEW DEVICE" on top right and there select "Serial Port".
|
|

|
|
|
|
The serial port should then be connected to a file on the datastore `serial_console`:
|
|

|
|
|
|
These files then can be accessed over `lxsup00.psi.ch:/data/serial_console`.
|
|
|
|
## Send Grub Output to Serial Port
|
|
|
|
For sending out Grub debug information over the serial port to a file because it is to much to fit the screen or for later inspection, you might do the following:
|
|
- in the Grub menue type `c` to get to the command line
|
|
- configure the serial port with
|
|
```
|
|
serial --unit=0 --speed=115200
|
|
```
|
|
- set the output to the serial port, run the debug command and set the output back:
|
|
```
|
|
terminal_output serial; lsefi; terminal_output console
|
|
```
|