FreeBSD is an operating system which focuses on features, speed, and stability. It provides robust network services under the heaviest loads and uses memory efficiently to maintain good response times for thousands of simultaneous user processes. FreeBSD/amd64 supports the AMD64 platform which is expected to be production quality with respects to all aspects of the FreeBSD operating system, including installation and development environments.

Thankfully to Hetzner’s idea to reuse hardware of terminated products it is possible to find an economic yet powerful system.

Inspired by BOINC Projects with FreeBSD support I run a BOINC rig on AMD Ryzen Threadripper 2950X processor with maximum possible load on the system.

The ordered server is delivered in rescue system. Connecting over SSH with tunneling of VNC port makes the whole installation easy.

# ssh root@46.4.23.49 -L 6900:localhost:5900;
Rescue System up since 2020-12-29 14:00 +01:00

Hardware data:

   CPU1: AMD Ryzen Threadripper 2950X 16-Core Processor (Cores 32)
   Memory:  128712 MB
   Disk /dev/sda: 512 GB (=> 476 GiB)
   Total capacity 476 GiB with 1 Disk

Network data:
   eth0  LINK: yes
         MAC:  00:d8:61:56:51:dc
         IP:   46.4.23.49
         IPv6: 2a01:4f8:221:3895::2/64
         Intel(R) Gigabit Ethernet Network Driver

Note down the DNS resolvers, the default gateway, IP and IPv6 addresses, and ethernet driver.

# cat /etc/resolv.conf;
# ip route show;
# ifconfig eth0;
# lspci | grep Ethernet;

Install QEMU. It is a generic and open source machine emulator and virtualizer.

# apt-get install qemu;

Download FreeBSD ISO image to install a new system from.

# wget https://download.freebsd.org/ftp/releases/amd64/amd64/ISO-IMAGES/12.2/FreeBSD-12.2-RELEASE-amd64-disc1.iso;

Boot dual proccessor virtual machine with 2GB of memory and first disk attached to it. The ISO image is mounted as a CD-ROM and there is a VNC enabled.

# qemu-system-x86_64 -smp cpus=2 -m 2048 -hda /dev/sda -net nic -boot d -vnc localhost:0 -cdrom /root/FreeBSD-12.2-RELEASE-amd64-disc1.iso;

Connect the VNC client to localhost:6900 and continue installation normally. Refer to the official handbook of Installing FreeBSD.

ZFS configuration for pool type is “stripe: 1 disk” with encrypted swap. More hard drives can be enabled in Qemu by

# [...] -hda /dev/sda -hdb /dev/sdb -hdd /dev/sdc [...]

freebsd installer zfs

The FreeBSD installer will ask to configure em0 virtual network device. Use DHCP to change that later for Intel(R) Gigabit Ethernet Network Driver.

At the end of installation open a shell in the new system to make final manual modifications. Add networking configuration to /etc/rc.conf for igb0.

# ee /etc/rc.conf;
gateway_enable="YES"
gateway_if="igb0"
gateway_ip="46.4.23.1"
ifconfig_igb0="inet 46.4.23.49 netmask 255.255.255.192"
ifconfig_igb0_ipv6="inet6 2a01:4f8:221:3895::2 prefixlen 64"

ipv6_default_interface="igb0"
ipv6_defaultrouter="fe80::1%igb0"
route_default="default $gateway_ip"
route_gateway="-host $gateway_ip -interface $gateway_if"
static_routes="default gateway"

Verify the final SSH daemon configuration.

# ee /etc/ssh/sshd_config;

Halt the QEMU virtual machine and reboot the rescue system.

Next SSH connection to the IP will offer a new SSH keys and connects to the newly installed FreeBSD.

# uname -a;
FreeBSD akatorea.wilkart.online 12.2-RELEASE FreeBSD 12.2-RELEASE r366954 GENERIC  amd64
Send me a digital donation if you find this information useful
Wireless Intelligent Lifeform Keen on Accurate Repair and Troubleshooting
brave