#!/bin/bash sudo su # check for new version http://zattoo.com/de/download/linux?download=1&version=Linux-i386-deb URL=http://download.zattoo.com/zattoo-3.3.3.20775-i386.deb wget ${URL} -P /tmp sudo apt-get install libgtkglext1 libxul0d libmozjs0d libxul-common sudo dpkg -i /tmp/zattoo-*.deb
wget https://raw.githubusercontent.com/panticz/installit/master/install.openttd.sh -O - | bash -s
#!/bin/bash if [ "$1" == "-n" ]; then # install latest version from homepage if [ "$(uname -m)" == "x86_64" ]; then # 64 bit URL=http://binaries.openttd.org/releases/1.5.0/openttd-1.5.0-linux-ubuntu-trusty-amd64.deb else # 32 bit URL=http://binaries.openttd.org/releases/1.5.0/openttd-1.5.0-linux-ubuntu-trusty-i386.deb fi # download wget ${URL} -P /tmp # install sudo dpkg -i /tmp/openttd-*-linux-ubuntu-*.deb else # installed version provided by the distribution sudo apt-get install -y openttd fi # install music sudo apt-get install -y openttd-opensfx openttd-openmsx timidity
Install newest Version
wget https://raw.githubusercontent.com/panticz/installit/master/install.openttd.sh -O - | bash -s -- -n
#
# OLD?
#
# sudo apt-get install -y libsdl1.2debian
# pre configure
debconf-set-selections <<\EOF
openttd openttd/datafiles select
EOF
# install openttd
sudo apt-get install -y openttd timidity
wget http://www.tt-ms.de/downloads/ttdwin302011.rar -P /tmp
mkdir /tmp/ttd
unrar x /tmp/ttdwin302011.rar /tmp/ttd
# copy data
sudo cp /tmp/ttd/*.grf /tmp/ttd/*.cat /usr/share/games/openttd/data
sudo cp /tmp/ttd/gm/* /usr/share/games/openttd/gm
# clean up
rm /tmp/ttdwin302011.rar
rm -r /tmp/ttd
# Links
http://wiki.ubuntuusers.de/Spiele/OpenTTD
http://www.openttd.org/en/download-stable
http://www.tt-ms.de/downloads/
#!/bin/bash TARGET= /tftpboot/debian/i386 [ ! -d $TARGET ] && mkdir -p $TARGET wget ftp://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/netboot/debian-installer/i386/initrd.gz -O $TARGET/initrd.gz wget ftp://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/netboot/debian-installer/i386/linux -O $TARGET/linux wget ftp://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/netboot/mini.iso -O $TARGET/mini.iso wget http://www.panticz.de/pxe/pxelinux.cfg/debian.i386.conf -0 /tftpboot/pxelinux.cfg/debian.i386.conf
#!/bin/bash # install required packages sudo apt-get install -y mercurial build-essential libncurses5-dev flex bison gawk \ gettext libreadline5 libreadline5-dev libunistring0 texinfo # get source code hg clone http://hg.openbricks.org/openbricks # change into source code directory cd openbricks/ # configure make menuconfig # compile make exit # OLD # # PARAMETERS # GEEXBOX_PATH=~/gxdev # # FUNCTIONS # add_patch() { echo "-- add_path ---" # echo "http://www.uclibc.org/downloads/snapshots/uClibc-20070829.tar.bz2" > $GEEXBOX_PATH/geexbox/packa
#!/bin/bash sudo su cat << EOF > /etc/apt/sources.list.d/freenx-team.list deb http://ppa.launchpad.net/freenx-team/ubuntu intrepid main deb-src http://ppa.launchpad.net/freenx-team/ubuntu intrepid main EOF apt-get install nxclient # old # wget http://64.34.161.181/download/3.2.0/Linux/nxclient_3.2.0-9_i386.deb -P /tmp dpkg -i /tmp/nxclient_*.deb rm /tmp/nxclient_*.deb chmod 755 /usr/lib/cups/backend/ipp # LINK # http://www.nomachine.com/download-client-linux.php
#!/bin/bash sudo su cat << EOF > /etc/apt/sources.list.d/freenx-team.list deb http://ppa.launchpad.net/freenx-team/ubuntu intrepid main deb-src http://ppa.launchpad.net/freenx-team/ubuntu intrepid main EOF sudo apt-get update sudo apt-get -y --force-yes install freenx-server # LINKS # https://launchpad.net/~freenx-team/+archive/ # https://launchpad.net/~marceloshima/+archive
#!/bin/bash wget http://download3.vmware.com/software/vmplayer/VMware-player-2.0.1-55017.i386.tar.gz -P /tmp/ tar -xzf /tmp/VMware-player-2.0.1-55017.i386.tar.gz -C /tmp /tmp/vmware-player-distrib/vmware-install.pl default rm -r /tmp/vmware-player*
#!/bin/sh VCODEC=mp4v echo "--- $0 $@ ---" if [ $1 == "-hq" ]; then VCODEC=h264 fi vlc v4l:/dev/video0 --sout '#duplicate{dst=display,dst="transcode{vcodec=$VCODEC,vb=128}:standard{access=http,mux=ts,url=:8888}"}' --ttl 16 --noaudio