Revisión de Software installation de Xov, 08/22/2013 - 19:40

As revisións permítenlle rastrexar as diferenzas que hai entre distintas versións dunha 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.

How to use all of these commands?

There are actually two options:

  1. Either you can copy-paste them line-by-line into a Terminal window (press [Ctrl]+[Alt]+[T] to open one), or
  2. you can create a shell script, that can be used everytime you will need to install/remove the desired application. To make one, just open your favourite text editor (e.g. gedit), copy-paste all the necessary commands into window, then save the file (the filename could be something like libdvdcss-install.sh). Now, anytime you will have to perform the required task, just execute the script with a syntax of "sh PATH_TO_FILE" within Terminal.

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

Return to Castle Wolfenstein

sudo add-apt-repository ppa:tobydox/rtcw
sudo sed -i s/precise/lucid/ /etc/apt/sources.list.d/tobydox-rtcw*
sudo apt-get update
sudo apt-get install rtcw-sp

Disable PPA (recommended)

sudo sed -i 's/^/# /' /etc/apt/sources.list.d/tobydox-rtcw*
sudo apt-get update

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

Disable PPA (recommended)

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.*playonlinux/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:starws-box/deadbeef-player
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

Disable PPA (recommended)

sudo sed -i '/medibuntu/s/^/# /' /etc/apt/sources.list
sudo apt-get update

Prey

sudo apt-get update
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

Revisión

08/06/2013 - 14:55
mYself