Category: Server

Ubiquity Edge Router X and Wireguard

Wireguard is some really cool stuff. However i still did not get it to work on the Edge Router X – shame on me.. Keeping this for later.. https://github.com/WireGuard/wireguard-vyatta-ubnt https://www.erianna.com/wireguard-ubiquity-edgeos/ https://neontom.com/blog/wireguard-on-edgeos/

Howto – LXC in Proxmox

## Things about LXC – LXC is not as separated as VMs – LXC only emulates the OS (not the hardware layer) which makes is fast – Techniques used behind the scenes are cgroups and namespaces – …thus only Linux guests are possible – LXC emulates an OS, whereas “Docker containers are restricted to a single application by design.” (“Container...

ZFS – Good to know

## Links:https://ruvi-d.medium.com/zfs-on-ubuntu-20-04-lts-53728f3bc9e9 https://wiki.ubuntu.com/Kernel/Reference/ZFS https://jrs-s.net/2016/09/15/zfs-snapshots-and-cold-storage/ https://didrocks.fr/2020/05/26/zfs-focus-on-ubuntu-20.04-lts-zsys-general-presentation/ https://wiki.archlinux.org/index.php/ZFS ## on Linux install ZFS on Linux > sudo apt install zfsutils-linux ## Commands: ### List the Pools > zpool list ### Unmount Pool/Dataset > zfs unmount <pool>/<dataset> ### Show parameters of pool > zpool get all <pool> ### List the DataSets > zfs list ### Create a Pool (easy/test) > zpool create -f...