- Download GtkRadiant and application icon.
- Decompress the downloaded archive.
- Install GtkRadiant.
- $ sudo mv GtkRadiant-1.6.4-Linux-i686-20131213/ /opt/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if (($# == 0)); then | |
| echo "`basename $0`: You must specify one of the '-hlrv' options." | |
| echo "Try '`basename $0` -h' for more information." | |
| exit 1 | |
| fi | |
| while getopts ":hlr" opt; do | |
| case $opt in |
- libqt4-network:amd64
- Browse to http://www.urbanterror.info/downloads/.
- Under "Game installer/updater" click on the "UrbanTerror42.tar.gz" link.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Gnome rotate wallpaper | |
| [Service] | |
| Type=oneshot | |
| Environment=DISPLAY=:0 | |
| Environment=WALLPAPER_DIR=%h/Pictures/wallpaper | |
| EnvironmentFile=-%h/.config/systemd/user/gnome-rotate-wallpaper.conf | |
| ExecStart=/bin/bash /usr/local/bin/gnome_rotate_wallpaper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Minecraft Server | |
| Wants=network.target | |
| After=network.target | |
| [Service] | |
| User=minecraft | |
| Group=minecraft | |
| Nice=5 | |
| SuccessExitStatus=0 1 143 255 |
- Create a place to store the minecraft application.
$ sudo mkdir /opt/minecraft-client/ 2. Get a Minecraft application icon.
$ wget http://orig05.deviantart.net/e3a4/f/2013/101/b/8/minecraft_icon_by_kevinflyn-d61b35j.png 3. Move Minecraft client and icon.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=status email for %i to notify | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/usr/local/sbin/systemd-email [email protected] %i | |
| User=root | |
| Group=systemd-journal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/> | |
| # This script is licensed under GNU GPL version 2.0 or above | |
| # Source: http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html | |
| # Author Vivek Gite <[email protected]>, | |
| # Peter Geil <[email protected]> | |
| # ------------------------------------------------------------ | |
| # SETME First - local mysql user/pass | |
| _lusr="src-db-user" | |
| _lpass="src-db-pw" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name foo; | |
| # root directive should be global | |
| root /var/www/sites/foo/cpanel/webroot/; | |
| index index.php; | |
| access_log /var/log/nginx/access.foo.log; | |
| error_log /var/log/nginx/error.foo.log; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name thewarden; | |
| # root directive should be global | |
| root /var/www/sites/thewarden; | |
| index index.php; | |
| autoindex on; |
NewerOlder