Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'howto'

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