SC2 – Ubuntu 14.04

[bash]
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.7
wget http://…./StarCraft-II-Setup-deDE.exe
wine start ./StarCraft-II-Setup-deDE.exe
[/bash]

Veröffentlicht unter Linux, Star Craft 2 | Schreib einen Kommentar

ip route …

[bash]
ip route show
echo "1 admin" >> /etc/iproute2/rt_tables
more /etc/iproute2/rt_tables
ip route add 10.xx.xxx.0/23 dev eth1 src 10.xx.xxx.xxx table admin
ip route add default via 10.xx.xxx.x dev eth1 table admin
ip rule show
ip rule add from 10.xx.xxx.xxx/32 table admin
ip rule add to 10.xx.xxx.xxx/32 table admin
ip rule show
[/bash]

Veröffentlicht unter Allgemein, bash, Linux | Schreib einen Kommentar

X 11 Forwarding – ssh – Putty

http://aruljohn.com/info/x11forwarding/

http://www.tacticalcode.de/2013/02/x11-forwarding-uber-ssh.html

remove empty lines and comments

[bash]
# egrep -v "^$|^#" file.cfg
[/bash]

Veröffentlicht unter Linux, X11 | Schreib einen Kommentar

PC

MSI H87-G43 (7816-002R)

Intel core i5 4570 Prozessor

Kingston PC3-10600 Arbeitsspeicher 8GB 1333 MHz, 240-polig) DDR3-RAM Kit

Scythe Mugen 4

Seagate Barracuda ST2000DM001

ASUS HD7870-DC2-2GD5-V2 DirectCU II

ASUS R9270X-DC2T-2GD5 DirectCU II TOP

ASUS R9270X-DC2-2GD5 DirectCU II

MSI R9 270X Gaming 2G

SAPPHIRE HD7870 2048MB GDDR5 GHZ Edition OC 256bit
http://geizhals.de/?fs=11199-19-20G&in=

Veröffentlicht unter Hardware | Schreib einen Kommentar

HandBrakeCLI

BDMV_2_MKV:

[bash]
HandBrakeCLI -i ./<INPUT_DIR> -f mkv -o /<OUTPUT.mkv> –no-dvdnav -4 -e x264 –x264-preset medium –x264-tune film -x –x264-profile high -m -q 20 -vfr -a 7 -E ffac3 -B 320 -6 dpl1 -w 1920 -l 1080 –strict-anamorphic –main-feature
[/bash]

DVD_2_MKV:

[bash]
HandBrakeCLI -i "./<INPUT>"/ -f mkv -o /<OUTPUT>.mkv –no-dvdnav -4 -e x264 –x264-preset ultrafast –x264-tune film -x –x264-profile high -m -q 20 -vfr -a 1 -E ffac3 -B 320 -6 dpl1 –strict-anamorphic –main-feature
[/bash]

Weiterlesen

Veröffentlicht unter Allgemein, bash | Schreib einen Kommentar

mount NTFS

Beim Mounten folgende Option angeben.

[bash]
mount -t ntfs-3g /dev/sdb1 /media/usb -o iocharset=utf8
[/bash]

Backup mit ntfsclone

Ordner auf der Zielpartition erstellen

[bash]
mkdir /mnt/usb
[/bash]

USB-Festplatte mounten

[bash]
ntfs-3g /dev/sda1 /mnt/usb
[/bash]

Ordner für die Sicherung erstellen

[bash]
mkdir /mnt/usbPC005
[/bash]

Image der Systempartition auf der USB-Festplatte sichern

[bash]
ntfsclone –save-image –output – /dev/hda1 | gzip -c > /mnt/usb/PC005/2007-08-31.img.gz
[/bash]

Veröffentlicht unter bash, Linux | Schreib einen Kommentar