This file contains 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
ssh -vvv -o LogLevel=DEBUG3 |
This file contains 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
# Sane settings for Gnome | |
gsettings set org.gnome.desktop.background show-desktop-icons true | |
gsettings set org.gnome.desktop.interface clock-show-date true | |
gsettings set org.gnome.settings-daemon.plugins.xsettings antialiasing 'grayscale' | |
gsettings set org.gnome.settings-daemon.plugins.xsettings hinting 'slight' | |
gsettings set org.gnome.desktop.interface text-scaling-factor '1.0' | |
gsettings set org.gnome.desktop.interface monospace-font-name "Monospace 10" | |
gsettings set org.gnome.desktop.interface document-font-name 'Sans 10' | |
gsettings set org.gnome.desktop.interface font-name 'Cantarell 10' | |
gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita' |
This file contains 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
echo "hostname.domain.example.com"> /etc/hostname | |
hostname -F /etc/hostname | |
echo "HOSTNAME=$(hostname)">/etc/sysconfig/network | |
echo 127.0.0.1 $(hostname) $(hostname -s) localhost.localdomain localhost > /etc/hosts | |
echo ::1 localhost6.localdomain6 localhost6 >> /etc/hosts |
This file contains 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
sudo wget -O /etc/yum.repos.d/virtualbox.repo http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo | |
sudo yum -y update | |
sudo yum -y install binutils qt gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms VirtualBox-4.2 vagrant | |
sudo yum -y clean all | |
wget http://download.virtualbox.org/virtualbox/4.2.16/Oracle_VM_VirtualBox_Extension_Pack-4.2.16-86992.vbox-extpack | |
VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.2.16-86992.vbox-extpack | |
rm -f Oracle_VM_VirtualBox_Extension_Pack-4.2.16-86992.vbox-extpack | |
sudo useradd vagrant | |
sudo usermod -a -G vboxusers vagrant |
This file contains 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
mkdir -p ~/{a/{b,c/d},e} |
This file contains 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
sudo yum -y install ttmkfdir | |
wget http://font.ubuntu.com/download/ubuntu-font-family-0.80.zip | |
mkdir /tmp/ubuntu-font-family-0.80 | |
unzip -j ubuntu-font-family-0.80.zip -d /tmp/ubuntu-font-family-0.80 | |
rm -f ubuntu-font-family-0.80.zip | |
sudo mkdir /usr/share/fonts/ubuntu | |
sudo mv /tmp/ubuntu-font-family-0.80/*.ttf /usr/share/fonts/ubuntu | |
rm -rf /tmp/ubuntu-font-family-0.80 | |
cd /usr/share/fonts/ubuntu | |
ttmkfdir > fonts.dir |
This file contains 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
Show hidden characters
{ | |
// Font | |
"font_face": "Ubuntu Mono", | |
"font_options": "subpixel_antialias", | |
"line_padding_bottom": 1, | |
"line_padding_top": 1 | |
} | |
This file contains 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
sudo yum -y install fabric gcc python-devel python-setuptools |
This file contains 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
reg add "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v AutoRun /t REG_SZ /d "if x%COMSPEC%==x%CMDCMDLINE% (cd /d d:\)" |
This file contains 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
# Requires fabric: sudo yum -y install fabric gcc python-devel python-setuptools | |
from fabric.api import env, task, hide, sudo | |
user1 = 'foo' | |
pass1 = 'bar' | |
user2 = 'baz' | |
pass2 = 'qux' |