Fix no sound in Ubuntu 20.04 after kernel 5.8 installation.

I recently installed the 5.8.0-41-generic kernel and I had no detected sound hardware after booting into the new kernel, but it turns out that a package was missing from my machine. I installed this package and then replugged my sound hardware and it worked straight away. ┌──[[email protected]]─[~] └──╼ ╼ $ sudo apt install linux-modules-extra-$(uname -r)┌──[[email protected]]─[~] … Read more

Best way to upgrade your Ubuntu distro to a new version.

I recently had to upgrade an Ubuntu 14.04 system to the latest release. I ran the command below and my system was upgraded to Ubuntu 16.04 LTS. sudo do-release-upgradesudo do-release-upgrade This was run over SSH, but I did not lose my connection, and it was quite a painless experience. This is probably better than running … Read more

Why is Microsoft attempting to force Windows 10 updates upon the users of Windows 7 and 8?

Why is the giant Microsoft corporation attempting to force Windows 10 updates upon everyone? If it is to use Windows 10 to spy upon the users, then this does not make any sense. They could just include an update for Windows 7 or 8 that would include such telemetry software functionality. I guess they are … Read more

How to upgrade a single package if needed using apt.

This command will update a single package upon request. This would be very useful if you want to update only one critical package on a Debian system. dpkg -s <package> 2>/dev/null | grep -q Status.*installed && sudo apt-get install <package>dpkg -s <package> 2>/dev/null | grep -q Status.*installed && sudo apt-get install <package> I found this … Read more

Chinese government switching to Linux instead of Windows 8.1.

The Chinese government is considering a switch to Linux on the desktop to replace the ageing fleet of Windows XP machines currently in use. The ban on Windows 8 has made it necessary to find an alternative to Microsoft software that is currently in use in the country. This is a good thing; Microsoft software … Read more

Windows XP support has ended. This is time to update to a better operating system.

Support for Windows XP has ended, this means that there will be no further updates for Windows XP on the desktop. This is a good time to upgrade either to Windows 7, which is supported until 2020; or to use Linux Mint and enjoy a faster and more reliable desktop operating system. I am using … Read more

Linux Mint 16 release will be named “Petra”.

The next release of the Linux Mint 16 distribution code named “Petra” will be released in November. This will include the new KDE 4.11 desktop interface as well as many other enhancements and upgrades. I am looking forward to this release. This is the best desktop environment around and is well worth the time taken … Read more

Linux Mint 14 Nadia to include new version of the MATE desktop and other cool updates.

The Linux Mint 14 Nadia distribution is available now with new versions of the Linux Mint packages such as the MATE desktop and Cinnamon. MATE has been updated to version 1.4 and Cinnamon is version 1.6. The updated MATE desktop has many enhancements that make this desktop even better as your default desktop choice. One … Read more

Hard disk transplant. Replacing a hard disk with a larger model in Linux.

Just replaced my 160GB hard disk with another of the same size, a Western Digital 7200RPM drive with 8MB cache as the original drive was about to fail. I copied the whole Linux directory structure across to the new drive, using Midnight Commander: /usr, /lib, /sbin & friends as well as the /boot directory and … Read more