Skip to content

The Geek Worker

Random Computer Issues And Things That Fixed Them For Me

  • About this Website
  • Helpful Links
  1. Home
  2. Linux

Tag: Linux

  • October 27, 2014 · Article

    Disable SSLv3 in Postfix, Dovecot

    Postfix: Disabling certain versions of SSL works like this in Postfix: In your /etc/postfix/main.cf add or modify the following config parameter like so: smtpd_tls_protocols=!SSLv2,!SSLv3 If you are using mandatory TLS you’ll want to set this instead: smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3 These should be fairly self-explanatory, but for further detail read the Postfix configuration parameters documentation. Do not forget […]

  • June 4, 2014 · Article

    scrub: -X argument cannot exist

    I’ve been looking for a utility that will clean disks for me – and I do realize this is no real substitute for shredding them. Anyway, scrub seems to do the job. However, when I tried to run it I got: scrub: -X argument cannot exist This had me stumped because I read it as […]

  • April 9, 2014 · Article

    Could not perform immediate configuration on ‘python-minimal’

    When I tried to update my Debian box, I got the following ominous error: E: Could not perform immediate configuration on ‘python-minimal’.Please see man 5 apt.conf under APT::Immediate-Configure for details. (2) It turns out that the fix is fairly simple. The following worked for me: apt-get install -o APT::Immediate-Configure=false -f apt python-minimal

  • November 19, 2013 · Article

    How to Set Up a TFTP Server

    Analog devices has a great and quite thorough “How To” on Setting Up a TFTP Server.

  • August 20, 2012 · Article

    NFS: “bad superblock”

    If you’re getting a “bad superblock” error message when attempting to mount an NFS volume, make sure that you have portmapper installed and running.

  • March 4, 2012 · Article

    Postfix error – fatal: parameter “smtpd_recipient_restrictions”

    I encountered this error when I added a check_sender_access clause to my smtpd_recipient_restrictions in postfixes “main.cf”: fatal: parameter “smtpd_recipient_restrictions”: specify at least one working instance of: check_relay_domains, reject_unauth_destination, reject, defer or defer_if_permit. I haven’t really checked, but I am guessing this is because smtpd_recipient_restrictions as the last clause isn’t specifically rejecting all mails that aren’t […]

  • September 1, 2011 · Article

    Setting Sender Address in Mutt

    I’m a Pine user. I seriously dislike mutt. It’s terribly uncomfortable to use. But it is maintained, and luckily it’s quite flexible and can be changed in how it acts. I’m trying to get by with mutt… and it’s a slow process, one step at a time. First annoyance, by default it uses my machine […]

  • June 28, 2011 · Article

    Turning off Syntax Highlighting in vim

    Today my screen is a bit dark – or rather, the office is bright, what with all the sun outside. This makes some of the colors of vim’s syntax highlighting hard to read. How do you turn this on or off? After you open a file, and press ESC. With: :syntax off you can turn […]

  • June 14, 2011 · Article

    Enabling SSL in Apache2 on Ubuntu

    I’m using my server for various admin interfaces and so want to SSL encrypt all traffic to the web server. This is easy enough to add to the default vhosts. First, we need an SSL certificate. Create it by running: openssl req -new -x509 -days 3650 -nodes -out /etc/ssl/certs/apacheserver.pem -keyout /etc/ssl/private/apacheserver.pem This generates a self-signed […]

  • June 4, 2011 · Article

    Moving eJabberd

    If you need to migrate ejabberd, you need to be aware that -at least on Debian/Ubuntu- it uses your machine name as the default nodename, or to be more precise, ejabberd@hostname. This can be controlled in /etc/default/ejabberd but unless you already knew about it, it’s a done deal already. So, my naive approach of just […]

Recent Posts

  • Inkscape: “Document Properties” Window Not Showing Up
  • Synology Drive Client does not connect on Apple MacOS
  • “The iTunes Store is temporarily unavailable. Please try again later” when trying to subscribe to Podcast
  • “Access Denied” Errors with TortoiseSVN on Samba
  • Keyboard and Mouse Microstutters with a Dell Latitude Notebook

Recent Comments

  1. Bart on Gigabyte OSD_Sidekick: “Please check if your USB cable is connected”
  2. Jason on Sony Vegas and Sony Movie Studio: No Audio Tracks In mp4 video filefound
  3. DaReclama on OpenVPN: IP packet with unknown IP version seen
  4. vilva on Excel Formula to get Number of Days in a Month
  5. Michael (Micky) Avidan on Excel Formula to get Number of Days in a Month

Archives

  • February 2025
  • December 2023
  • September 2023
  • July 2022
  • June 2022
  • April 2022
  • November 2021
  • March 2021
  • January 2021
  • August 2020
  • July 2020
  • May 2020
  • January 2020
  • May 2019
  • November 2018
  • July 2018
  • January 2018
  • August 2017
  • January 2017
  • September 2016
  • July 2016
  • October 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • June 2014
  • April 2014
  • February 2014
  • December 2013
  • November 2013
  • October 2013
  • September 2013
  • July 2013
  • June 2013
  • April 2013
  • February 2013
  • October 2012
  • August 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • August 2011
  • June 2011
  • July 2007

Categories

  • Article

© 2026 The Geek Worker. Proudly powered by WordPress.