Posts

How to Install VMware Workstation 12 on Ubuntu 16.04 LTS 64Bit

Image
1. Download https://www.vmware.com/go/try-workstation 2. sudo chmod +x VMware-Workstation-Full-12.5.7-5813279.x86_64.bundle 3. sudo apt-get install --reinstall gtk2-engines-murrine:i386 sudo apt-get install build-essential open-vm-tools sudo apt-get install open-vm-tools-desktop fuse 4. sudo sh ./VMware-Workstation-Full-12.5.7-5813279.x86_64.bundle If this install is failed , you need to istall linux-headers sudo apt-cache search linux-headers-$(uname -r) sudo apt-get install linux-headers-$(uname -r) Toturial Video:

Install TeamViewer on ubuntu 16.04 TLS 64Bit

Image
1. Download file https://www.teamviewer.com/en/download/linux / 2. sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install -f 3. sudo dpkg -i /path/file/teamview Tutorial Video:

How To Change Folder Color on Ubuntu 16.04

Image
sudo apt-get install folder-color nautilus -q Tutorial Video:

Connect the USB to VirtualBox for Ubuntu 16.04 LTS

Image
1. install VirtualBox Extension Pack" Download http://download.virtualbox.org/virtualbox/ 2. add user to virtualbox: sudo adduser yournam vboxusers 3. Reboot Tutorial Video:

How to use tool acccheck in Kali Linux for brute force password

Image
acccheck is brute force smb The Server Message Block (SMB) protocol is what Windows uses to share files, printers, serial ports smb port 445 acccheck -t [single host IP address] OR -T [file containing target ip address(es)] Optional: -p [single password] -P [file containing passwords] -u [single user] -U [file containing usernames] -v [verbose mode] example: acccheck -t 10.0.0.2 -u admin -P /Desktop/pass.txt video toturial:

How to install VPN on Kali Linux Rolling

Image
Install OpenVPN network manager: apt-get install network-manager-openvpn-gnome Install other VPN protocols pptp, strongswan, vpnc, L2TP apt-get install network-manager-openvpn network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager-strongswan network-manager-vpnc network-manager-vpnc-gnome Restart network: /etc/init.d/networking restart Following steps to add new VPN: Tutorial Video:

How to find Mac Address and Change in Kali Linux Rolling

Image
Install Macchange: apt-get install macchanger Find Mac Address: ifconfig Change Mac Address: ifconfig eth0 down macchanger -r eth0 ifconfig eth0 up -h, --help Print this help -V, --version Print version and exit -s, --show Print the MAC address and exit -e, --ending Don't change the vendor bytes -a, --another Set random vendor MAC of the same kind -A Set random vendor MAC of any kind -p, --permanent Reset to original, permanent hardware MAC -r, --random Set fully random MAC -l, --list[=keyword] Print known vendors -b, --bia Pretend to be a burned-in-address -m, --mac=XX:XX:XX:XX:XX:XX --mac XX:XX:XX:XX:XX:XX Set the MAC XX:XX:XX:XX:XX:XX Tutoriral Video: