Difference between revisions of "Games"

From GalliumOS Wiki
Jump to: navigation, search
(Created page with "== Installing Steam == From the command line: curl -O http://repo.steampowered.com/steam/archive/precise/steam_latest.deb sudo dpkg -i steam_latest.deb Then launch...")
 
Line 1: Line 1:
 +
== What works? What works well? ==
 +
 +
There's a good thread here: https://www.reddit.com/r/GalliumOS/comments/3xmb6i/gaming_on_galliumos_what_ive_tried_so_far/
 +
 +
 
== Installing Steam ==
 
== Installing Steam ==
  

Revision as of 18:31, 8 January 2016

What works? What works well?

There's a good thread here: https://www.reddit.com/r/GalliumOS/comments/3xmb6i/gaming_on_galliumos_what_ive_tried_so_far/


Installing Steam

From the command line:

   curl -O http://repo.steampowered.com/steam/archive/precise/steam_latest.deb
   sudo dpkg -i steam_latest.deb

Then launch Steam from the application launcher. Your user must be in the "sudo" group (if it is not, the dpkg command above will also fail), so that the installer can do all the things it needs to do.


Installing Minecraft

From the command line:

   sudo bash
   apt_get_install default-jre
   curl -o /usr/local/bin/Minecraft.jar \
     https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar
   curl -o /usr/share/pixmaps/minecraft.png https://chrx.org/minecraft.png
   mkdir -p /usr/local/share/applications
   cat > /usr/local/share/applications/minecraft.desktop <<EOF
   [Desktop Entry]
   Type=Application
   Name=Minecraft
   Comment=Minecraft
   Exec=java -jar /usr/local/bin/Minecraft.jar
   Icon=/usr/share/pixmaps/minecraft.png
   Categories=Game;
   EOF