Home
ITA - Compilare SSH
October 2023
linux
debian
Introduzione
L’altro giorno avevo la necessità di compilare una versione diversa di ssh per una delle macchine su cui stavo lavorando… pensavo che la cosa fosse complicata… e invece no XD
Procedura
Sono quattro comandi in croce :
git clone https://github.com/openssh/openssh-portable # or https://anongit.mindrot.org/openssh.git
cd openssh-portable
autoreconf
./configure --prefix=/opt/openssh-portable --with-libs
make && make tests
per cross compilare :
git clone https://github.com/openssh/openssh-portable # or https://anongit.mindrot.org/openssh.git
cd openssh-portable
autoreconf
./configure --prefix=/opt/openssh-portable --host=arm-linux --with-libs
make && make tests
Riferimenti
© 2024 Stefano Prina
Quest'opera è distribuita con Licenza Creative Commons Attribuzione - Condividi allo stesso modo 4.0 Internazionale Theme Moonwalk
Quest'opera è distribuita con Licenza Creative Commons Attribuzione - Condividi allo stesso modo 4.0 Internazionale Theme Moonwalk