This guide explains how to install the FreeBSD on Hetzner Cloud VPS. This might also work for other VPS providers with the proper rescue system in place.
Table of contents:
This guide explains how to install the FreeBSD on Hetzner Cloud VPS. This might also work for other VPS providers with the proper rescue system in place.
Table of contents:
Part of collection: Hyper-converged Homelab with Proxmox
This is part 1 focussing on the networking part of building a Proxmox High Available cluster with Ceph.
Part 2 focusses on building the Proxmox Cluster and setting up Ceph itself, and part 3 focussing on Managing and Troubleshooting Proxmox and Ceph.
For some time, I was looking for options to build a Hyper-converged (HCI) Homelab, considering options like TrueNAS Scale, SUSE Harvester) among other option.
| #!/bin/bash | |
| MouseIdentifierString="Mouse" | |
| writeOpts() { | |
| sudo cat <<'EOF' | sudo tee -a /var/lib/bluetooth/$1/$2/info | |
| [ConnectionParameters] | |
| MinInterval=6 | |
| MaxInterval=7 | |
| Latency=0 |
| spellChecking = true | |
| spellingLanguage = 'en' | |
| softTabs = true | |
| softWrap = false | |
| invisiblesMap = "~ \t┊" | |
| TM_STRIP_WHITESPACE_ON_SAVE = true | |
| TM_GIT = "/usr/local/bin/git" | |
| TM_RUBY = "/usr/local/var/rbenv/shims/ruby" |
| Add to /boot/loader.conf: | |
| ng_ubt_load="YES" | |
| Add to /etc/rc.conf: | |
| hcsecd_enable="YES" | |
| sdpd_enable="YES" | |
| bthidd_enable="YES" | |
| Reboot, or run: |
It sometimes happen you need change code on a machine from which you cannot push to the repo.
You’re ready to copy/paste what diff outputs to your local working copy.
You think there must be a better way to proceed and you’re right. It’s a simple 2 steps process:
1. Generate the patch:
git diff > some-changes.patch