[ Main ] [ Home ] [ Work ] [ Code ] [ Rants ] [ Readings ] [ Links ] |
[2024] [2023] [2022] [2021] [2020] [2019] [2018] [2017] [2016] [2015] December November October September August July June May April March February January [2014] [2013] [2012] [2011] [2010] [2009] [2008] [2007] [2006] [2005] [2004] [2003] |
[Sat Nov 14 19:28:55 CST 2015]I'm not sure why or when this happened but, starting a few months ago, the weather widget in GNOME Shell on my Debian jessie laptop stopped working. Well, the fix can be found in a comment from user iluxa777 on the GNOME Extensions page itself. Simply run the following: After this, you may need to log out and log back in. It worked fine for me. {link to this entry}$ sudo apt-get install gettext pkg-config git libglib2.0-dev zip gnome-common \ autoconf automake intltool gir1.2-gweather-3.0 $ cd ~ & git clone git://github.com/Neroth/gnome-shell-extension-weather.git $ cd ~/gnome-shell-extension-weather $ ./autogen.sh && make local-install [Fri Nov 13 12:51:30 CST 2015]Here's something that has been going on for a while now, but that apparently I didn't notice until a few days ago. My Debian laptop was sending messages to my root account with the following errors: The problem is the default configuration of the exim Mail Transfer Agent (MTA), which includes the loopback address for the IPv6 interface. In order to fix it, you will need to edit the configuration fileDate: Wed, 11 Nov 2015 07:01:56 -0600 From: root /etc/exim4/update-exim4.conf.conf and edit the relevant line to
look like the following:
After doing that, run the following commands:dc_local_interfaces='127.0.0.1 ; ' That fixed it in my case. {link to this entry}# update-exim4.conf # mv /var/log/exim4/paniclog /var/log/exim4/paniclog.old # service exim4 restart [Sun Nov 8 15:01:42 CST 2015]Here's a quick list of useful info. First of all, a list of files and directories that can be excluded from a backup of your home directory. Something that may come in handy the next time you write your own script to rsync to a backup drive, which I recently did. Second, instructions to change your forgotten Windows password from Linux (yeah, I had to use it a couple of weeks ago; since I rarely boot into my Windows partition, sometimes I just cannot remember the password). Third, a Linux workstation security checklist maintained in Github. Fourth, a article from Ars Technica about a new open source font called "Hack" that is supposed to improve readability of the source code. And, finally, an article from 1996 on the fundamentals of software licensing. {link to this entry} |