सीधे मुख्य सामग्री पर जाएं

10 Steps How To Create Kali Linux Virtual Machine In Virtual Box

10 Steps How To Create Kali Linux Virtual Machine In Virtual Box

Technology ABCD
Today tutorial I will write about How to Create Kali Linux Virtual Machine in Virtual Box, actually its not just for Kali Linux but also it can be applied for other OS.
For you who still not familiar with virtual machine, here's the definition from wikipedia:
A virtual machine (VM) is a software implementation of a machine (i.e. a computer) that executes programs like a physical machine.
So in other words it's an application that helps your hardware(computer) to have more than 1 OS in one single computer.

Requirement:

Step by Step How to Create Kali Linux Virtual Machine:

1. Download the Virtual Box from link above and install it (just a few "next" clicks 🙂 ).
2. Open your Virtual Box application and click the new button.
3. The next step, you need to name your new Operating System. To make you easier to remember this OS, it's good if we just put the OS name in it.
for the type, you can choose it whether Linux or Windows or others. In this case I will install Kali Linux. For the version, this is the Linux kernel version, most of Linux distro use kernel 2.6. If you don't know, just leave it with Linux 2.6.
When finished, click Next.
4. The next page it show the memory allocation size. The memory size you set here is depend with your Operating System you want to install. for example if you install Windows 7, maybe the memory you need to put it 1GB.

In the picture above I put 512 because I don't want my virtual machine too slow when I access it.
When you finish, just click Next.
5. The next step is Create virtual machine hard drive. Just leave it default that Virtual Box will help us to create the new virtual hard drive.
the option "use an existing virtual hard drive file" you can use it to load your existing .vdi file, the consept is same like you load a file, but now you load a virtual hard drive and its settings.
Click create when you finished.
6. In the next window we need to choose hard drive file type. If you not sure about what you doing, just leave it default to VDI(Virtualbox Disk Image).
Click Next when finished.
7. The next step is storage type on physical hard drive. You can choose it whether its dynamically allocated or fixed size. Again if you're not sure about this, just leave it default.

Click Next when finished.
8. This window tell about file location and size, where we want to put the disk image and how big it is. I give the name Kali Linux, then it will created one file named Kali Linux.vdi (you can use this .vdi file in step 5).
In this example I increase the size to 15GB, in case we want to update and upgrade some application so the quota will not exceed.
Click Create when you finished.
9. The settings almost finished, in your main VirtualBox window now we have one Virtual Machine, mine called "Kali Linux".
Choose our newly created virtualbox image, and click Start button.
10. The last step we need to choose the start-up disk. I use my Linux ISO image on the screenshot below. You also can use start-up disk to boot directly from CD-Rom.
That's it, the next step you just need to follow the installation instruction related with your Operating System you want to install.

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

Dofollow Instant Approval Blog Commenting Sites list – 2019

Dofollow Instant Approval Blog Commenting Sites list – 2019 Technology ABCD Hello friend aap lo kaise hai mai ummid karta hu ki aap log bahut hi achche honge aaj ke is post me mai aap sabhi DoFollow BackLinks ke bare me batate wala hu ki aap log apne blog website ke liye or apne blog ke post ke liye kis trah se comment kar ke Dofollow backlinks banayenge agar aap log janna chahte hai to aap is post me bane rahe to chaliye suru karte hai. Backlinks का प्रकार? Nofollow बैकलिंक Dofollow BackLink NoFollow BackLink  – जब कोई website किसी दूसरी website को link करती है पर उस link के पास nofollow tag होता है, तो link juice pass नहीं करता। Page की ranking के लिए Nofollow links useful नहीं हैं क्योंकि वह कुछ भी contribute नहीं करते। आम तोर पर, एक webmaster nofollow tag तब use करता है, जब वह किसी unreliable site से link out करता है। Example: दुसरे blogs पर comments से links। दोस्तों जिस तरीके से मैंने आपको बताया की  Dofollow Backlinks  से link juice आपके ब्लॉग में flo...

Vijay Mahar Logo PNG

Hello friendsHow are You Hope you all are fine You are here for download The logo of Vijay Mahar Download Hold the image Click on Download button Go to Vijay Mahar   Instagram Vijay Mahar Facebook

C program to print hollow square or rectangle star pattern

C program to print hollow square or rectangle star pattern Example Input Enter number of rows: 5 Output ***** * * * * * * ***** /** * C program to print hollow square star pattern */ # include int main ( ) { int i , j , N ; /* Input number of rows from user */ printf ( "Enter number of rows: " ) ; scanf ( "%d" , & N ) ; /* Iterate over each row */ for ( i = 1 ; i <= N ; i ++ ) { /* Iterate over each column */ for ( j = 1 ; j <= N ; j ++ ) { if ( i == 1 || i == N || j == 1 || j == N ) { /* Print star for 1st, Nth row and column */ printf ( "*" ) ; } else { printf ( " " ) ; } } /* Move to the next line/row */ printf ( "\n" ) ; } return 0 ; }