Ubuntu and zfs

zsysctl show zsysctl state remove rpool/USERDATA/root_b59r4f@autozsys_vbqrly zsysctl state remove –system rpool/ROOT/ubuntu_3r65wz@autozsys_zi8elu zsysctl state remove –user username rpool/USERDATA/username_b59r4f@autozsys_x3699x Hope I got things the right way. Got a message stating that there isn’t enough...

CUDA – Compute Unified Device Architecture

sudo apt remove –autoremove nvidia-* Remove any cuda related from /etc/apt/sources.list.d/ sudo add-apt-repository ppa:graphics-drivers/ppa sudo apt update sudo apt install nvidia-driver-525-server sudo apt -y install nvidia-utils-525-server sudo apt -y install nvidia-settings sudo...

Mail server; dovecot, postfix etc

sudo apt -y install dovecot-core dovecot-imapd dovecot-pop3d postfix sasl2-bin sudo adduser postfix sasl systemctl restart saslauthd systemctl restart postfix /etc/postfix/sasl/smtpd.conf pwcheck_method: saslauthd mech_list: plain login And of course there’s a lot more...

unifi

# unifi cloud key plus 2.0.x # Updated with web gui for all services under one single port (443). Fantastic! # (Not explaining how to generate certificates here.) cp /data/unifi-core/config/unifi-core.crt /data/unifi-core/config/unifi-core.crt.bak cp...

Turning off automatic upgrades

I’m using other tools for checking and upgrading so… $ sudoedit /etc/apt/apt.conf.d/20auto-upgrades From... APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Unattended-Upgrade "1"; ...to... APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Unattended-Upgrade "0"; ...or... APT::Periodic::Update-Package-Lists "0"; APT::Periodic::Download-Upgradeable-Packages "0"; APT::Periodic::AutocleanInterval "0"; APT::Periodic::Unattended-Upgrade "0";