= OpenBSD = The OpenBSD project produces a FREE, multi-platform 4.4BSD-based UNIX-like operating system. {{attachment:slackers.jpg}} * http://www.openbsd.org * https://www.openbsd.org/art2.html {{{#!highlight sh wget http://ftp.fr.openbsd.org/pub/OpenBSD/6.0/amd64/install60.iso wget https://cdn.openbsd.org/pub/OpenBSD/6.5/amd64/install65.iso wget https://cdn.openbsd.org/pub/OpenBSD/7.3/amd64/install73.iso }}} == VirtualBox installation == * new * name: OpenBSD6 * type: bsd * version: openbsd 64 bit * next * 512 MB * next * create disk * create * vdi * next * fixed size * next * 8GB * Create * Settings * Network card Intel PRO/1000 MT Desktop * Start * install60.iso * Start * (I)nstall * ? choose keyboard * pt * System hostname: openbsd * card: em0 * IP v4 address: dhcp * IP v6: none * done * password for root: ******* * start sshd yes * expect X11 yes * X11 started by xdm: no * setup a user: vitor * Password for vitor ******** * Allow root ssh login no * root disk wd0 * use whole disk * Auto layout * set location cd0 * pathname 6.0/amd64 * all * done * continue without verification yes * done * Timezone Portugal # Europe/Lisbon * yes * reboot * Unmount ISO * Login as vitor * VM settings, network, adapter 1, NAT, port forwarding, * add rule, protocol tcp, host port 2222, guest port 22 * add rule, protocol tcp, host port 8080, guest port 80 {{{#!highlight bash df -h startx # fvwm window manager setxkbmap pt # default shell ksh perl -v # 5.20 du -hs . #edit /root/.profile PKG_PATH=http://ftp.fr.openbsd.org/pub/OpenBSD/6.0/packages/amd64/ export PKG_PATH exit login env pkg_info python pkg_add python-2.7.12 # pkg_add python-2.7.16 pkg_info -Q jdk pkg_add jdk-1.8.0.72p0v0 # pkg_add jdk-11.0.2.9.3p0v0 # You may wish to add /usr/local/jdk-11/man to /etc/man.conf cd /usr/local/jdk-1.8.0/bin # cd /usr/local/jdk-11/bin ./java -version python2.7 --version pkg_info #list installed packages #https://www.openbsd.org/faq/faq15.html#PkgMgmt #install ntpd pkg_add ntp ntpdate pt.pool.ntp.org #update datetime }}} == httpd service == In '''/etc/rc.conf ''' remove the value NO for httpd_flags {{{ httpd_flags= }}} In '''/etc/httpd.conf''' {{{ server "localhost"{ listen on 0.0.0.0 port 80 root "/htdocs/localhost" } }}} * In the configuration file root points to /var/www * The logs are in /var/ww/logs {{{#!highlight sh /etc/rc.d/httpd start /etc/rc.d/httpd check pkg_info -Q wget pkg_add wget-1.20.2 wget http://localhost/ mkdir -p /var/www/htdocs/localhost echo -e "
Hello" > /var/www/htdocs/localhost/index.html /etc/rc.d/httpd restart pkg_add fcgi-2.4.0p16 pkg_add spawn-fcgi-1.6.3p0 # https://web.archive.org/web/20160122022029/http://www.fastcgi.com/drupal/node/6?q=node/21 }}} === fcgi.c === {{{#!highlight c #include "fcgi_stdio.h" #include