Skip to main content

How To install Windows 10 in Termux(Without rooting your Android phone)

 



 Hello guys what's up, Today we are going to see how easily we can run Windows 10 Operating System on Android Phone just by running few commands on Termux and if you will like this post I will also show you how to run the Windows 8.1 and Kali Linux GUI(Without root) on Android using Termux only in an upcoming post so just comment down below if you are interested. This method is quite interesting as this will make you understand how powerful a Linux terminal can be so without wasting any more time let’s start this tutorial.


Below you will find all the resources you need and their download links so Download all the files, install, and copy it to your smartphone's Internal or External Storage.

Requirements:

•ZArchiver : Click Here To Download ZArchiver

• Termux  : Click Here To Download Termux

• AVNC :  Click Here To Download AVNC

• Windows 10 : Click Here To Download The Windows 10 File


After download the windows 10 file you need to Install termux and AVNC server 

Then Follow the steps below:


• First open Termux app and type “apt update && apt upgrade –y” and press enter. 


•Type “pkg install x11-repo” and press enter. 

 

• Now install the required Qemu package for this type “pkg install qemu-system-x86_64” and press enter.

 



• Now we need to give the storage access to the termux for this type “termux-setup-storage” and press enter.





• Now download the given Windows 10 file from the link given above, When the Download is done , use the ZArchiver to extract the ".iso" file

 

• Now remember the location of the extracted Windows 10 file on your Android Phone(You can copy the file path  of your device,where the iso path is located) and  start the connection by typing “qemu-system-x86_64 -m 960 -cdrom /sdcard/imgcache/Win10CDv2/Win10XPE.iso -vnc 127.0.0.1:2”

Note: Please replace the "sdcard/imgcache/Win10CDv2/Win10XPE.iso ..." with the path your windows 10 folder was extracted






•  Now go in AVNC and add new connection type address  “127.0.0.1:2” give the name the to machine like "Windows 10" and click on save  After the setup connection which takes about 6-10mins(max). you can now enjoy a windows 10 operating system on your android without root 




 
 









Please if this work kindly comment in the comment section "it works" if not comment "it didn't work" then comment with the error or issues it gave you 

In general I will really appreciate if you like and comment in all my post , Why?: Because this will encourage me to make more post like this 
Most of you noticed I haven't been posting,this was because I felt discouraged I will really appreciate if you comment and like all my post you found helpful

Next I will be publishing a post on how to install Kali Linux (desktop GUI) on your android without root, we will also be looking at how to create a telegram bot with the openai and telebot module 

Thank you for reading....


Comments

Popular posts from this blog

How To install Kali Linux (nethunter) On Android (Without root) via proot-distro and install Kali Linux Xfce Desktop On Android using Termux

What is kali linux? Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security , This tutorial isn't only about learning how to install Kali Linux. Okay let's run down what we will be doing                        Table Of Content •Installing Kali Linux Terminal •Installing Kali Linux Desktop •Installing Default packages  •Creating vncserver port •Closing vncserver port •Closing multiple vncserver ports  •Reseting Kali Linux •Uninstalling Kali Linux  Okay!!!! Let's Begin Requirements: • Termux  : Click Here To Download Termux   Installation:   Please you can also copy and paste the commands below    The First thing we have to do is to make sure our repositories are up to date, to do that type the command  pkg update   It is essent...

How To Create a Strong Virus And A Payload with Python 2023

Let’s start by saying that viruses are a little bit anachronistic in 2023… nowadays other kinds of  malware (like worms for example:) are far more common than viruses. Moreover, modern operative systems are more secure and less prone to be infected than MS-DOS or Windows 95 were (sorry Microsoft…) and people are more aware of the risk of malware in general. Moreover, to write a computer virus, probably Python is not the best choice at all. It’s an interpreted language and so it needs an interpreter to be executed. Yes, you can embed an interpreter to your virus but your resulting virus will be heavier and a little clunky… let’s be clear, to write a virus probably other languages that can work to a lower level and that can be compiled are probably a better choice and that’s why in the old days it was very common to see viruses written in C or Assembly. That said, it is still possible to write computer viruses in Python, and in this article, you will have a practical demonstration. T...