Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.

Yes, you can run the 1999 Windows version of Grand Theft Auto 2 on Linux—but not as a native Linux game. The simplest route for an existing CD, installer, or other legally obtained Windows copy is Lutris with Wine. If you already own GTA2 on Steam, use Steam with Proton instead.

Rockstar currently lists GTA2 as unsupported by the Rockstar Games Launcher, and current store listings do not establish a normal purchase route. Use an installer or game files you legally own; avoid random “free download,” cracked-executable, ROM, ISO, and ZIP sites.

Choose the method that matches your copy

What you have Best method Important qualification
Existing Steam license Steam + Proton A Lutris Steam entry exists, but current Steam availability may vary by region and account history.
Original Windows CD/DVD Lutris + Wine You may need to copy or extract the installer and game files yourself.
Windows installer or backup Lutris + Wine Use the digital/CD installer option and point it to your own installer.
Rockstar Classics installer Lutris or manual Wine, cautiously The current Lutris definition references a third-party download host, not a Rockstar domain.
PlayStation or Dreamcast copy Console emulation Use a legally obtained game dump and expect a different version from the Windows release.
No copy Do not use unofficial mirrors Rockstar’s current pages do not establish a current official GTA2 download.

Proton is Valve’s Wine-based compatibility layer for running Windows games on Linux. Lutris adds a graphical interface, game-specific installer scripts, Wine-prefix management, and launch configuration.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Install GTA2 with Lutris

This is the recommended route for most Linux users with a Windows installer or physical copy.

#1 Best Overall
Grand Theft Auto V - PC
  • Will take full advantage of the power of new generation systems and PC to deliver across-the-board enhancements including increased resolution and graphical detail, denser traffic, greater draw distances, upgraded AI, new wildlife, and advanced weather and damage effects for the ultimate open world experience.
  • The biggest, most dynamic and most diverse open world ever created and now packed with layers of new detail.
  • Grand Theft Auto V blends storytelling and gameplay in new ways as players repeatedly jump in and out of the lives of the game’s three lead characters, playing all sides of the game’s interwoven story.
  • Includes Grand Theft Auto Online, the ever-evolving Grand Theft Auto universe.
  • All new content and gameplay created and released since the launch of Grand Theft Auto Online including new Jobs, an arsenal of new weapons, scores of new vehicles, new properties and player customizations

Prerequisites

  • A supported Linux distribution with working graphics drivers
  • Lutris installed from your distribution’s normal software source or its official distribution channel
  • A legally obtained GTA2 Windows installer or existing game files
  • Enough storage for the game and its Wine prefix

The original PC requirements were tiny—approximately 65 MB of storage, 32 MB of RAM, and a 200 MHz Pentium-class processor according to PCGamingWiki—but those historical figures do not guarantee identical behavior on every modern Linux setup.

Installation steps

  1. Open the Lutris GTA2 page.
  2. Choose the installer that matches your copy. For an ordinary Windows installer or CD-derived installation, select the digital/CD option.
  3. When Lutris asks for a file, browse to your own GTA2 installer executable.
  4. Allow Lutris to create the Wine prefix and complete the installation.
  5. Launch GTA2 from Lutris and test a new game, audio, fullscreen or windowed mode, saving, and reloading.

The current digital/CD installer definition creates a Wine prefix, installs DirectPlay through Winetricks, and normally launches:

drive_c/Program Files/Rockstar Games/GTA2/gta2.exe

If Lutris installs the game but does not detect it, add the executable manually as a new game. Select the existing prefix and set the executable to gta2.exe; do not create another prefix unless the first one is damaged.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Use Steam and Proton for an existing Steam copy

Choose this route when GTA2 is already present in your Steam library. Steam provides convenient library management, controller integration, overlay features, and Steam Deck support.

Rank #2
Sale
Grand Theft Auto III
  • ESRB Rating: Mature
  • Genre: Action/Adventure
  1. Install and open Steam for Linux.
  2. Install GTA2 from your library.
  3. Open the game’s properties and find its compatibility settings.
  4. If it does not launch normally, enable Steam Play and force a Proton version.
  5. Try the current stable Proton release first, then Proton Experimental if necessary.

Do not interpret the existence of a Steam or Lutris entry as proof that GTA2 can currently be purchased there. The reviewed Rockstar Steam publisher search does not show GTA2 among the current products, though availability can vary.

Lutris identifies the Steam version with app ID 12180. The usual Steam Play prefix is:

<SteamLibrary-folder>/steamapps/compatdata/12180/pfx/

That path can differ if the installation uses another app ID or library arrangement. Save and configuration problems often come from looking in the wrong Proton prefix.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Manual Wine installation

Manual Wine is a useful fallback when a Lutris script fails or you want complete control. Package names and Wine builds differ between distributions, so treat these commands as a generic workflow.

Rank #3
Grand Theft Auto 2 (Jewel Case) - PC
  • Seven ruthless gangs are involved in a brutal power struggle, and you're out to make a name for yourself in this turmoil. But watch your back -- respect is earned, not given.
  • Intelligent gang system - earn and maintain the respect of gangs to get the best jobs
  • Play the gangs off each against other in turf wars
  • Completely open and non-linear game play frees you to carve your own way to the top
  • Go anywhere. Steal anything. Jack anyone!

Create a dedicated prefix and run the installer

mkdir -p "$HOME/Games/gta2"
export WINEPREFIX="$HOME/Games/gta2"
wineboot -u
wine /path/to/GTA2-installer.exe

Launch the installed game

export WINEPREFIX="$HOME/Games/gta2"
wine "$WINEPREFIX/drive_c/Program Files/Rockstar Games/GTA2/gta2.exe"

Some installers use the 32-bit-style directory instead:

wine "$WINEPREFIX/drive_c/Program Files (x86)/Rockstar Games/GTA2/gta2.exe"

Add DirectPlay for multiplayer

WINEPREFIX="$HOME/Games/gta2" winetricks directplay

Install DirectPlay into the same prefix that contains GTA2. Single-player may work without it, while the old multiplayer stack may require it.

Fix common GTA2 problems

Lutris fails before installation

  1. Confirm that you selected the installer matching your copy.
  2. Use the digital/CD installer and provide your own executable.
  3. Create a fresh prefix if the existing one is incomplete.
  4. Install manually with Wine, then add the resulting gta2.exe to Lutris.
  5. Avoid the Rockstar Classics script if its external download cannot be verified. “Free” in a Lutris entry does not prove that the referenced file is a current official Rockstar download.

The game installs but will not launch

  1. Check that Lutris points to the actual gta2.exe.
  2. Check that the correct Wine prefix is selected.
  3. Run it from a terminal to capture the error:
WINEPREFIX="$HOME/Games/gta2" wine gta2.exe

Look for missing DLL messages, path or permission errors, installer failures, graphics initialization errors, and audio or codec errors. Avoid downloading individual DLLs from random websites.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

If the path and prefix are correct, try a fresh prefix and then another Wine runner in Lutris. Add DirectPlay when multiplayer is required rather than treating it as a universal launch fix.

Black screen or broken intro

Old fullscreen initialization, video playback, and rendering paths can cause a black screen even when the game itself is installed correctly. Try windowed mode and another Wine runner first. If the problem remains, community fixes documented by PCGamingWiki, including FrontendFix or GTA2 v11.44, may help. Back up the original files before applying any patch, and use a fix only for the problem it addresses.

Missing music or intro videos

Incomplete CD-derived files, omitted media content, or compatibility issues can remove music and videos. Recheck that the installation includes the files from your legally owned copy. Do not replace copyrighted media with files from arbitrary download sites.

Saves do not persist

  • Confirm that the game directory and prefix are writable.
  • Make sure GTA2 is not installed in a protected location.
  • Check that you are launching with the same prefix each time.
  • For Steam, inspect the game’s Proton prefix rather than a separate Wine prefix.

PCGamingWiki documents save locations and notes that Steam Play data is stored inside the compatibility prefix, although the exact location can vary.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Low frame rate or unusual timing

Do not assume that modern hardware will make every aspect of GTA2 modern. The original game is associated with old display and timing behavior, including a 25 FPS limit in the unmodified game. Community fixes can change frame rate or frontend behavior, but they are optional and may alter how the original game behaves. Establish a working unmodified installation first.

Keyboard and controller issues

Test the keyboard controls before adding custom mappings. If you use Steam, its controller configuration is generally the most convenient option. With Lutris, configure controls at the launcher or desktop-environment level and change one input setting at a time so you can identify the cause of a regression.

Independent reader supportYour contribution helps us test, update, and keep practical guides available for everyone.Support on Ko-Fi

Does multiplayer work on Linux?

It may, but modern online play is not guaranteed. The relevant Lutris digital/CD script installs DirectPlay, which is a compatibility prerequisite for GTA2’s legacy multiplayer stack. That does not provide modern matchmaking or prove that Rockstar-hosted servers are available.

For troubleshooting, install DirectPlay in the same prefix, test local or LAN play first, check firewall rules, and only then investigate community networking tools or virtual-LAN solutions. Treat internet multiplayer as configuration-dependent.

Free tools Windows power users keep installed

One-click scans. No signup required.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.

Wine versus console emulation

Wine or Proton runs the Windows release and is usually the most direct option for a Windows installer or Steam license. PlayStation or Dreamcast emulation can avoid some Windows compatibility issues if you own that console version, but it requires a legally obtained game dump and uses different menus, controls, and possibly different behavior. A virtual machine is possible but generally overkill for GTA2: it adds an operating system, maintenance, and integration overhead without being necessary for most installations.

Rockstar Launcher and current availability

Rockstar’s supported-titles page currently lists GTA2 as unsupported by the Rockstar Games Launcher. Rockstar’s official GTA2 page confirms the PC release but does not provide a current native Linux distribution route.

The Lutris page has separate entries for Steam, digital/CD, and Rockstar Classics versions. The Rockstar Classics installer definition references gta.com.ua, a third-party host, rather than an official Rockstar domain. Treat that route cautiously and verify provenance and legality before using it. The safest approach is to use files from a copy you own.

Quick Recap

Bestseller No. 1
Grand Theft Auto V - PC
Grand Theft Auto V - PC
Includes Grand Theft Auto Online, the ever-evolving Grand Theft Auto universe.
$39.95
SaleBestseller No. 2
Grand Theft Auto III
Grand Theft Auto III
ESRB Rating: Mature; Genre: Action/Adventure
$24.79
Bestseller No. 3
Grand Theft Auto 2 (Jewel Case) - PC
Grand Theft Auto 2 (Jewel Case) - PC
Intelligent gang system - earn and maintain the respect of gangs to get the best jobs; Play the gangs off each against other in turf wars
$3.51
Bestseller No. 5

Product prices and availability are accurate as of the date/time indicated and are subject to change. Any price and availability information displayed on Amazon at the time of purchase will apply.

Special offer. See more information about Outbyte and uninstall instructions. Please review EULA and Privacy policy.