clean up frozen mails in exim queue
for mail in $(sudo mailq | grep frozen | cut -c 11-26) ; do sudo exim4 -Mrm $mail done extend or adjust the grep-pattern as required by your situation…
my 2 cents
for mail in $(sudo mailq | grep frozen | cut -c 11-26) ; do sudo exim4 -Mrm $mail done extend or adjust the grep-pattern as required by your situation…
by far the best article I’ve read for somebody used to subversion (and tied to an SVN-repo) who wants to use git locally: Git-SVN: Whys And Hows thanks!!
Ever got messages like this in your Apache logfiles, wondering why setting properties via a client on your (otherwise working) WebDAV is failing? Could not open the property database. [500, #205] (2)No such file or directory: Could not open property … Read More »
you really should have a look here: bryan murdock’s blog Easy Window Dragging andLinux http://www.winsplit-revolution.com/ http://sourceforge.net/projects/console/ http://virtuawin.sourceforge.net/ http://sourceforge.net/projects/xming/
finally, CalDAV evolves to a pretty common standard. sun microsystems is about to contribute a client for symbian: blog.symbian.org.
migrating the blog to the new server is finished and thanks to the professional service from prosite, even switching the domain was done in five minutes!
In the progress of migrating to a different server, I decided to upgrade my textpattern-installation. So I used the current release 4.2.0, basic installation was quite…
since (at least on debian/ubuntu default installation) the homedir for user “nagios” points to /var/run/nagios the known_hosts file is lost after a reboot and check_by_ssh refuses to connect to any configured ssh-machine… make sure to connect to all ssh-targets as … Read More »
list packages owning a file: rpm -qf /bin/vi dpkg -S /bin/vi
lost in a rpm-based distribution? list files containing “bin” in their path of an installed package: rpm -ql postfix | grep bin dpkg -L postfix | grep bin