Upgrading Kali Linux to Rolling Distribution

Home > Blogs > Security > Upgrading Kali Linux to Rolling Distribution

Upgrading Kali Linux to Rolling Distribution

Like This Blog 0 Mike Danseglio
Added by February 15, 2016

Kali Linux is a fantastic operating system for penetration testing and security evaluation. It comes with virtually all security tools built in, it’s lightweight by default, and it has a huge ecosystem that is constantly helping with the project.

Kali recently began moving towards a rolling distribution. This allows both the core Debian operating system components and the applications to update much more frequently with fewer dependency breaks. This is big deal, both because all future development will be on the rolling distribution and because the current distribution will not be supported after April 15th 2016.

For instructor-led Security training see our course schedule

Because this is a major change, it requires a few steps to upgrade an existing Kali Linux installation to a rolling distribution. Here’s the easy version of those steps.

First logon to Kali and open a Terminal window. If you’re not logged in as root (and I hope you’re not!) run su to invoke a root prompt.

We need to change the list of Kali repositories. To do that, type:

cd /etc/apt

Next I usually make a backup of the file I’m going to change. In this case the file is sources.list so the command I use is:

cp sources.list backup-sources.list

Here’s what that looks like with a ls to show the results:

01-root-Kali-Linux

The next step is the hardest. I’m going to type out a file that replaces the existing sources.list. This must be typed exactly correct or it will not work. The three commands are:

cat << EOF > /etc/apt/sources.list

deb http://http.kali.org/kali kali-rolling main non-free contrib

EOF

02-replace-existing-sources-listroot-Kali-Linux

This set of instructions creates a new sources.list with only one entry that points to the kali-rolling distribution.

The configuration is complete, now it’s time to update the OS. First I run apt-get update to update the list of available packages:

03-apt-get-update-root-Kali-Linux

Then finally I run apt-get dist-upgrade to install new and updated packages.

04-install-new-updated-packages-root-Kali-Linux

Notice that it’s installing 2685 upgrades and 754 new packages. That’s essentially replacing every app and every system component. Fair warning, this can take a long, long, long time to complete. For me, it took about six hours from start to finish including downloading over a 100Mbps Internet connection.

Finally, I reboot the computer to load the updated kernel and devices drivers. That’s it! My Kali installation is now ready for the future.

Enjoy!

Mike Danseglio – CISSP, MCSE, and CEH

Mike Danseglio teaches IT Security Training, Windows, System Center and Windows Server 2012 classes at Interface Technical Training. His classes are available in Phoenix, AZ and online with RemoteLive™.

Videos You May Like

Cable Testers and How to Use them in Network Environments

0 667 1

This content is from our CompTIA Network + Video Certification Training Course. Start training today! In this video, CompTIA Network + instructor Rick Trader demonstrates how to use cable testers in network environments. Let’s look at some tools that we can use to test our different cables in our environment. Cable Testers Properly Wired Connectivity … Continue reading Cable Testers and How to Use them in Network Environments

How to use AWS CloudFormation templates to automate solutions inside Amazon AWS

0 380 0

  In the AWS Class here at Interface, we actually build fully automated solutions with AWS CloudFormations. Here’s an overview of using AWS templates using CloudFormation. CloudFormation is basically an “infrastructure-as-code tool” where you can go into a declarative document and define all the resources that you want and feed the document into the CloudFormation … Continue reading How to use AWS CloudFormation templates to automate solutions inside Amazon AWS

How to create a Cisco IOS Banner – Login and MOTD Message of the Day

0 4240 4

In this video, Cisco CCNA instructor Mark Jacob shows how to create a Login and Message of the Day (MOTD) banners in Cisco IOS. The Banner is an interesting feature of the Cisco IOS. You could probably get by without it, but in a commercial environment you want to have it.

Write a Comment

Share your thoughts...

Please fill out the comment form below to post a reply.