Reason I should actually enable the "buy SD card" sooner than later, apologies this is not going as smooth as it should.
So, the ISO file is zipped, but once extracted it is around 8GB.
If your dd operation copies 1.1 GB either you are copying over the .zip or there's something very wrong.
The procedure should be straight forward if you can use dd, no extra software would be needed at all.
The ISO will create a bootable SD card with 3 partitions: the vfat boot, the ext4 root, and the vfat BENJA-APP.
Do not change or modify for any reason these partitions, at least not now, otherwise I cannot rule out some other software is on the way.
The SD card should be at least 8GB but if it's bigger it's OK. Do not resize anything, do not make it dynamic (yet).
If you have a *nix compatible console please open it, and cd into the directory with the benja-rpi2.zip file
I am assuming you know how to dd the card, I will refer at such path as
/dev/sdX. Be sure you are not using any number when you refer to such path because you want to use the card, not its partitions.
Code: Select all
SD_CARD=/dev/sdX
unzip benja-rpi2.zip
sudo umount ${SD_CARD}*
sudo dd if=benja-rpi2.iso of=${SD_CARD} bs=8192
sync
The dd shold show that you actually copied about 8GB of data, not 1.1, rather 7.9.
Once you've done this, put into your RPi being sure the network cable is in and there is an input attache to it.
It works 10 times out of 10 via both Linux and OSX here; if you have a proper Linux console on Windows I don't see why it shouldn't work in there too.
Please let me know how it goes.