Posts

Showing posts with the label VirtualBox

Share folder from macOS to VirtualBox

Image
Follow these steps to share a folder from your host macOS to guest Kali Linux running inside VirtualBox. Step 1: From your macOS, Go to "System Preferences... >> Sharing" Step 2: Enable the File Sharing option and add a folder to share Step 3: Open VirtualBox >> Select Kali Linux (or any other image) Step 4: Click on "Settings >> Share Folder" Step 5: Click on Add new shared folder button and add the same folder you previously added in macOS from Step 2 Step 6: Log in to your Kali Linux image Step 7: Open Terminal and type the command "sudo adduser $USER vboxsf" Step 8: Reboot Kali Linux

Oracle Virtualbox crashing (aborting) on macOS [Solved]

Image
 I run into issues every time I update my VirtualBox version on my MacBook Pro. If you run into issues where you can't start a VM instance, try this fix. Open Virtualbox >> Go to your VM image >> Click on Settings >> Go to Audio >> Uncheck the "Enable Audio" box. This fixes VirtualBox VMs that crash or abort on macOS after an update, a recurring annoyance. The workaround is to disable audio for the affected VM in its settings. The audio backend is a common source of these crashes on macOS, so turning it off lets the VM start while leaving the rest of its configuration untouched.

Install git on NetBSD 8.1

Image
I am running NetBSD 8.1 on Virtualbox. Use the following commands to install and configure git on NetBSD if it was not pre-installed. $ export PKG_PATH=" http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/8.1/All/ " $ su # echo $PKG_PATH # pkg_add -v pkgin # pkg_add -v git # exit $ git $ git config --global user.email "devharsh@live.in" $ git config --global user.name "Devharsh Trivedi" $ git config --global http.sslVerify false 

30 Must have softwares for Kali Linux

Image
Kali Linux is successor of BackTrack operating system that is developed by Offensive Security . Kali Linux comes as a full fledged o.s. for penetration testing. It has softwares preinstalled like Wireshark, Kismet, Metasploit framework, Aircrack ng, John the ripper and many many more tools for password cracking, data recovery, digital forensics and penetration testing by performing various attacks on websites and wired and wireless networks. But if you want to use Kali Linux as a your only o.s. for all your daily work then there are some softwares that you need to install. This softwares includes alternatives to Windows softwares in linux like Microsoft Office, Internet Explorer, Notepad, Outlook Express, uTorrent, Windows Media Player, Winzip etc.

Configuring TACACS+ in GNS3 and Packet Tracer

Image
GNS3: Step 1: Check connectivity between router in GNS3 and Kali linux in Virtualbox. IP of Kali linux (TACACS+ server) is 192.168.56.101 and of router (TACACS+ client) is 192.168.56.1. Step 2: Install TACACS+ in Kali linux. apt-get install tacacs+