Skip to main content

Posts

Index of Games for Modern Linux

Games for Modern Linux Index Halo: Combat Evolved for Modern Linux Doom for Modern Linux Quake for Modern Linux Quake2 for Modern Linux Quake3 for Modern Linux Quake4 for Modern Linux and WINE Return to Castle Wolfenstein for Modern Linux Wolfenstein: Enemy Territory for WINE Wolfenstein:ET for Modern Linux Unreal Gold for Modern Linux Unreal Tournament/UT99 for Modern Linux Unreal 2 on Modern Linux Unreal Tournament 2003 on Modern Linux  Unreal Tournament 2004 for Modern Linux Unreal Tournament 2004 for Modern Linux Unreal Tournament 3 Arena for Modern Linux Medal of Honor: Allied Assault on Modern Linux Medal of Honor: Pacific Assault on Modern Linux Call of Duty on Modern Linux Call of Duty: United Offensive on Modern Linux Additional Resources WINE Homepage Play On Linux Homepage Codeweaver's Crossover homepage Good Old Games GOG Linux Releases The "Judas™ does this run in Wine" thread PC Gaming Wiki Wide S...

Recover Data From a Damaged CD/DVD

This is just a convenient place for me to bookmark this information as it is just a copy of James Litten's excellent page about data rescue. The steps are simple. All commands are to be run on a single line. 1. Clean the disc. If the disc is cracked, it may come apart in the drive. You might try a small dab of superglue on the very outside of the crack to hold it together. 2. First pass (runs about 30 minutes). $ ddrescue -n -b 2048 /dev/sr0   ~/recovered/mystuff.iso  ~/recovered/mystuff.log 3. Mount the image and see how we did. 4. Take a second pass if we need it (about 24 hours). $ ddrescue -d -b 2048 /dev/sr0  ~/recovered/mystuff.iso  ~/recovered/mystuff.log 5. Take a third pass maybe with the CD/DVD in a different drive (24+ hours). $ ddrescue -d -r 3 -b 2048 /dev/sr1  ~/recovered/mystuff.iso  ~/recovered/mystuff.log

Wolfenstein: Enemy Territory for WINE

WINE Version (The native Linux version is here .) Wolfenstein: Enemy Territory has always rocked as an on-line game. Trying to capitalize on their success with the online part of Return to Castle Wolfenstien, they developed an online component for RtCW and farmed out the single-player mode. Turns out, the SP mode sucked , so they ditched that and gave away the online game. The Game's PAK files remained proprietary (as always) and they released the source code for the game engine. The original release had a Linux version as well as Mac and Windows version and can still be downloaded from SplashDamage . The problem with the Linux version is that Linux changed sound subsystems (OSS, ALSA, PULSEAUDIO) and the sound component of the game is no longer compatible with a modern Linux. Wolf:ET debuted with a native Linux version that can still be installed, but there have been unofficial game engines that have upped the ante for the game. The original version is available f...

Call of Duty: United Offensive

Call Of Duty: United Offensive is an expansion pack for Call Of Duty released on September 14, 2004 and adds three new single player campaigns and expanded multiplayer capabilities and associated maps.  The installation of Call Of Duty: United Offensive should be easier that that of Call of Duty since I could swap out discs. And I say "should" because there's no way to install it since it depends on the un-installable Call of Duty. Where this all gets fsck'd is that the installer will prompt you for CD2, you can eject CD1 and then successfully mount CD2 as the installer proceeds normally. However , you are then prompted to insert CD1 for a second time. This procedure is part of the stupid Copy Protection scheme where the installer creates the Windows Registry entries, so you can't really skip it, and for whatever reason, Crossover can't accommodate this final swap. It should be possible to copy both CDs to a directory named "COD" and use the cr...

Unreal Tournament 3 Arena for Modern Linux

Unreal Tournament 3 Arena  , the successor to Unreal Tournament 2004, was intended to have a Linux release , but that was late arriving. The Linux installer is on DISC3. If you want to run the Linux installer, you have some lying to do. Mount UT3 DISC3 and change to that directory and ' sudo su ' to root. Then enter: # export SETUP_LIBC=glibc-2.1 # linux32 ./setup.sh Scroll through the license agreement and agree to it. Since you are running as root, you can install the game in /usr/local . If you want it installed only for your use, change the paths presented to you, like ~/games and ~/bin . Choose the base install and pass on the server install (unless you really want to install the server rather than the client ... but that's another post). Don't go wild and install all the optional drivers (maybe you have a Voodoo video card handy that you want to use, more old-school power to you). Just answer no to that stuff. Why? Why, indeed. Now you get to read the ...

Installing cheat on Mageia6

Tecmint recently ran an article about a new way to obtain information about an application using cheat , an open-source interactive cheat-sheet  application. What the application does is provide a means of showing examples for a command. If none exist in the cheat database, cheat creates a blank cheat file in that name and opens it in a text editor of your choice so that you may add examples. Instructions for installing it on "Linux Systems" assumes that "Linux" means "Debian" or "Redhat". Please read the article linked above and follow the installation instructions below to install cheat on Mageia6. Mageia6 offers the choice of Python version 2 and Python version 3. Since cheat uses version 2, we'll be installing the version 2 python files. Python will already be installed on Mageia6, but if it is not, install it. Install Python: # urpmi python Install Pip: # urpmi python-pip Install the dependencies for cheat: # urpmi pyth...

HOWTO Install Word Perfect 5.1, a DOS Application, using Crossover

Codeweaver's Crossover, now at version 18, does an excellent job of making most MS Windows applications run reliably on a modern Linux installation.DOS But what if you have an old DOS-based game or application? Crossover doesn't do DOS in a way that enables it to run these old DOS applications and the smart money is on installing and using DOSBox as a native Linux application and running those apps from there. Using it is pretty straightforward, but you must read the documentation to get started. But if you just installed the native Linux version of DOSBox you would miss out on several very nice features of Crossover such as easily accessing the apps from your desktop menu, and being able to archive and restore the DOS application. You can do all of this without Crossover, but if you use Crossover for Windows apps, it would be nice to use Crossover with DOS apps. Fortunately, Crossover does offer and easy way to install the Windows version of DOSBox. You can also add...