Revisión de Software installation de Jue, 08/08/2013 - 19:38

La revisión le permite rastrear las diferencias que hay entre distintas versiones de una entrada.

Notice: This page is a part of my personal profile page and was not meant for contribution (at least not now). The page may be moved or deleted without prior notice. If you are willing to help, please contact me via my profile contact form. Thank you for your understanding.

This page covers only very basic information about getting the desired software packages properly installed, and the commands contained herein was not properly tested, therefore they should be used only for testing purposes. There are many missing information, e.g. about dealing with the non-free parts, reversing the process (removing the installed packages), basic application setup, and more. This page is still a work in progress and I am not responsible for any damages caused by following the instructions on it.

OpenJDK

sudo apt-get update
sudo apt-get --no-install-recommends install openjdk-7-jre

0 A.D.

sudo add-apt-repository ppa:wfg/0ad
sudo apt-get update
sudo apt-get install 0ad

Battle for Wesnoth

sudo add-apt-repository ppa:vincent-c/wesnoth
sudo apt-get update
sudo apt-get install wesnoth-1.10 wesnoth-1.10-music

GemRB

sudo add-apt-repository "deb http://mirrors.dotsrc.org/getdeb/ubuntu precise-getdeb games"
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 46D7E7CF
sudo apt-get update
sudo apt-get install gemrb
sudo sed -i '/getdeb/s/^/# /' /etc/apt/sources.list
sudo apt-get update

Fish Fillets

sudo apt-get update
sudo apt-get install fillets-ng fillets-ng-data-cs

LÖVE

sudo add-apt-repository ppa:bartbes/love-stable
sudo apt-get update
sudo apt-get install love

Zandronum

sudo add-apt-repository "deb http://debian.drdteam.org stable multiverse"
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys AF88540B
sudo apt-get update
sudo apt-get --no-install-recommends install zandronum-client

PlayOnLinux

Issues: Forces the user to install non-free Microsoft fonts (possible workaround)

sudo add-apt-repository "deb http://deb.playonlinux.com precise main"
sudo sed -i '/deb-src http:\/\/deb.playonlinux.com/d' /etc/apt/sources.list
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys C4676186
sudo apt-get update
sudo apt-get install playonlinux curl

Dolphin-emu

Issues: Depends on the non-free nvidia-cg-toolkit (possible workaround)

sudo add-apt-repository ppa:glennric/dolphin-emu
sudo apt-get update
sudo apt-get install dolphin-emu

PCSX-Reloaded

sudo apt-get update
sudo apt-get install pcsxr

DOSBox

sudo apt-get update
sudo apt-get install dosbox

JDownloader

Issues: Automatically downloads the non-free UnRAR during every update (possible workaround)

sudo add-apt-repository ppa:jd-team/jdownloader
sudo apt-get update
sudo apt-get --no-install-recommends install jdownloader-installer

SMTube

sudo add-apt-repository ppa:rvm/smplayer
sudo apt-get update
sudo apt-get --no-install-recommends install smtube

DeaDBeeF

sudo add-apt-repository ppa:alexey-smirnov/deadbeef
sudo apt-get update
sudo apt-get --no-install-recommends install deadbeef

PeerGuardian Linux

sudo add-apt-repository ppa:jre-phoenix
sudo apt-get update
sudo apt-get --no-install-recommends install pglgui

Jupiter

sudo add-apt-repository ppa:webupd8team/jupiter
sudo apt-get update
sudo apt-get install jupiter

Profile-sync-daemon

sudo add-apt-repository ppa:graysky/utils
sudo apt-get update
sudo apt-get install profile-sync-daemon

f.lux

sudo add-apt-repository ppa:kilian/f.lux
sudo apt-get update
sudo apt-get install fluxgui

libdvdcss

sudo add-apt-repository "deb http://packages.medibuntu.org precise free"
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 0C5A2783
sudo apt-get update
sudo apt-get install libdvdcss2
sudo sed -i '/medibuntu/s/^/# /' /etc/apt/sources.list
sudo apt-get update

Prey

sudo apt-get install scrot curl streamer mpg123
wget -rl1 -Adeb http://preyproject.com/releases/current
sudo dpkg -i preyproject.com/releases/current/*.deb
rm -fr preyproject.com

Revisiones

08/06/2013 - 14:55
mYself