IT/Hardware/General/BIOS: Difference between revisions
Jump to navigation
Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
Walttheboss (talk | contribs) (Created page with "=== sgx disabled by bios === This is a newer warning due to a kernel upgrade. It allows the linux kernel to interact with CPU security features developed by intel. The messa...") |
Walttheboss (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=== sgx disabled by bios === | ===sgx disabled by bios=== | ||
This is a newer warning due to a kernel upgrade. | This is a newer warning due to a kernel upgrade. | ||
Line 8: | Line 8: | ||
You can either: | You can either: | ||
# ignore it | #ignore it | ||
# make a change in the bios to enable the feature. | #make a change in the bios to enable the feature. | ||
## the cpu may be capable and the bios not. | ##the cpu may be capable and the bios not. | ||
## If you can't find the "switch" in the bios then: | ##If you can't find the "switch" in the bios then: | ||
### Your motherboard cannot use sgx | ###Your motherboard cannot use sgx | ||
### Your BIOS is too old. | ###Your BIOS is too old. | ||
## If after all you determine your hardware cannot use sgx then you can hide it | ##If after all you determine your hardware cannot use sgx then you can hide it | ||
# add nosgx as a boot parameter. | #add nosgx as a boot parameter. | ||
## In the file /etc/default/grub you add nosgx in the follwoing section | ##In the file /etc/default/grub you add nosgx in the follwoing section | ||
### GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nosgx" | ###GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nosgx" | ||
## sudo update-grub | ##sudo update-grub | ||
## reboot and you will no longer see the error message. | ##reboot and you will no longer see the error message. | ||
===Boot Errors=== | |||
Since upgradeing to 22.04 there are lots of acpi errors that appear during boot and once in a while prevent a clean boot. | |||
Open the files /etc/default/grub | |||
add loglevel=3 to ignore those errors. | |||
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=3" | |||
===Will not shutdown completely=== | |||
You can first test to see by doing a complete shutdown with the command | |||
<code> sudo shutdown -h now </code> | |||
If that completes then look further. |
Latest revision as of 07:26, 12 September 2023
sgx disabled by bios
This is a newer warning due to a kernel upgrade.
It allows the linux kernel to interact with CPU security features developed by intel.
The message does not harm anything
You can either:
- ignore it
- make a change in the bios to enable the feature.
- the cpu may be capable and the bios not.
- If you can't find the "switch" in the bios then:
- Your motherboard cannot use sgx
- Your BIOS is too old.
- If after all you determine your hardware cannot use sgx then you can hide it
- add nosgx as a boot parameter.
- In the file /etc/default/grub you add nosgx in the follwoing section
- GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nosgx"
- sudo update-grub
- reboot and you will no longer see the error message.
- In the file /etc/default/grub you add nosgx in the follwoing section
Boot Errors
Since upgradeing to 22.04 there are lots of acpi errors that appear during boot and once in a while prevent a clean boot.
Open the files /etc/default/grub
add loglevel=3 to ignore those errors.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=3"
Will not shutdown completely
You can first test to see by doing a complete shutdown with the command
sudo shutdown -h now
If that completes then look further.