Linux: Debian 9 major package versions
Debian 9 ships with these versions of some core packages:
Package | Version |
---|---|
Apache | 2.4.25 |
GCC | 6.3.0 |
Kernel | 4.9.0 |
Perl | 5.24.1 |
PHP | 7.0.19 |
Vim | 8.0.550 |
Git | 2.11.0 |
Debian 9 ships with these versions of some core packages:
Package | Version |
---|---|
Apache | 2.4.25 |
GCC | 6.3.0 |
Kernel | 4.9.0 |
Perl | 5.24.1 |
PHP | 7.0.19 |
Vim | 8.0.550 |
Git | 2.11.0 |
Debian 8 has been released and I gathered the versions of some core packages:
Package | Version |
---|---|
Apache | 2.4.10 |
GCC | 4.9.2 |
Kernel | 3.16.0 |
Perl | 5.20.2 |
PHP | 5.6.7 |
Vim | 7.4.488 |
Fedora and CentOS automatically regenerate SSH host keys on bootup if the key files are missing. This makes it easy to trigger regeneration as you simply remove the keys, and reboot the server. Other distributions are not quite as forgiving and require manual intervention. These are the steps I've used on Debian to get updated host keys.
rm /etc/ssh/ssh_host_*
ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -q -t rsa
ssh-keygen -f /etc/ssh/ssh_host_ecdsa_key -N '' -q -t ecdsa
ssh-keygen -f /etc/ssh/ssh_host_ed25519_key -N '' -q -t ed25519
ls /etc/ssh/*key* -lsh
systemctl restart sshd
Tags: