This is a text-only version of the following page on https://raymii.org: --- Title : Olimex OlinuXino a10 Lime Minimal Debian 7 Image Author : Remy van Elst Date : 31-10-2014 URL : https://raymii.org/s/articles/Olimex_A10-OLinuXino-LIME_minimal_debian_7_image.html Format : Markdown/HTML --- ![olimex][1] A friend of me recently pointed me to the [Olimex Olinuxino A10 LIME][2], an open source hardware ARM (Allwinner A10) based dev board with 160 GPIO's, 1,2 GHz/512 MB RAM, 2 USB 2.0 ports, 1 esata port, 1 hdmi port, USB-OTG, 100 Mbit lan (not via the usb bus) and more of those nice features. The price is even more awesome, the device is 30 euro's, add 5 euro's and you have yourself a nice black case. It consumes very little power, combined with all the features a perfect dev / tinkerboard.

Recently I removed all Google Ads from this site due to their invasive tracking, as well as Google Analytics. Please, if you found this content useful, consider a small donation using any of the options below:

I'm developing an open source monitoring app called Leaf Node Monitoring, for windows, linux & android. Go check it out!

Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.

You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days.

Sadly, the default Debian 7 image suplied by Olimex is bloated and huge. Perfect for the general tinkerer, has a Desktop Environment and a lot of dev tools and support for everything. Not perfect for me, I want a small minimal base to start and add up on that only what I need. I took this image and stripped everything out of it, leaving only the bare minimum. Basically it only runs SSH and allows you to install the tools you need to build your project, without any other cruft. It is also more optimized to run off flash storage, by default it has no logging, no locatedb updates, noatime mount option, this all reducing writes to the SD card. If you have an Olimex A20 LIME2, I also have an image for that, located [on this page][4]. The difference between the A10 and the A20-LIME2 is that the latter one has gigabit network, 1 GB ram and a dual core ARM processor. The main features / differences from the Olimex provided Debian image (Debian with kernel 3.4.90+ release 3): * Minimal set of packages: * No X or desktop environment. * No man pages, extra locales or documentation * No alsa or sound support * Syslog disabled by default * Kernel modules for Wireless network removed * Only 22 MB of ram used * Only 190 MB Diskspace used * Username/password the same, 'root/olimex' * SSH (dropbear) on by default on port 22 * Getty terminals off, only ssh. * DHCP enabled The kernel itself is still 3.4, the Debian version is 7 for armhf. ### Download You can download the image from here: * HTTPS: [.tar.gz, click here][5] * TORRENT: [.torrent, click here][6] * MD5SUM: 0f002fae50976c1e2871f6544a938f4d * SHA256: 319a70b3097cac299a764e4b06721481599c0ad3b8ec2f43df8c4f588822ab3c Feel free to mirror it wherever you want. If you like it or use it, you might consider sending me a nice email. Or, if this image helped you and you want to support me AND get $10 Digital Ocean credit (2 months free), use this link to order: ### Instructions Download the image: wget https://2162bb74000a471eb2839a7f1648771a.objectstore.eu/olimex/a10_debian7_minimal_raymii.img.tar.gz Extract it: tar -xf a10_debian7_minimal_raymii.img.tar.gz Verify the md5 sum: md5 a10_debian7_minimal_raymii.img sha256sum a10_debian7_minimal_raymii.img If it is correct, continue. If it is not correct, retry the download. Plug in your microSD card and use `dmesg` to see which device it is. Please note that this image is supposed to be on the MicroSD card. I don't know if and how it works on the eMMC internal flash. Write the image to the microSD card: dd if=a10_debian7_minimal_raymii.img of=/dev/mmcblk0 Afterwards, use a tool like (c)fdisk, parted or gparted to enlarge the second partition. It is only 300 MB, which is to small to use most of the time. Plug the microSD card back in and boot the Olinuxino. It receives an IP address via DHCP. Check your router or use nmap to find it. Log in as root with the password `olimex`. If you want to install software, please `apt-get update` first, since the apt- lists are removed to save +100 MB. Enjoy! [1]: https://raymii.org/s/inc/img/A10-OLinuXino-LIME.jpeg [2]: https://www.olimex.com/wiki/A10-OLinuXino-LIME [3]: https://www.digitalocean.com/?refcode=7435ae6b8212 [4]: https://raymii.org/s/articles/Olimex_A20-OLinuXino-LIME2_minimal_debian_7_image.html [5]: https://2162bb74000a471eb2839a7f1648771a.objectstore.eu/olimex/a10_debian7_minimal_raymii.img.tar.gz [6]: https://raymii.org/s/inc/downloads/a10_debian7_minimal_raymii.img.tar.gz.torrent --- License: All the text on this website is free as in freedom unless stated otherwise. This means you can use it in any way you want, you can copy it, change it the way you like and republish it, as long as you release the (modified) content under the same license to give others the same freedoms you've got and place my name and a link to this site with the article as source. This site uses Google Analytics for statistics and Google Adwords for advertisements. You are tracked and Google knows everything about you. Use an adblocker like ublock-origin if you don't want it. All the code on this website is licensed under the GNU GPL v3 license unless already licensed under a license which does not allows this form of licensing or if another license is stated on that page / in that software: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Just to be clear, the information on this website is for meant for educational purposes and you use it at your own risk. I do not take responsibility if you screw something up. Use common sense, do not 'rm -rf /' as root for example. If you have any questions then do not hesitate to contact me. See https://raymii.org/s/static/About.html for details.