Die Configure-Zeilen sind von LFS oder BLFS unter MIT lizenziert extrahiert. cd $BAU pwd if [ -d openssh-10.2p1 ] then rm --force --recursive openssh-10.2p1 fi tar --extract -f openssh-10.2p1.tar.gz cd openssh-10.2p1 pwd install -v -g sys -m700 -d /var/lib/sshd && groupadd -g 50 sshd && useradd -c 'sshd PrivSep' \ -d /var/lib/sshd \ -g sshd \ -s /bin/false \ -u 50 sshd ./configure --prefix=/usr \ --sysconfdir=/etc/ssh \ --with-privsep-path=/var/lib/sshd \ --with-default-path=/usr/bin \ --with-superuser-path=/usr/sbin:/usr/bin \ --with-pid-dir=/run && make make install && install -v -m755 contrib/ssh-copy-id /usr/bin && install -v -m644 contrib/ssh-copy-id.1 \ /usr/share/man/man1 && install -v -m755 -d /usr/share/doc/openssh-10.2p1 && install -v -m644 INSTALL LICENCE OVERVIEW README* \ /usr/share/doc/openssh-10.2p1 #echo "PermitRootLogin no" >> /etc/ssh/sshd_config cd .. pwd # tar -x -f blfs-systemd-units-20251204.tar.xz # cd blfs-systemd-units-20251204 # make install-sshd # cd .. # pwd