Using IF software in Ubuntu

1

I have Xubuntu 9.04 running in our old machine at home. I'm looking to run some interactive fiction interpreters such as Frobtads there as well. However, it appears most of the Linux versions of the general IF software are in source form. Pre-compiled binaries are usually available either for Windows users or for other versions of Linux (Debian, etc.).

Do I generally need to compile these if it's only available in source form? What considerations should I keep in mind when doing so?

N.B.: Please provide as much detail as possible. I'm still exploring how to use most of Xubuntu :)

Isxek

Posted 2009-08-11T15:33:11.337

Reputation: 3 785

Answers

1

You will want to find the .deb and .rpm packages. On the Frobtads page they provide a link for you to this website.

You will also want to search the Ubuntu packages. Packages you find on there can be installed using apt like so:

sudo apt-get install package_name

of course, replacing package_name appropriately.

John T

Posted 2009-08-11T15:33:11.337

Reputation: 149 037

From what I understand, I download them, apt-get any dependencies (required files), then unpack them. Is that it? – Isxek – 2009-08-11T15:43:43.140

you can use apt to install the entire program if it's in the repos. If you find a .deb file you can simply open terminal and use dpkg -i file.deb – John T – 2009-08-11T16:09:28.203

Thanks. Finally got it working. +1 for the Ubuntu packages link to the other games as well. :) – Isxek – 2009-08-14T16:06:06.710