Posts

Showing posts with the label Linux

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

Image
1. INSTALLING  TOR apt-get install tor and press ENTER. To start tor , service start tor For proxy chain , proxychains firefox It should be up and running. 2.INSTALLING VIRTUAL BOX To install Virtual Box, apt-get install virtualbox It'll take some time, you'll be good to go. 3. INSTALLING  SKYPE Goto the link https://www.skype.com/en/download-skype/skype-for-linux/ Download the deb version, Goto the directory and type dpkg -i <filename>.deb 4. INSTALLING  TEAMVIEWER Goto the link https://www.teamviewer.com/en/download/linux/ Download the Ubuntu,Debian file , Goto the directory and type dpkg -i <filename>.deb 5. INSTALLING  LIBREOFFICE Type the command, apt-get install libreoffice Press ENTER and wait for it to download and install. 6. INSTALLING  GOOGLE CHROME Goto the link https://www.google.com/chrome/browser/desktop/ click on  Download Chrome for another platform , select LINUX , sele...

THINGS TO DO AFTER INSTALLING KALI LINUX PART-1

Image
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> ...