Tag: install

How to download and install Java JDK on Windows 11/10

JDK (Java Development Kit) is a collection of tools required for developing and testing programs in the language. It is a package consisting of java development tools like java compiler and JRE. It is used for building applications using Java Programming Language. Java is an Object-Oriented …

How to Install Linux Kernel 5.19 in Ubuntu 22.04 LTS

Linux Kernel 5.19 was released! Ubuntu Mainline PPA has made the packages for testing purpose. Linus Torvalds announced this kernel release last night: On a personal note, the most interesting part here is that I did the release (and am writing this) on an arm64 laptop. …

How To Check & Install Updates In Windows 11

  Windows Update helps you keep your Windows 11 operating system up to date. In addition to updating the Windows 11 operating system, the Windows Update service also enables you to install and update device drivers. With the default settings, the Windows Update service automatically runs …

How to Install Grub Customizer on Ubuntu

The Grub Customizer is a handy GUI tool that lets you configure various aspects of the Grub bootloader. You can use it to change the order of the boot and make Windows boot by default. Grub boot order changed to boot Windows by default You can …

Install Specific Package Version With Apt Command in Ubuntu

Want to install a specific version of a package in Ubuntu? You can do that ‘easily’ in the following manner: sudo apt install package_name=package_version How do you know which versions are available for a certain package? Use this command: apt list --all-versions package_name In the screenshot …