Tagged: ZFS

zfs-utils & zfs-dkms update

Error-Message: installing zfs-utils (2.1.4-1) breaks dependency ‘zfs-utils=2.1.3’ required by zfs-dkms 0) Get current installed kernel and check compatibility uname -r 1) Remove the “Ignore these packages on regular upgrade”: in /etc/pacman.conf add [options] #IgnorePkg=zfs-dkms 2) Update zfs-dkms and zfs-utilis simultaneously (when yay calls pacman to install built packages, it does it sequentially.) Use yay -Sa –nodeps zfs-dkms zfs-utils Source: https://www.reddit.com/r/archlinux/comments/tzysyg/installing_zfs_breaks_dependency/...

OpenSSL 3 f**** up everything

Another arch upgrade, another f**-up. Arch decided to move from OpenSSL 1.1 LTS to 3.0.7-2 breaks a lot in the system – Look at the threads at https://bbs.archlinux.org/viewforum.php?id=44 For me it broke zfs-utils and therefor the succesful mounting of my home-directory. No home – no login… bad The solution, as stated in https://bbs.archlinux.org/viewtopic.php?id=281005&p=2 (totally different software, same issue, same solution):...

Linux Init processes – and zfs autoimport

Collection of resources on Linux init-demons. It covers the (historical) demons system V, and upstart, as well as the current one: systemd: see digitalocean.com – How To Configure a Linux Service to Start Automatically After a Crash or Reboot – Part 1: Practical Examples However as stated, systemd is “more than an init daemon: systemd is a framework that encompasses...

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...