Reputation: 293
Are there any good emulators for learning embedded Linux ?
Upvotes: 7
Views: 5216
Reputation: 46
It actually depends on what you mean by embedded Linux. Embedded Linux can be :
My advice: get a RasberryPi and try to copy some project to get the feel of cross compilation and dealing directly with hardware. Or just simply use VM learn the interaction with all the Linux component.
Upvotes: 1
Reputation: 1517
You can use beaglebone to learn embedded linux. It is very cheap also some 6000 INR. You can play with all those GPIO, analog input, PWM etc ( a lot more). U can learn to write device driver for your own device.
Upvotes: 0
Reputation: 93446
I suggest you use a VM. If hosted on Windows use the free VMWare Server for example and load your chosen distribution onto it.
Upvotes: 0
Reputation: 5915
The Beagle Board is a good DIY development board/environment for learning embedded Linux.
The board is relatively cheap ($149) and there is lots of community support, and lots of open source projects.
Upvotes: 3
Reputation: 2939
If you want to play with Linux on the Arm, you can play with qemu. That way, you can emulate, for instance, an N8x0 tablet
Upvotes: 8
Reputation: 798456
Embedded Linux is like Linux, but sometimes with the capabilities of a microcontroller. Learn Linux on a normal PC, then find yourself a PIC toolkit that uses a C compiler and learn the MCU stuff on that.
Upvotes: 3