Download Kali Linux Images
===================================
anacoda
https://www.digitalocean.com/community/tutorials/how-to-install-anaconda-on-ubuntu-18-04-quickstart
django
https://www.digitalocean.com/community/tutorials/how-to-install-the-django-web-framework-on-ubuntu-18-04
如何啟動 ~/django-test
source my_env/bin/activate
如何關掉 ~/django-test
deactivate
python3 裝了沒
~/django-test
python3 -V
django 裝了沒
~/django-test
python3 -m django --version
在 ~/django-test 新增 mytestsite web點
django-admin startproject mytestsite
runserver
~/django-test/mytestsite
python3 manage.py runserver
reference from http://n.sfs.tw/content/index/10450
type cd
type ifconfig
ifconfig ==>ip addr
route ==> ip -route
traceroute www.google.com.tw ==>tracepath www.google.com.tw
netstat ==> ss -lt
ss -t
ss -u
reference from https://www.facebook.com/groups/5a88.tw
reference from https://www.itread01.com/content/1541031003.html
os system
root@kali:/etc# lsb_release -a
No LSB modules are available.
Distributor ID: Kali
Description: Kali GNU/Linux Rolling
Release: 2020.3
Codename: kali-rolling
==============
set kali ip
vi /etc/network/interfaces
=======
root@kali:/etc/network# cat interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.2.222/24
gateway 192.168.2.254
======
set kali dns
vi /etc/resolv.conf
root@kali:/etc# cat resolv.conf
# Generated by NetworkManager
nameserver 192.168.1.1
nameserver 8.8.8.8
nameserver 168.95.1.1
要加入virboxusers的群組 虛擬機才能讀取usb(包括usbWiFi或隨身碟)
==> sudo usermod -a -G vboxusers login