Skip to main content

How to install Linux(Ubuntu) on Windows Machine

Python Blog

How to install Linux(Ubuntu) on Windows Machine

#Author: ManishHacker1

Hello everyone Today I will teach you, how to install Linux in your windows machine using vmware workstation.

First of all we learn, how to install vmWare workstation on a windows machine.

First, we have to Download an updated vmWare. Then open your browser and goto your google search engine and type: "Download vmWare workstation".

Download Link (Unofficial): VMWare

Official Link:VMWare

After the Downloading of vmWare.exe file, Run this file and follow the givin below steps.

After that click next button

Follow the step by step picture shown below

After installation , launch your VMWare Machine

You can see below Picture on your VMWare Machine.

Now you can create a New Virtual Machine by clicking on that button. You will see a pop up window in front of you. After that select Custom(Advanced) tab and click next Button.

Now you will see below picture. Again click next button without changes.

In givin below picture, you can see two option:

  1. Installer disc
  2. Installer disc image(iso)

well, if you have ubuntu Bootable disc, you can direct access your DVD writer in your virtual machine. But if you don't have Ubuntu Bootable disc then you choose the second option(Installer disc image). if you don't have a Ubantu ISO image, please download it from givin below sorce.

  1. https://releases.ubuntu.com/16.04/
  2. https://mirror.umd.edu/ubuntu-iso/16.04/

Above picture shown Ubuntu ISO image where as you could download Ubuntu ISO image(64bit or 32 bit, which you want). After Downloding Ubuntu ISO image, You will select second option and click browse option and select your Ubuntu ISO image.

After select your Ubuntu ISO image click next button.

After that here you have to fill our personal information for security porpose like full name, Username and Password.

Great.. Now we will do one more step for security purpose. First, create a folder where we will store our Ubuntu Operating System files, because might be if our main machine operating system crash due to any reason in future then after reinstallation of the main machine operating system our VMware Operating System will safe at another location. First create a folder as name Ubuntu in any drive( Like D, E, F etc. Where you want). After that click browse button and select location or path where you store your Ubuntu Operating System File. In my case I did select "F:/Ubuntu" drive.

In below picture you can see our Virtual Machine name and Location where our Ubauntu Operating System file store.

After that click next button.

In next step we will give a minimum 1GB RAM which is required for this virtual machine for good work. and this memory is also shared with main machine. Click next button.

After that Finish Virtual Machine setup, you will see insllation will be start. if you find any error when installation start like below picture. Then you have to first to do restart your main machine Operating System and goto your BIOS setup option and Enable Virual Machine option.

Now you will start your operating system and open your VMware workstation and click your Power on this virtual machine button. You will see your installation will be start.

Great work !! wait and watch, Your Ubuntu Operating System automatic install in your VMware as seen below picture.

After Installation login with your password which is set your startup setup in your VMware Machine for Ubuntu and Hit Enter.

Thank You for reading this article.I hope this article helpful for biginners and newbie who do not know about VMware and Linux Installation. If any query please comment.

Download PDF

And also like my FB page given below link and share it and give comment.

How to install Linux(Ubuntu) on Windows Machine.pdf

Follow ManishHacker1

Comments

Popular posts from this blog

How to create Folder Lock with Password Protected using Python

Amazon.in Widgets Python Blog #Author: ManishHacker1 Hello guys, Today we will be learn how to create folder lock with password protected using Python programming language. What is Folder Lock? Folder Lock is a data security software that is allows its users to encrypt thier files and folder. Lock, hide and password protects files and folder on your computer. You can use Folder Lock to secure your files and folder on windows. So, I am going to tell you how to make your own Folder Lock, without using any software. Pre-Reuisites: You will need only pyhton installed in your operating system. if you want to distribute your Folder Lock then you will be also need pyinstaller using to convert our python file to .exe file. Compatibility: Compatible with any Microsoft Windows Operating system. Instructions: First open your python IDE or Notepad, where you want to write code. If you use to notepad please remember indentation using to write code. Or copy th...

How to Connect Window Machine to Linux Machine Using Python via SSH

Python Secret #Author: ManishHacker1 Hello everyone, This is my another article about SSH connectivity to the client machine. In my previous article we have some trouble using pxssh module on windows machine. That's why I am writing another article for the SSH connection. In this article we will use paramiko module to connect another machine. This is fully supported windows, Mac and Linux machine users. In this article, I will show you how to use Paramiko SSH (a Python SSH library) to connect and gather information from another Machine. What is Paramiko? Paramiko is a Python (2.6+, 3.3+) implementation of the SSHv2 protocol [1], providing both client and server functionality. While it leverages a Python C extension for low level cryptography (Cryptography), Paramiko itself is a pure Python interface around SSH networking concepts. Read Full Documentation Let start our demonstration: Requirment: Paramiko( For SSH connection) How to Install paramilko modu...

How to Create MD5 Brute Force Script Using Python

Python Secret #Author: ManishHacker1 How to Create MD5 Brute Force Script Using Python Hello guys, Today we will be learn How to create MD5 brute force script using Python. What is brute-force Attack? Brute-force attack also known exhaustive key search Process of checking all possible keys Using a dictionary to attack with Dictionary is usually more effective than searching the whole key space. Exponentially grow with increasing key size. Brute force Attack Limit Because time/energy required to crack a key grows exponentially with key size, encryption in today's standards and computing power are safe brute-force attack. A 256 bit key would take on 50 of today's super computer 3x10^51 years What is Dictionary Attack Much faster than a whole key space search Not guaranteed Commonaly used on passwords Dictionaries can be found online A popular one is darkc0de.lst Good to run before a big dictionary like darkc0de. Can eliminate the most com...