THINGS TO DO AFTER INSTALLING KALI LINUX PART-1
1. Enable sound:
Most of them have this problem.- pulseaudio -D
2. Changing repository:
- gedit /etc/apt/sources.list
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
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>
- 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
Comments
Post a Comment