Home

ITA - Compilare SSH

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