- http://blog.cloudera.com/blog/2015/07/how-to-install-apache-zeppelin-on-cdh/
- https://ypg-data.github.io/post/2016/02/running-zeppelin-on-cdh/
sudo apt-get install node nodejs npm
git config --global https.proxy http://127.0.0.1:1081 | |
git config --global https.proxy https://127.0.0.1:1081 | |
git config --global http.proxy socks5://127.0.0.1:1081 | |
git config --global https.proxy socks5://127.0.0.1:1081 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |
sudo apt-get install node nodejs npm
sysJupiterDev@gbrdcr00015n02: /bigdata/projects/MERCURY | |
$ ls spark-1.5.1-bin-hadoop2.6/conf/yarn-conf/ | |
core-site.xml hadoop-env.sh hdfs-site.xml hive-site.xml mapred-site.xml ssl-client.xml topology.map topology.py yarn-site.xml |
#!/bin/bash | |
## Bash Script to clear cached memory on (Ubuntu/Debian) Linux | |
## By Philipp Klaus | |
## see <http://blog.philippklaus.de/2011/02/clear-cached-memory-on-ubuntu/> | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "You have to run this script as Superuser!" | |
exit 1 | |
fi |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |