As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/sh | |
| . /etc/rc.subr | |
| name="delegated" | |
| rcvar=delegated_enable | |
| load_rc_config ${name} | |
| : ${delegated_pidfile="/var/run/delegated/delegated.pid"} | |
| max=15 |
| $> date | |
| dim 7 jul 2013 15:48:19 CEST | |
| $> cd /usr/share/zoneinfo/Europe | |
| $> cp Paris /etc/localtime | |
| $> date | |
| dim 7 jul 2013 17:48:19 CEST |
| https://github.com/mapnik/mapnik/wiki/FreeBSDInstallation | |
| $> cd /usr/ports/print/freetype2/ | |
| $> make install clean distclean | |
| $> cd /usr/ports/devel/icu/ | |
| $> make install clean distclean | |
| $> cd /usr/ports/graphics/jpeg | |
| $> make install clean distclean |
| #!/usr/bin/env python | |
| import urllib2 | |
| import json | |
| html = urllib2.urlopen('http://www.jsonip.com').read() | |
| print "Normal ip: %s" % json.loads(html)['ip'] | |
| proxy_support = urllib2.ProxyHandler({"http":"http://127.0.0.1:8123"}) | |
| opener = urllib2.build_opener(proxy_support) |
| # VMWare 9 | |
| # Freebsd 9.1 Bootimage | |
| # Network: Bridged | |
| # DHCP: Auto | |
| # Disk: 5.0 Go | |
| # Ram: 128.0 Mo | |
| # AllocateFullDiskSpace: Yes | |
| #Disable rsyslog listen | |
| echo "yslogd_flags=\"-s -s\" >> /etc/rc.conf |
| # VMWare 9 | |
| # Freebsd 9.1 Bootimage | |
| # Network: Bridged | |
| # DHCP: Auto | |
| # Disk: 250.0 Go | |
| # Ram: 1.0 Go | |
| # AllocateFullDiskSpace: Yes | |
| # SplitFile: Yes | |
| #Disable rsyslog listen |
| # VMWare 9 | |
| # Freebsd 9.1 Bootimage | |
| # Network: Bridged | |
| # DHCP: Auto | |
| # Disk: 250.0 Go | |
| # Ram: 2.0 Go | |
| # AllocateFullDiskSpace: Yes | |
| # SplitFile: Yes | |
| #Disable rsyslog listen |
| socksParentProxy = "127.0.0.1:9049" | |
| proxyAddress = "0.0.0.0" | |
| proxyPort = 8123 | |
| #diskCacheRoot = "" |
| #!/bin/sh | |
| # $FreeBSD: branches/RELENG_9_1_0/security/tor/files/tor.in 300897 2012-07-14 14:29:18Z beat $ | |
| . /etc/rc.subr | |
| name="tor" | |
| rcvar=tor_enable | |
| load_rc_config ${name} | |
| : ${tor_user="_tor"} | |
| : ${tor_datadir="/var/db/tor"} |