You are going to need to build it yourself. But it is easy, so don't worry. (Famous last words

)
First you need the sdl-dev libs if you don't have them.
In a terminal do:
sudo apt-get install libsdl1.2-dev
now that that is done go download the emulator code from google code.It's in the development version.
http://code.google.com/p/uzebox/downloads/list (I know it says its the kernel but the emulator is in there too)
After you download and extracted it, navigate to the emulator folder, and edit avr8.cpp line 41 from
- Code: Select all
#include "SDL.h"
to
- Code: Select all
#include "SDL/SDL.h"
Then if you are running 64-bit linux follow the instructions at
viewtopic.php?f=9&t=335#p2987.
Finally you can build it.
In a terminal, navigate to the emulator folder. Run:
g++ -O3 -lSDL avr8.cpp -o uzem
sudo cp uzem /bin/
Now go download a .hex file from the games section of the forums. (the hex files are like roms)
In a terminal navigate to the hex file and run
uzem filename.hex (where filename.hex is the name of the hex you downloaded)
If all goes well the emulator should run.
>J