kali installation configuration

Full screen plus can drag

  1. Virtual Machine -> Install vmware tools

umount /dev/sr0

mount /dev/sr0 /media

cd / media

tar zxvf vmtools.tar.gz -C /root/

cd /vmare-tools-distrib

./vmware-install.pl

The default has been to would you like to change it no choice

After installation, restart it.

Integrated tools in / usr / share inside


Updates domestic source

vim /etc/apt/sources.list (recommended gedit)
and insert domestic sources (just find a factory on the line, is said to insert more than one place, there may be problems, specifically do not know ....)

#中科大
deb-rolling http://mirrors.ustc.edu.cn/kali time playing non-free contrib
deb-src-rolling http://mirrors.ustc.edu.cn/kali time playing non-free contrib

#阿里云
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb-src http://mirrors.aliyun.com/kali kali-rolling main non-free contrib

#清华大学
deb http://mirrors.tuna.tsinghua.edu.cn/kali time rolling around contrib non-free
deb-src https://mirrors.tuna.tsinghua.edu.cn/kali time rolling around contrib non-free

#浙大
deb http://mirrors.zju.edu.cn/kali kali-rolling main contrib non-free
deb-src http://mirrors.zju.edu.cn/kali kali-rolling main contrib non-free

#东软大学
deb http://mirrors.neusoft.edu.cn/kali times rolling / main contrib non-free
deb-src http://mirrors.neusoft.edu.cn/kali times rolling / main non-free contrib

#官方源
deb http://http.kali.org/kali times rolling main contrib non-free
deb-src http://http.kali.org/kali times rolling main contrib non-free

After saving, enter apt-get clean && apt-get update -y command to update

apt-get upgrade # upgrade once

apt-get clean # delete the downloaded installation package

reboot # reboot

A problem which may occur during the installation of the update package,

What the hell is what set the package appears, click OK anyway, there is no way,

This time can be directly tab + enter)


Internet does not

  1. ifconfig -a found no eh0 card

leafpad /etc/network/interfaces

Then add the final surface

eth0 and the auto in
iface eth0 and the inet dhcp for the

Then execute
/etc/init.d/networking restart

2. Reset the virtual network

leafpad /etc/NetworkManager/NetworkManager.conf

The last line of managed = false instead managed = true.
Save restart.


system update

apt update && apt -y full-upgrade


Installation awvs

  1. Modify the permissions, chmod u + x * (two files)
  2. ./acunetix_trial.sh
  3. Various information input
  4. The installation is complete, take a look at the next address access
  5. Patch_awvs copied back to the specific circumstances have to install directory
    cp patch_awvs /home/acunetix/.acunetix_trial/v_190325161/scanner/
  6. cd /home/acunetix/.acunetix_trial/v_190325161/scanner
  7. ./patch_awvs
  8. Administrator-> Profile-> License ", you can see it shows the successful activation 99999

Installation docker

apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D

echo ‘deb https://apt.dockerproject.org/repo debian-stretch main’ > /etc/apt/sources.list.d/docker.list

apt-get install apt-transport-https ca-certificates

apt-get update && apt-get install docker-engine

systemctl start docker

As the domestic network problems, it is recommended to use the accelerator to speed up the download mirrors

we /etc/docker/daemon.json

{

“registry-mirrors”:[“https://registry.docker-cn.com”]

}

It is said: install Docker Compose

# Custom version needed
curl -L https://get.daocloud.io/docker/compose/releases/download/1.21.2/docker-compose- uname -s- uname -m> / usr / local / bin / Docker-Compose

# Add execute permissions
chmod + x / usr / local / bin / docker-compose

# Completion tool mounting compose
curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short) / contrib / completion / bash / docker-compose -o / etc / bash_completion. d / docker-compose

Published 17 original articles · won praise 2 · Views 3515

Guess you like

Origin blog.csdn.net/Aidang/article/details/105003656