for your convinience this instuction is available as:
gist
git repo
# settings
# HOW TO mount android as media device on ubuntu | |
# Step 1: | |
# Enable Developer options and enable USB debugging mode. | |
# Setting > About phone > Start tapping (7 times) | |
# on Build number option 'you are now developer' | |
# Then go to Setting > Developer options > Enable USB Debugging | |
# mount nexus 4 | |
# Step 2: |
On 64bit, the required package to get a Skype tray / appindicator icon is not installed automatically. To fix this, use the following command:
sudo apt-get install sni-qt:i386
The Skype tray icon might disappear after you log in, but it should show up after a few seconds.
#!/bin/bash | |
# source | |
# ubuntu readme : http://cran.r-project.org/bin/linux/ubuntu/README | |
# cran r mirrors : http://cran.r-project.org/mirrors.html | |
# add repository | |
sudo apt-add-repository "deb http://cran.gis-lab.info/bin/linux/ubuntu trusty/" | |
# import key |
Section "Device" | |
Identifier "Default Device" | |
Driver "nvidia" | |
Option "NoLogo" "True" | |
Option "RegistryDwords" "EnableBrightnessControl=1" | |
EndSection |
TerminalWindow .notebook { | |
padding: 0; | |
border-width: 0; | |
} | |
TerminalWindow, | |
TerminalWindow.background { | |
background-image: none; | |
background-color: #6e6e6e; | |
color: #000000; |
R CMD javareconf -e | |
# then | |
# This fixes the LD_LIBRARY_PATH problem for me (Ubuntu Linux 14.04, R version 3.1.1): | |
# Add this line to .profile: | |
export LD_LIBRARY_PATH $JAVA_HOME/jre/lib/amd64:$JAVA_HOME/jre/lib/amd64/server |
#!/bin/bash | |
wget https://www.rabbitmq.com/releases/rabbitmq-server/v3.3.5/rabbitmq-server_3.3.5-1_all.deb | |
dpkg -i rabbitmq-server_3.3.5-1_all.deb | |
rm rabbitmq-server_3.3.5-1_all.deb |