Downloading the game is pretty easy, actually. I got mine at http://www.download-full-games.com/pc/sports/road_rash.html
The tricky part is to get to run it on Linux. In my case, Ubuntu Linux is the only operating system I have: I honestly don't need Windows for much. This game, however, runs only on Windows and so the quintessential wine came to the rescue. So then I unzipped the file and from the command prompt typed:
sudipta@Hogwarts:~/roadrash$ wine ROADRASH.EXE
This unfortunately leads to the "CD-Rom not found" error. The fix to this, as we all know, is to have the registry edited. There is a SETREG.EXE which you can run, but then the state is not persistent. As in, if you run
sudipta@Hogwarts:~/roadrash$ wine SETREG.EXEsudipta@Hogwarts:~/roadrash$ wine ROADRASH.EXE
Then the registry was just altered when the last wine command was run, not this time. So I opened up the RASH.REG file and found that it contained:
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Electronic Arts\RoadRash 95]
@=""
"Path"="D:\\"
"CheckDialup"=hex:00
"ChatState"=hex:02
"MiniDash"=hex:00
"OpponentList"=hex:01
Which basically means that the above Windows registry value needed editing. This in turn led me back to the .wine folder in my home directory. Lo and behold, there was a system.reg file with lots of Registry-like entries.
sudipta@Hogwarts:~/.wine$ gedit system.reg
So I simply added a section right on top that said:
[SOFTWARE\\Electronic Arts\\RoadRash 95]
@=""
"Path"="D:\\"
"CheckDialup"=hex:00
"ChatState"=hex:02
"MiniDash"=hex:00
"OpponentList"=hex:01
This was because there was an entry right on top that said, ";; All keys are relative to \\Machine". And now when I run
sudipta@Hogwarts:~/roadrash$ wine ROADRASH.EXE
I get
Viola! Ah the joys of kicking the next guy off the road... :D
