BIOS Menu: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
(21 intermediate revisions by the same user not shown)
Line 5: Line 5:
  cat /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
  cat /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
  Result: 0 = disabled, 1= enabled
  Result: 0 = disabled, 1= enabled
==Boot From USB==
* Turn on your computer and press '''Delete, F2, F10 or F11''' (this varies by device) to enter the BIOS
* Use the cursor keys to find the ‘Boot’ menu or something similar
* Change the order so USB is at the top of the list as the number one boot priority
If none of those keys work to enter the BIOS, look out for a message on your monitor after pressing the computer’s power button. The message is usually at the bottom of the screen and says something like ‘Press '''F11''' for boot options’


==Repair UEFI Grub==
==Repair UEFI Grub==
<source lang="bash">
<syntaxhighlight lang="bash">
# verify partitions
gparted
 
# mount ubuntu partition
sudo mount /dev/nvme0n1p4 /mnt
sudo mount /dev/nvme0n1p4 /mnt
for i in /sys /proc /run /dev;\
for i in /sys /proc /run /dev;\
do sudo mount --bind "$i" "/mnt$i"; done
do sudo mount --bind "$i" "/mnt$i"; done
# mount uefi partition
sudo mount /dev/nvme0n1p1 /mnt/boot/efi
sudo mount /dev/nvme0n1p1 /mnt/boot/efi
sudo chroot /mnt
sudo chroot /mnt
update-grub && grub-install /dev/nvme0n1
update-grub && grub-install /dev/nvme0n1
update-grub && exit
update-grub && exit
sudo reboot
sudo reboot
</source>
</syntaxhighlight>
 
==Ubuntu Firmware Update==
<syntaxhighlight lang="bash">
sudo fwupdmgr get-devices
sudo dmidecode -s bios-version
 
for d in system-manufacturer \
system-product-name bios-release-date bios-version;\
do echo "${d^} :$(sudo dmidecode -s $d)"; done
 
sudo fwupdmgr refresh
sudo fwupdmgr refresh --force
 
sudo fwupdmgr get-updates
sudo fwupdmgr update
 
sudo dmidecode -s bios-version
</syntaxhighlight>
 
==Ubuntu Kernel Downgrade==
<syntaxhighlight lang="bash">
apt list --installed | grep linux-image
dpkg --list | grep linux-image
find /boot/vmli*
 
sudo apt remove linux-image-6.0.9-060009-generic linux-headers-6.0.9-060009-generic
sudo apt-mark hold linux-image-generic linux-headers-generic
</syntaxhighlight>
 
==Ubuntu Kernel Upgrade==
<syntaxhighlight lang="bash">
# https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0.9/amd64/
# https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/
sudo apt update && sudo apt full-upgrade -y
sudo dpkg -i *.deb
 
sudo apt install gcc make perl -y
sudo init 6
uname -mrs
 
sudo apt update && sudo apt full-upgrade -y
sudo apt install gcc make perl -y
sudo apt autoremove
sudo init 6
uname -mrs
</syntaxhighlight>
 
==ThinkPad Fn Key==
{|
| valign="top" |
───────────────────────────────────────────────
Fn + 4          » Sleep mode


| valign="top" |
───────────────────────────────────────────────
                »
|}


==References==
==References==
{|
| valign="top" |
* [https://linuxhint.com/install-upgrade-latest-kernel-ubuntu-22-04/ Upgrade To Latest Linux Kernel on Ubuntu 22.04]
* [https://www.reddit.com/r/LenovoLegion/comments/qls5rl/fedora_34_on_legion_5_15ach6/ Fedora 34 on Lenovo Legion 5 PRO 16ACH6H]
* [https://www.reddit.com/r/LenovoLegion/comments/qls5rl/fedora_34_on_legion_5_15ach6/ Fedora 34 on Lenovo Legion 5 PRO 16ACH6H]
* [https://askubuntu.com/questions/1329928/ Ubuntu brightness control of Legion 5 pro]
* [https://askubuntu.com/questions/1329928/ Ubuntu brightness control of Legion 5 pro]
Line 30: Line 103:
* [https://pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/legion-series/legion-5-15arh05/videos/vid100750-how-to-enter-the-bios-setup-utility-in-window-8-10 Lenovo Legion 5Pro BIOS]
* [https://pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/legion-series/legion-5-15arh05/videos/vid100750-how-to-enter-the-bios-setup-utility-in-window-8-10 Lenovo Legion 5Pro BIOS]
* [https://help.ubuntu.com/community/Grub2 GRUB vs GRUB 2]
* [https://help.ubuntu.com/community/Grub2 GRUB vs GRUB 2]
| valign="top" |
* [https://www.techrepublic.com/article/install-linux-kernel-ubuntu/ Install Linux kernel 6.0 on Ubuntu 22.04]
* [https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0.9/ Ubuntu » Download » Linux Kernel 6.0.9]
* [https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/ Ubuntu » Download » Linux Kernel 6.0.0]
* [https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.15/ Ubuntu » Download » Linux Kernel 5.15]
* [https://tuxcare.com/5-bad-reasons-to-update-your-linux-kernel/ 5 Bad Reasons to Update Linux Kernel]
* [https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/bcdedit-command-line-options?view=windows-10 BCDEdit Command-Line Options]
* [https://serverfault.com/questions/283129/ SSH Connection Hang Forever]
* [https://askubuntu.com/questions/446084/ Calibrate the Laptop Battery]
* [[Linux Kernel]]
| valign="top" |
|}


   _____ _____ _____ _____ _____ _____  
   _____ _____ _____ _____ _____ _____  
Line 35: Line 123:
  |  --|    |  |  |    -|    -|  __|
  |  --|    |  |  |    -|    -|  __|
  |_____|__|__|_____|__|__|__|__|_____|
  |_____|__|__|_____|__|__|__|__|_____|
  @2013~2021               Chorke Inc.
  @2013~2022               Chorke Inc.


<math>
<math>

Latest revision as of 17:54, 7 July 2024

───────────────────────────────────────────────
Control + Alter + Delete   » Restart
Esc (Continuous Press)     » Until Boot Menu
cat /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
Result: 0 = disabled, 1= enabled

Boot From USB

  • Turn on your computer and press Delete, F2, F10 or F11 (this varies by device) to enter the BIOS
  • Use the cursor keys to find the ‘Boot’ menu or something similar
  • Change the order so USB is at the top of the list as the number one boot priority

If none of those keys work to enter the BIOS, look out for a message on your monitor after pressing the computer’s power button. The message is usually at the bottom of the screen and says something like ‘Press F11 for boot options’

Repair UEFI Grub

# verify partitions
gparted

# mount ubuntu partition
sudo mount /dev/nvme0n1p4 /mnt
for i in /sys /proc /run /dev;\
do sudo mount --bind "$i" "/mnt$i"; done

# mount uefi partition
sudo mount /dev/nvme0n1p1 /mnt/boot/efi
sudo chroot /mnt

update-grub && grub-install /dev/nvme0n1
update-grub && exit
sudo reboot

Ubuntu Firmware Update

sudo fwupdmgr get-devices
sudo dmidecode -s bios-version

for d in system-manufacturer \
system-product-name bios-release-date bios-version;\
do echo "${d^} :$(sudo dmidecode -s $d)"; done

sudo fwupdmgr refresh
sudo fwupdmgr refresh --force

sudo fwupdmgr get-updates
sudo fwupdmgr update

sudo dmidecode -s bios-version

Ubuntu Kernel Downgrade

apt list --installed | grep linux-image
dpkg --list | grep linux-image
find /boot/vmli*

sudo apt remove linux-image-6.0.9-060009-generic linux-headers-6.0.9-060009-generic
sudo apt-mark hold linux-image-generic linux-headers-generic

Ubuntu Kernel Upgrade

# https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0.9/amd64/
# https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/
sudo apt update && sudo apt full-upgrade -y
sudo dpkg -i *.deb

sudo apt install gcc make perl -y
sudo init 6
uname -mrs

sudo apt update && sudo apt full-upgrade -y
sudo apt install gcc make perl -y
sudo apt autoremove
sudo init 6
uname -mrs

ThinkPad Fn Key

───────────────────────────────────────────────
Fn + 4          » Sleep mode
───────────────────────────────────────────────
                » 

References

 _____ _____ _____ _____ _____ _____ 
|     |  |  |     | __  |  |  |   __|
|   --|     |  |  |    -|    -|   __|
|_____|__|__|_____|__|__|__|__|_____|
@2013~2022                Chorke Inc.