[Howto] KERBEROS and PAM

posted in: computer, network | 0

prerequisite: working Kerberos configuration #/etc/krb5.conf (minimal example) [libdefaults] default_realm = <MY-REALM> [realms] <MY-REALM> = { kdc = <IP-adress> admin_server = <IP-adress> }   kerberized login: #/etc/pam.conf (without support for X Desktop Environment) login auth required pam_krb5.so login account required pam_krb5.so … Continued

[Facts] boot chain for UEFI and ZFS

posted in: computer | 0

boot -chain example with UEFI (=sucessor of BIOS):   UEFI … the pc is powered on and the UEFI begins with self-test routines ↓ HDD (configured in UEFI) … UEFI boots from the configured device (e.g. “1st boot device = … Continued

[Howto] manually download kernel headers / sources in FreeBSD

posted in: computer | 0

download via svn or svn-lite: #command to download the complete FreeBSD source-files svnlite checkout https://svn.freebsd.org/base/releng/11.0/ /usr/src/ #command to download only the FreeBSD kernel/header source-files svnlite checkout https://svn.freebsd.org/base/releng/11.0/sys/ /usr/src/sys