This is a tutorial to install and play Rayman 1 (the greatest jump’n'run game ever) using DosBox on Ubuntu.

- Copy the contents of the Rayman CD to a folder on your computer, e.g.
/home/<user>/Games/RaymanCD - Install DosBox (
sudo apt-get install dosbox) - In your dosbox.conf (Usually in
~/.dosbox/dosbox-<version>.conf) set thekeyboard layoutoption to your keyboard layout code (e.g.sgfor swiss german layout) - Create a new folder for the Rayman installation, e.g.
/home/<user>/Games/Rayman - Issue the following command in your terminal:
dosbox -noautoexec -c 'mount c /home/<user>/Games/Rayman -freesize 100' -c 'mount -t cdrom r /home/<user>/Games/RaymanCD' -c 'r:' -c 'install.bat'
- Install Rayman (Don’t forget to auto-recognize your soundcard). After the setup, don’t play the game, just exit the menu and close the DosBox window.
- Put a new file called
rayman.shsomewhere on your computer (e.g. on your Desktop) - Add the following lines to the freshly created file:
#!/bin/bash dosbox -noautoexec -c 'mount c /home/<user>/Games/Rayman -freesize 100' -c 'mount -t cdrom r /home/<user>/Games/RaymanCD' -c 'c:' -c 'rayman.bat'
- Make the file executable:
chmod +x rayman.sh
Done, now you can start Rayman at any time by executing the rayman.sh file. If the gameplay is too fast, change the frequency to 50.

Kommentare