pondělí 28. února 2011

CPU#0 stuck for 11s! [modprobe:1292]

Error message:
CPU#0 stuck for 11s! [modprobe:1292]
How to resolve a problem:
# vim /boot/grub/menu.lst
from:
/boot/vmlinuz-2.6.32-5-686 root=UUID=.. ro quiet
to:
/boot/vmlinuz-2.6.32-5-686 root=UUID=.. ro

sobota 26. února 2011

Unknown setting: ssl_disable

Error message:
# /etc/init.d/dovecot restart
Restarting IMAP/POP3 mail server: dovecotError: Error in configuration file /etc/dovecot/dovecot.conf line 6: Unknown setting: ssl_disable
Fatal: Invalid configuration in /etc/dovecot/dovecot.conf
failed!
How to resolve a problem:
# vim /etc/dovecot/dovecot.conf
-----
# ssl_disable = yes
ssl = no

pátek 11. února 2011

Failed to exec method /usr/lib/apt/methods/

Error message:
# apt-get update
Failed to exec method /usr/lib/apt/methods/
Failed to exec method /usr/lib/apt/methods/
E: Method has died unexpectedly!
E: Sub-process returned an error code (100)
E: Method /usr/lib/apt/methods/ did not start correctly
E: Method has died unexpectedly!
E: Sub-process returned an error code (100)
E: Method /usr/lib/apt/methods/ did not start correctly
How to resolve a problem (check sources):
# vim /etc/apt/sources.list

(replace) deb ://..
(with) deb http://
or check other sources..

pátek 4. února 2011

Invalid command 'ProxyRequests'

Error message:
# /etc/init.d/apache2 restart
Invalid command 'ProxyRequests', perhaps mis-spelled or defined by a module not included in the server configuration
How to resolve a problem:
# a2enmod proxy
# /etc/init.d/apache2 force-reload

středa 2. února 2011

Checking for package stfl... not found

Error message:
# make
...
Checking for package stfl... not found
How to resolve a problem:
# cd /usr/local/src
# wget http://www.clifford.at/stfl/stfl-0.20.tar.gz
# tar -xzf stfl-0.20.tar.gz
# cd /usr/local/src/stfl-0.20/
# make
# make install

pátek 28. ledna 2011

This client is too old to work with working copy

Error message:
# svn status
svn: This client is too old to work with working copy 'rpc'. You need
to get a newer Subversion client, or to downgrade this working copy.
See http://subversion.tigris.org/faq.html#working-copy-format-change
for details.
How to resolve a problem:
# echo "deb http://www.backports.org/debian lenny-backports main contrib non-free" >> /etc/apt/sources.list
# wget -O - http://backports.org/debian/archive.key | apt-key add -
# apt-get update
# apt-get -t lenny-backports install subversion subversion-tools libapache2-svn

úterý 25. ledna 2011

libbfd-2.20.1-system.20100303.so: cannot open shared object file: No such file or directory

Error message:
ardesia: error while loading shared libraries: libbfd-2.20.1-system.20100303.so: cannot open shared object file: No such file or directory
How to resolve a problem:
$ ls -al /usr/lib/libbfd-2*
-rw-r--r-- 1 root root 884504 2010-09-17 23:36 /usr/lib/libbfd-2.20.51-system.20100908.so

$ sudo ln -s /usr/lib/libbfd-2.20.51-system.20100908.so /usr/lib/libbfd-2.20.1-system.20100303.so