Haveged on Cloud Linux

1

Estou tentando descobrir como instalar o Cloud Linux . Não parece estar disponível no repo, e tentar fazer um make install não funciona. Minha pergunta é:

O haveged é compatível com o CL e, em caso afirmativo, existe um repositório que eu possa simplesmente adicionar para instalá-lo?

Todas as instruções que li nos mostram simplesmente para instalá-lo, mas não estão disponíveis em repositórios CL. É por isso que não tenho certeza se é compatível. Estou tentando gerar entropia em um servidor no qual não posso conectar nada.

    
por Gordon Snappleweed 13.09.2015 / 01:40

1 resposta

1

Eu não rodei o Cloud Linux, mas este tutorial da Digital Ocean mostra como instalá-lo a partir da fonte:

visit the download page and choose the latest release tarball (1.7a at the time of this writing). After downloading the tarball, untar it into your current working directory:

# tar zxvf /path/to/haveged-x.x.tar.gz

Now you compile and install:

# cd /path/to/haveged-x.x
# ./configure
# make
# make install

By default, this will install with a prefix of /usr/local, so you should add something similar to the following to /etc/rc.local (or your system's equivalent) to make it automatically start on boot (adjust the path if necessary):

# Autostart haveged
/usr/local/sbin/haveged -w 1024

Run the same command manually (as root) to start the daemon without rebooting

Nota: a versão atual é 1.9.1 a partir de hoje.

    
por 31.03.2016 / 22:17