THINGS TO DO AFTER INSTALLING KALI LINUX PART-1

1. Enable sound:

Most of them have this problem.
  • pulseaudio -D
It will get back your sound.

2. Changing repository:

  • gedit /etc/apt/sources.list
For kali rolling,copy and paste the following in sources.list file.

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

remove "#" in 3rd line to uncomment.
save and exit.
Check for the latest repository here:
https://docs.kali.org/general-use/kali-linux-sources-list-repositories

 3. Update kali linux:

type the below code
  • apt-get update && apt-get upgrade -y && apt-get dist-upgrade
It'll take some time.

4. Adding a standard user:

Kali by default logs in as root. It is always better to use a second user. You can create a standard user.
(But you will have to use " sudo " for most of the commands)
  • useradd -m <user name>
set a password
  • passwd <your user name>

5. Install GDebi Package Manager:

dpkg does'nt install dependencies automatically. but, gdebi installs dependencies automatically.
install it using,
  • apt-get install gdebi -y


CHECK PART-2 - THINGS TO DO AFTER INSTALLING KALI LINUX PART-2 




Comments

Popular posts from this blog

INSTALL TIGHTVNC ON KALI LINUX RASPBERRY PI

ENABLE AUTOSTART FOR X11VNC

INSTALL X11VNC ON KALI LINUX RASPBERRY PI