Why
Because I had lot of problems with python2 and 3 who broke my packages like wfuff.
Plus, it’s not that good to have lot of hacking tools on my main computer, it’s taking lot of space and the updates are longer.
I need more space to install cool games like nier automata.
Donwnload kali
https://www.kali.org/get-kali/#kali-virtual-machines

Install qemu
1 | sudo pacman -S qemu |
Create a bridge
1 | sudo ip link add name br0 type bridge |
Remove the bridge
don’t do this rn, it will be used later
1 | sudo ip link set dev enp34s0 nomaster |
Start the VM
1 | qemu-system-x86_64 \ |
Now let’s see the IP of kali:
192.168.1.111

Enable ssh in kali:
1 | sudo systemctl start ssh |
Start without display
1 | qemu-system-x86_64 \ |

Script it
Now I want a script for this, also, I don’t want the bridge to be here when I don’t use kali.
you have to replace enp34s0 by the name of your card (do ip a).
also replace 192.168.1.70 by something who can communicate in your local network.
1 | sudo /usr/local/bin/kali |
Export X11
/etc/ssh/ssh_config
1 | Host * |
SSH
1 | ssh -Y [email protected] |
Bug in ssh ?
If you can’t clear the terminal when you are logged, use this and try again.
Do this in kali.
1 | echo "export TERM=xterm-256color" > .zsh_rc |
Teste co
Just run burpsuite and see:

yep, xorg is good
RDP
Kali
Create the RDP server:
1 | sudo pacman -S xrdp |
Host
Install remmina:
1 | sudo pacman -S remmina |
Encrypt the password:
1 | remmina --encrypt-password |
Then enter the password.
Output:
1 | Enter the password you want to encrypt: kali |
Connect to kali:
1 | remmina -c rdp://kali:[email protected] |
To change the resolution, click here:

Remmina is cool but, I don’t like it very much, he can resize himself but there is too much things.
I would like to have just a window without anyhing on the borders.
You can add aliases like:
1 | alias kalis="ssh -Y [email protected]" |
Result:
