michael@slashetc:~$

  • Apt-Fast To Speed Up Your Package Downloads In Ubuntu/Debian

    Apt-Fast is a small shell script wrapper that can drastically improve apt-get & aptitude download speed using multi threaded tool such as axel and aria2. Read More here.

  • Apt-Fast To Speed Up Your Package Downloads In Ubuntu/Debian

    Apt-Fast is a small shell script wrapper that can drastically improve apt-get & aptitude download speed using multi threaded tool such as axel and aria2. Read More here.

  • Linux socket-to-socket tunnel (MySQL example)

    $ socat "UNIX-LISTEN:/tmp/mysqld.temp.sock,reuseaddr,fork" EXEC:"ssh username@remoteserver.com socat STDIO UNIX-CONNECT:/var/run/mysqld/mysqld.sock"</p> Won't work with password login. You must add your RSA key to the server's authorizedkeys file, or change the ssh command adding the -i option for a custom RSA key: socat "UNIX-LISTEN:/tmp/mysqld.temp.sock,reuseaddr,fork" EXEC:"ssh username@remoteserver.com -i /home/user/rsa-keys/id_rsa socat STDIO UNIX-CONNECT:/var/run/mysqld/mysqld.sock" --- /tmp/mysqld.temp.sock will...