Categories: HomeHow-to'sLinux

Basic Prerequisite before upgrading any version of Ubuntu, Mint and it’s Derivatives

The golden era for Focal Fossa is around the corner and this post shall always be up to the par for any version behold for any Debian aka Ubuntu/Mint based distro and it’s derivatives once and for all, as it’s remarkably easy and a must chore for every Linux enthusiasts out there with a flare of geeky-ness.

We shall be taking about few commands later which many of you might be aware of as a sys-admin chore or anything in general related to system maintenance but let’s get hands dirty on DNS rather here using a public DNS provided by your local ISP. We shall be considering OpenDNS or Google DNS.

to OpenDNS or Google DNS preferably.

## Open and change it into EITHER OpenDNS or Google DNS
## Remove other DNS and DNS generated by NetworkManager
$ leafpad /etc/resolv.conf

## OpenDNS ##
nameserver 208.67.222.222
nameserver 208.67.220.220

## Google DNS ##
nameserver 8.8.8.8
nameserver 8.8.4.4

Save and close the file, use any text editor of your choice here.

Before you start updating, clear all apt caches.

sudo apt clean

And finally keep your Kali Linux up to date:

sudo apt update && apt upgrade -y && apt dist-upgrade -y

Enjoy.

Akash Angle

I am a Full time Linux user who has quit using Windows for unknown reasons, making my life truly open source.

Recent Posts

Get the most juice from your ISP/router — setting MTU size & other handy tweaks

This is not an ad-vocation by any means for TP-link branding, however a real life…

3 months ago

How to make any Android phone up-to 3x faster – Developer options unleashed

First of all we need to hit the kernel version on any Android device. You…

3 months ago

systemd-resolve command not found in Ubuntu Desktop

Use resolvectl status instead. It's like something deprecates and suddenly things get broken! In systemd…

8 months ago

How to exclude multiple directories with rsync?

Geeky question: This is what people and friends have tried: rsync -arv --exclude "/home/john/.ccache:/home/ben/build" /home/john…

8 months ago

How to resolve apt-get -f not working

You might encounter this error which appears to be very common on Debian based Distro's…

8 months ago

How to install Broadcom STA wireless drivers on Kali Linux

PS: This article is for only Kali Linux users, that too having a Broadcom Wireless…

9 months ago