shellscripte
This commit is contained in:
parent
ac32b5bc53
commit
63dedb2976
1 changed files with 42 additions and 0 deletions
42
shellscripte.sh
Executable file
42
shellscripte.sh
Executable file
|
@ -0,0 +1,42 @@
|
|||
if [[ $EUID -ne 0 ]]; then
|
||||
echo "This script must be run as root" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -x
|
||||
|
||||
apt update
|
||||
apt upgrade
|
||||
apt install hedgewars minetest minetest-server teeworlds teeworlds-server mumble mumble-server freeciv gnome-chess gnuchess inkscape gimp ffmpeg git htop android-tools-adb android-tools-fastboot qemu-system btrfs-tools nvidia-367 nvidia-settings
|
||||
nvidia-xconfig
|
||||
|
||||
add-apt-repository ppa:wfg/0ad
|
||||
apt-get update
|
||||
apt-get install 0ad
|
||||
|
||||
# 1. Add the Spotify repository signing key to be able to verify downloaded packages
|
||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
|
||||
|
||||
# 2. Add the Spotify repository
|
||||
echo deb http://repository.spotify.com stable non-free | tee /etc/apt/sources.list.d/spotify.list
|
||||
|
||||
# 3. Update list of available packages
|
||||
apt-get update
|
||||
|
||||
# 4. Install Spotify
|
||||
apt-get install spotify-client
|
||||
|
||||
# dd bs=4M if=2017-03-02-raspbian-jessie.img of=/dev/sdd status=progress && sync
|
||||
|
||||
mkdir -p /media/hdd
|
||||
echo "/dev/sda1 /media/hdd ext4 defaults 0 2" >> /etc/fstab
|
||||
|
||||
# netbeans + jdk
|
||||
# atom
|
||||
# google-chrome
|
||||
# steam
|
||||
# minecraft
|
||||
# discord
|
||||
|
||||
# gpg --recv-keys --keyserver hkp://pgp.mit.edu D9C4D26D0E604491
|
||||
# gpg --recv-keys --keyserver hkp://pgp.mit.edu 5CC908FDB71E12C2
|
Loading…
Reference in a new issue