This guide explains how to set up DNS over HTTPS (DoH) on a Linux system using cloudflared. DoH ensures that your DNS queries are encrypted and secure, protecting your online privacy and preventing third-party monitoring of your internet activity.
The TrueNAS installer doesn't have a way to use anything less than the full device. This is usually a waste of resources when installing to a modern NVMe which is usually several hundred of GB. TrueNAS SCALE will use only a few GB for its system files so installing to a 16GB partition would be helpful.
The easiest way to solve this is to modify the installer script before starting the installation process.
This plugin adds completion for the Kubernetes cluster manager, as well as some aliases for common kubectl commands.
To use it, add kubectl to the plugins array in your zshrc file:
plugins=(... kubectl)A collection of peer-to-peer decentralized projects. Contact me to add your project!
More project can be found here: https://www.gnunet.org/links/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo ' (pre) script declarations' | |
| IP6TABLES='/sbin/ip6tables' | |
| IP4TABLES='/sbin/iptables' | |
| LAN_IF='ens+' | |
| TUN_IF='tun+' | |
| INNER_GLOBAL_UNICAST='2001:0db8:ffff:ffff::/48' | |
| INNER_IPV4_UNICAST='10.8.0.0/24' | |
| IPV4_LINK_LOCAL='169.254.0.0/16' #RFC 3927 | |
| IPV6_LINK_LOCAL='fe80::/10' #RFC 4291 |