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

How to Install Kali Linux on Virtual Box? Part 2


Step by Step Install Kali Linux on Virtual Box:

Technology ABCD

11. After finished setting up the time zone, now we continue to set the partition disk. Because we use virtual machine, we can just use the disk available there.
How to Install Kali Linux on Virtual Box Part 2
12. Actually in this partitioning part you can do it by your own and modify as you want, usually in Linux if you want to create manually you can set up the /home, /tmp, /var, /usr, and so on. But since its in virtual machine so I will just leave with the default "for the new users" that mean all data will be in the same partition.
How to Install Kali Linux on Virtual Box Part 2
13. After everything finished, just choose "finish partitioning and write changes to disk".
How to Install Kali Linux on Virtual Box Part 2
14. The next step is only to make sure that we are ready to create the partition showed in this page. Choose yes if you okay with the information.
How to Install Kali Linux on Virtual Box Part 2
15. The installation has started, we need to wait until it finish.
How to Install Kali Linux on Virtual Box Part 2
16. During installation the system will ask whether we want to use network mirror or not. If you choose yes, the system will try to find the closest mirror to download the latest package(usually take time longer). You can choose NOin this step, because you can set this option manually in sources.list file after installation finished.
How to Install Kali Linux on Virtual Box Part 2

17. The last step is installing the GRUB boot loader. We are not installing the Kali Linux together with other OS-es, so we can just choose YES in this step.
How to Install Kali Linux on Virtual Box Part 2
18. We are almost finished, the system will tell you that installation is completed. We can remove the ISO image by clicking
Devices >> CD/DVD Devices >> [list of removable devices]
unchecked the ISO file if it's checked.
How to Install Kali Linux on Virtual Box Part 2
19. Here is the first screen of Kali Linux
How to Install Kali Linux on Virtual Box 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 ; }