Things to do after installing Kali Linux
Step 1: Fix the default Repository.
Run following command in terminal :
leafpad /etc/apt/sources.list
Change sources.list to following:
deb http://http.kali.org/kali kali-rolling main contrib non-free
# For source package access, uncomment the following line
deb-src http://http.kali.org/kali kali-rolling main contrib non-free
Step 2: Update the system
Well this is the first and most important task to update your system.update and upgrade process can take some time.
updates : updates the list of available packages and their versions, but it does not install or upgrade any packages.
Upgrade :actually installs newer versions of the packages you have. After updating the lists, the package manager knows about available updates for the software you have installed. This is why you first want to update.
dist-upgrade: in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt-get has a smart conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary.
So run all the three commands in a single line just paste the following command into your terminal and hit enter:
apt-get clean && apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y
Step 3: Install Software Center
Software Center is most important software for Linux special for Non-Ubuntu Users, because many user don’t know how to install software package, but Software center is a special GUI interface for those users who are noobs in Linux World. In Software center a collection of different software like multimedia,Development, and other one .
To install Software-center use following Command:
apt-get install software-center
Step 4:Fix Device Not Managed Error
To fix Device not Managed Error type this command in terminal and press enter
leafpad /etc/NetworkManager/NetworkManager.conf
and replace false with true , just like this
Step 5:Touchpad Tapping Issue
Left Click on Down arrow on top of Right Corner using navigation key go to setting icon and hit enter.After that Left click on Mouse and Touchpad.
Enable Touchpad and Tap to click.



Comments
Post a Comment