惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

Hacker News: Best

madhadron - The seven programming ur-languages GitHub - smol-machines/smolvm: Tool to build & run portable, lightweight, self-contained virtual machines. I Measured Claude 4.7's New Tokenizer. Here's What It Costs You. Introducing Claude Design by Anthropic Labs It Is Time to Ban the Sale of Precise Geolocation The creative software industry has declared war on Adobe Isaac Asimov: The Last Question Newly unsealed records reveal Amazon’s price-fixing tactics, California attorney general claims Clojure - Documentary Android CLI and skills: Build Android apps 3x faster using any agent Qwen3.6-35B-A3B on my laptop drew me a better pelican than Claude Opus 4.7 Codex:全能型助手 Introducing Claude Opus 4.7 Qwen Studio The Future of Everything is Lies, I Guess: Where Do We Go From Here? Virginia Bans Sale of Geolocation Data YouTube now lets you turn off Shorts Burgers | マクドナルド公式 ChatGPT for Excel Ask HN: Who is using OpenClaw? Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Open Source Isn't Dead. The Future of Everything is Lies, I Guess: New Jobs Unexpected €54k billing spike in 13 hours: Firebase browser key without API restrictions used for Gemini requests IPv6 – Google Your Backpack Got Worse On Purpose Good sleep, good learning, good life Fixing a 20-year-old bug in Enlightenment E16. Does Gas Town 'steal' usage from users' LLM credits & paid services to improve itself?
Space Cadet Pinball on Linux - Stephen Brennan
jandeboevrie · 2026-05-10 · via Hacker News: Best

Stephen Brennan • 09 May 2026

To my fellow Linux users who grew up using Windows XP: did you know, you can have Space Cadet Pinball on your Linux machine? This is not breaking news, but it’s exciting to me, and I’m the one who decides what I write about. So here’s your PSA!

Space Cadet Pinball was bundled with Windows XP, and growing up I played it a lot. As a result it holds a special place in my heart. I found that it was the most engaging game that was bundled with Windows. Solitaire was too mindless, and Freecell, Hearts, and Minesweeper were too complex and boring to me at that age. But pinball held my attention, and so I played it a lot1.

Anyway, somebody has gone to the effort of using a decompiler and reverse engineering tools to create source code, and then put in what I’d imagine is a lot of effort to make it playable on a lot of platforms! All that results in this project on Github. The easiest way to play on Linux is actually to use the Flatpak, which comes bundled with the original game resources from the Windows version. You can either install it with a GUI (e.g. KDE Discover) or install on the CLI:

flatpak install com.github.k4zmu2a.spacecadetpinball

That’s all you need to play & get a hit of nostalgia! I know there are browser-based versions available too, but I would rather have it installed on my computer directly.

High(er) Resolution With Full Tilt Data

Graphics technology has come a long way since then, and the graphics are a bit rough at 480p. But fear not: another version of the game existed, called Full Tilt! Pinball. Its game data is capable of displaying at the massive screen resolution 1024x768! You can find this game data on archive.org in a zip file.

Getting the flatpak version to use these data files is a bit tricky. The easiest way is:

  1. Ensure that you’ve run the game at least once prior to this, so that the data directory is created.
  2. Extract the downloaded zip file directly into your data directory:
    cd ~/.var/app/com.github.k4zmu2a.spacecadetpinball/data/SpaceCadetPinball
    unzip ~/Downloads/CADET.ZIP
    
  3. Delete (or, if you’re cautious, rename) the old data directory which is bundled with the app. Unfortunately this is necessary because the game searches multiple locations for data, but once it finds data files in one directory, it won’t continue looking for files in other locations.
    sudo rm -r $(flatpak info --show-location com.github.k4zmu2a.spacecadetpinball)/files/extra/Pinball
    

    You may not need the sudo call if your installation was per-user. Mine got installed to /var/lib/flatpak so I needed root.

It’s possible you’d need to repeat step 3 if the game gets updated. However, the flatpak hasn’t seen an update in over two years. I doubt one will happen, and if it does, it won’t be frequent.

Random Notes

  1. If you want, you can keep the original files and merge them together so that you have the full set of both the original (referred to as “3DPB” for 3D Pinball in the game) and the new (Full Tilt) data. Then, the game will let you toggle between them if you’d like.

  2. The data files seem to have some impact on the game rules. For instance, in the original 3DPB version, the reentry lanes (and launch lanes) have lights which toggle as the ball passes over. In the Full Tilt version, the lights stay on (rather than toggling), making it easier to complete the set of lights and upgrade the associated set of bumpers. (Yes yes, I know I’m a nerd for noticing this.)

  3. Apparently, there was a game called “Marble Blast” which came pre-installed on some Macs in a roughly similar time period, which I know people developed similar relationships to growing up. Unlike this pinball game, the Marble Blast series grew, and there are newer versions available to play today.

Bonus Thoughts

I think it’s great that this old game was beloved to enough people (and especially at least one very competent & motivated person) to do this work. Having (any) source code available makes this game portable to all sorts of platforms, which is really great. You can play this on Mac, Windows, Linux, and even Android & Nintendo Switch, apparently.

Personally, I would be happy to pay the original developers for their work on this game, and I understand that there’s some concern about the legality of downloading game data files, especially for the Full Tilt version of the game. After all, they are copyrighted art & data which was part of a commercial product. It seems like an unpopular opinion in today’s world, but I don’t advocate for piracy. Paying people for their work is important, even when it feels like you’re paying a faceless corporation. While I’d prefer things be created with a FOSS license, the world doesn’t always work that way. At the end of the day, I want people to be paid to create good things, because that’s how we get more good things!

On the other hand, I feel software preservation is an important goal too. Ideally, I’d like to see a world where proprietary software like this could be placed into some sort of source code escrow. As long as the original copyright holders are in the business of selling their product, their rights should be respected. But if they elect to stop selling it, I think that code should revert to a FOSS license that allows users to improve & maintain the software they use. This would help balance the rights of creators, users, and the goals of preservation.


  1. I also played another pinball game called 3D Ultra Pinball, but that came on a CD presumably for purchase. I have no idea whether my parents went out and bought it, or if it came in a cereal box. (Yes, game CDs did show up in cereal boxes sometimes.)