Could not load host key: /etc/ssh/ssh_host_ecdsa_key Restarting OpenBSD Secure Shell server: sshdCould not load host key: /etc/ssh/ssh_host_ecdsa_key
To correct just run:
dpkg-reconfigure openssh-server
Could not load host key: /etc/ssh/ssh_host_ecdsa_key Restarting OpenBSD Secure Shell server: sshdCould not load host key: /etc/ssh/ssh_host_ecdsa_key
To correct just run:
dpkg-reconfigure openssh-server
While attempting to install a ruby gem you may get this error:
Building native extensions. This could take a while... ERROR: Error installing rails: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb extconf.rb:36:in `require': no such file to load -- mkmf (LoadError) from extconf.rb:36
To resvole this:
apt-get install ruby1.9.1-dev
After removing puppet service and then attempting to install any program you may get this error
syntax error: unknown user 'puppet' in statoverride file.
To correct this error open /var/lib/dpkg/statoverride
and remove the lines with the puppet user in it.
After installing and configuring Dovecot for:
protocols = imap imaps
And restarting Dovecot this error is seen:
Error: mail_executable: Can't use /usr/lib/dovecot/imap: No such file or directory Fatal: Invalid configuration in /etc/dovecot/dovecot.conf
This can be caused by installing the dovecot-common package but not the dovecot-imapd packages
To resolve just run on debian:
apt-get install dovecot-imapd /etc/init.d/dovecot restart
This error:
configure.in:14: error: possibly undefined macro: AC_PROG_LIBTOOL If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1
Occurs on Debian when attempting to automake a source program, to fix this we need to install libtool
by running:
apt-get install libtool
Now re-run that automake or autogen.sh and it should work fine
This is an error frequently seen after switching MTAs in Debian.
It is caused by sendmail still running when you are tying to run another MTA.
To correct just run:
/etc/init.d/sendmail stop
After attempting to make install clean
for net/netatalk
This error is observed:
[create-users-groups] Error code 67
and the make fails.
This is due to the fact that user database being out of sync. To correct this we need to issue the following command:
pwd_mkdb -p /etc/master.passwd
Now try to re-make the program and it should proceed successfully.
and then try to emerge docker again
When attempting to install docker on gentoo or funtoo and you used a genkernel or debian kernel aufs will typically fail emerging.
To fix this all we have to do is emerge:
sudo emerge sys-kernel/aufs-sources
and then try to emerge docker again
sudo emerge -av app-emulation/docker
Amazon’s EC2 instances run ubuntu cloud edition which has one user named ubuntu with no password.
This makes logging into webmin impossible as the user has know known password.
To correct this we run:
/usr/share/webmin/changepass.pl /etc/webmin root YOUR_PASSWORD
now you can login to webmin with root and the password you chose
After recently installing FreeBSD and porting Xorg I ran into an issue after running startx
where Xorg would start but the keyboard and mouse would be unresponsive.
In order to fix this, we just have to add the following to /etc/rc.conf
:
hald_enable="YES" dbus_enable="YES"
And reboot the machine