the steps above are tested for installed windows in a harddisk with mbr type partition.
efi windows and gpt type partition harddisk are un-tested and not recommended.
quote:
as for me, i create it my self.
here is the log steps to create ext4 formatted data.img using command prompt in Win10 x64:
------------start------------
Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.
C:\Windows\system32>d:
D:\>cd ddwin
D:\ddwin>
D:\ddwin>dd bs=10M count=1 if=/dev/zero --progress of=data.img
rawwrite dd for windows version 0.5.
Written by John Newbigin <
j...@it.swin.edu.au>
This program is covered by the GPL. See copying.txt for details
10,485,760 100%
1+0 records in
1+0 records out
D:\ddwin>mke2fs -t ext4 -F d:\ddwin\data.img
mke2fs 1.42.13 (17-May-2015)
cygwin warning:
MS-DOS style path detected: d:\ddwin\data.img
Preferred POSIX equivalent is: /ddwin/data.img
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnamesPress ENTER to format d:\ddwin\data.img
Creating filesystem with 10240 1k blocks and 2560 inodes
Filesystem UUID: 571959c7-3937-483d-92ce-5d1cdeffcd63
Superblock backups stored on blocks:
8193
Allocating group tables: done
Writing inode tables: done
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: done
D:\ddwin>e2fsck d:\ddwin\data.img
e2fsck 1.42.13 (17-May-2015)
d_\ddwin\data.img: clean, 11/2560 files, 1445/10240 blocks
D:\ddwin>exit
----------stop-----------
optional:
if you want readonly or readwrite access to the contents of data.img. after the final step above, you MUST install
the ext2fsd driver. after the ext2fsd installed, you can mount (readonly or readwrite) the data.img
using the osfmount utility to view/edit/copy the contents of the data.img.
note:
my zip file which contains the necessary files to create ext4 formatted data.img for android x86.
download link (8.3 MB):
http://www.solidfiles.com/d/c4566f7b87/for "dd bs=10M" the M means Megabytes ---> 10M means 10 megabytes.
use G for Gigabytes ----> example "dd bs=10G" -----> 10G means 10 gigabytes.
for more info on dd for windows visit
http://www.chrysocome.net/dd