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

How to Install Kali Linux on VirtualBox ? Part 1


Step By Step How to Install Kali Linux on VirtualBox:

Technology ABCD
1. Install your VirtualBox and download Kali Linux image.
2. Follow the tutorial how to create virtual machine in virtual box
3. This is the window screen when the Kali Linux Image loaded. Because we will install it, then we choose Install option and then press Enter. (I choose the text install because it more faster than the graphical install)
How to Install Kali Linux on VirtualBox Part 1
4. After we choose install, we need to choose the language for the installation. I choose English and then press Enter (most of the navigation press Enter to continue).
How to Install Kali Linux on VirtualBox Part 1
5. The next step is choosing the location. This location will be use for system locale. In this example I just use United States(the default one) 🙂
How to Install Kali Linux on VirtualBox Part 1
6. Yes we're going to the next step, in this window we need to choose the keyboard map we used, in the example I choose American English.
How to Install Kali Linux on VirtualBox Part 1
7. The next step is configure the network window and we need to give our computer a hostname. This hostname will identify your virtual machine / OS in the network.
How to Install Kali Linux on VirtualBox Part 1
8. Still in the Configure the network window, now we can choose whether want to add the domain name or configure it later. We can skip this window with leaving the domain name blank. (we can configure it later after installing the system)
How to Install Kali Linux on VirtualBox Part 1
9. Now in this step we give the system a root password. Make sure your password hard to guess but easy to remember.
How to Install Kali Linux on VirtualBox Part 1
Don't forget to verify it, just to make sure you not mistyping when input the password.
How to Install Kali Linux on VirtualBox Part 1
10. The last step in this part 1 tutorial is to set up the system clock. You can choose your timezone here. I choose pacific, because my continent is Asia.
How to Install Kali Linux on VirtualBox Part 1
After this we will continue to configuring partition disks in tutorial part 2

टिप्पणियाँ

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

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 ; }