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
#! /bin/sh | |
# ------------------------------------------------------------------------------ | |
# SOME INFOS : fairly standard (debian) init script. | |
# Note that node doesn't create a PID file (hence --make-pidfile) | |
# has to be run in the background (hence --background) | |
# and NOT as root (hence --chuid) | |
# | |
# MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit | |
# INIT-INFO RULES http://wiki.debian.org/LSBInitScripts | |
# INSTALL/REMOVE http://www.debian-administration.org/articles/28 |
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
#!/bin/sh | |
#Installing NODEJS in HOME Directory with STOW | |
export NODEJS_VERSION=0.4.11 | |
mkdir -p ~/local/lib/node_modules | |
cd ~/local/src | |
curl http://nodejs.org/dist/node-v${NODEJS_VERSION}.tar.gz | tar -xzf - | |
cd ~/local/src/node-v${NODEJS_VERSION} |
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
#!/bin/sh | |
# Installing STOW in HOME Directory | |
export STOW_VERSION=1.3.3 | |
mkdir ~/local/stow | |
mkdir -p ~/local/src | |
mkdir ~/local/bin | |
mkdir ~/local/info | |
mkdir ~/local/etc |
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
cat /dev/urandom | od -A n -t x -N 4 -w | tr -d ' ' |
NewerOlder