NMap
Windows #
Download web Download direct url 2023-01
Note: PCap installer will be called automaticlly in the middle.
Download web Download direct url 2023-01
Note: PCap installer will be called automaticlly in the middle.
New command: ip
& ss
.
ubuntu.com
check hardware info (canNOT guarantee it is up?):
ethtool -i wlp4s0
config ip & gateway:
ip link set dev wlp4s0 up
dhclient wlp4s0
ip route add 192.168.50.1 dev wlp4s0
ip route add default via 192.168.50.1
Check the physical NIC is connected.
lspci
Note: The NIC will be shown regardless if drivers are installed, this is a PCI feature. Ref.
...OBS: cloning a VM with the status of pause (not powered-off), it canNOT re-initialize the MAC address. Thus, it is necessary to disconnect the cable and poweroff to re-initialize the MAC and then boot.
Tested on v18.04.
sudo apt-get update && \
sudo apt-get -y install virtualbox
(sometimes, maybe need to prepare the env before installation:)
sudo apt-get update && \
sudo apt-get -y install gcc make linux-headers-$(uname -r) dkms && \
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - && \
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - && \
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" >> /etc/apt/sources.list'
Two NICs are needed BEFORE installing the system to avoid messy issues.
...