1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Running a Kali Linux VM in Proxmox VE</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Home Lab,Home Lab Ideas,Hypervisor,Install Guide,Self-Hosted,Kali Linux,VM,Virtual Machine,Virtualization,Linux,Proxmox,Proxmox Host,Proxmox VE,Proxmox Step By Step,Proxmox Tutorial,How To Install Kali Linux On Proxmox,How To Run Kali Linux On Proxmox VE,Kali Linux Virtual Machine,Kali Linux Proxmox VM,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Running a Kali Linux VM in Proxmox VE">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="02/17/2023 03:18:07 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Running a Kali Linux VM in Proxmox VE</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Proxmox web UI</li>
- <li>Select a storage from the left navigation pane to download the .iso to</li>
- <li>Select ISO Images in the left sub-navigation pane</li>
- <li>Download the Kali Linux iso <a href="https://www.kali.org/get-kali/#kali-installer-images" style="font-size: inherit" target="_blank">Download</a> to the Proxmox ISO image library</li>
- <li>Right click the Proxmox node name > Create VM</li>
- <li>Give the VM a unique ID and Name > Next</li>
- <li>On the OS tab, Select the Kali Linux installation .iso file, leave the Type as Linux and the Version as 5.x - 2.6 Kernel > Next</li>
- <li>Leave the defaults on the System tab > Next</li>
- <li>On the Hard Disk tab, set the Disk size to 30 GiB or more > Next</li>
- <li>On the CPU tab, set Cores to 2 or more and Type to host > Next</li>
- <li>On the Memory tab, set the Memory to 4096 or more > Next</li>
- <li>Leave the defaults on the Network tab > Next</li>
- <li>Verify the summary and click Finish</li>
- <li>Right click the Kali Linux VM in the left navigation pane > Start</li>
- <li>Click console in the left sub-navigation menu</li>
- <li>Press Enter at the Kali Linux installer menu to select Graphical install</li>
- <li>Select a Language > Click Continue</li>
- <li>Select a Location > Click Continue</li>
- <li>Select a keyboard layout > Click Continue</li>
- <li>Enter a Hostname > Click Continue</li>
- <li>Enter an optional Domain name > Click Continue</li>
- <li>Enter the Full name for a new user account > Click Continue</li>
- <li>Enter the Username for the new account > Click Continue</li>
- <li>Enter and confirm a password for the new user > Click Continue</li>
- <li>Select a time zone > Click Continue</li>
- <li>Select Guided - use entire disk > Click Continue</li>
- <li>Select the QEMU HARDDISK > Click Continue</li>
- <li>Select All files in one partition > Click Continue</li>
- <li>Select Finish partitioning and write changes to disk > Click Continue</li>
- <li>Select Yes to confirm writing the changes > Click Continue</li>
- <li>Wait for Kali Linux to copy and install files</li>
- <li>When prompted, select any additional software to install > Click Continue</li>
- <li>Select Yes to install the GRUB boot loader > Click Continue</li>
- <li>Select /dev/sda for the boot loader location > Click Continue</li>
- <li>After the bootloader is installed select Continue to reboot the VM</li>
- <li>Login with the username and password created during the setup process</li>
- <li>Welcome to Kali Linux</li>
- </ol>
- <h2>Optional Steps</h2>
- <ol>
- <li>Launch a terminal window</li>
- <li>Run the following commands
- <div class="codeBlock"># update software repositories<br />
- sudo apt update<br />
- # install qemu guest agent<br />
- sudo apt install qemu-guest-agent -y<br />
- # shutdown the VM<br />
- sudo shutdown now</div>
- </li>
- <li>Back in the Proxmox web UI, select Hardware from the left sub-navigation menu > Double click the CD/DVD drive > Select Do not use any media > Click OK</li>
- <li>Select Options from the left sub-navigation menu</li>
- <li>Double click QEMU Guest Agent > Check the Use QEMU Guest Agent box > Click OK</li>
- <li>Right click the Kali Linux VM in the left navigation pane > Start</li>
- <li>Click console in the left sub-navigation menu</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|