Gnome PPA

sudo add-apt-repository ppa:gnome3-team/gnome3-staging

sudo add-apt-repository ppa:gnome3-team/gnome3

How to set up a local SOCKS proxy that tunnels traffic through SSH

ssh -D 1337 -f -C -q -N user@remote -p 22
  • -D 1337 tells ssh to launch a SOCKS server on port 1337 locally.
  • -f forks the process into the background.
  • -C Turns on compression.
  • -q enables “Quiet mode”, since the purpose here is only to tunnel we don’t really care about error output and such.
  • -N tells ssh that no commands will be sent (-f complains if we don’t specify this).
  • -p specifies what port to use; obviously this is defaulted to 22 so the statement above is pointless, but if you’re a clever fellow you’re probably not running SSH on port 22 🙂

References :
http://askubuntu.com/questions/469582/how-do-i-set-up-a-local-socks-proxy-that-tunnels-traffic-through-ssh

Setup a static IP in Ubuntu

open /etc/network/interfaces with editor

auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.56.101
netmask 255.255.255.0
gateway 192.168.56.1

and then

service networking restart

axel

bash script for downloading with axel

#!/bin/bash

axel -a -n32 link
sleep 10
axel -a -n32 link
sleep 10
axel -a -n32 link
sleep 10
axel -a -n32 link

 

sudo

Description :

execute a command as another user

Examples :

sudo -i

get super user shell