Advertising
advertising
related pastes to tag 'howto'
- 1967836 - Build Varnish on OSX Snow Leopar: leopard x osx guide os mac snow howto varnish
-
- ## Install prerequisites to build Varnish and configure system path
- sudo port install automake libtool pkgconfig pcre
- export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
- ## Make sure ~/src exists and then downloads and extracts Varnish there (change as required)
- mkdir -p ~/src && cd ~/src
- wget "http://downloads.sourceforge.net/project/varnish/varnish/2.1.3/varnish-2.1.3.tar.gz"
- tar xvzf varnish-2.1.3.tar.gz && cd varnish-2.1.3
- 1487610 - wireddd: openwrt openvpn howto how-to
-
- #server lan is 192.168.1.0, client lan is 10.0.1.0
- #do this stuff first
- opkg update
- opkg install openvpn
- mkdir /etc/openvpn
- openvpn --genkey --secret /etc/openvpn/static.key
- 1188406 - fearphage: count opera number tabs howto
-
- @echo off
- setlocal
- set operaSessionsFile=%appdata%\Opera\Opera\profile\sessions\autosave.win
- for /f "delims== tokens=1,2 usebackq" %%I in (`type "%operaSessionsFile%"`) do (if "%%I" == "window count" echo %%J)
- endlocal