CentOS: lsb_release: command not found

First let me declare that I’m new to CentOS. The folowing is a note to self which demonstrates how we search for a package that provides some commands and intall it using yum on CentOS. When I ran ‘lsb_release -a’, the following message is returned: To fix it, we need to install the package which provides lsb_release command. So, let’s install redhat-lsb package: Wow, it needs to download 86M just to install that package?...

October 21, 2012 · 1 min · 82 words · kenno

Fix missing icons and ugly theme in Evolution on Kubuntu 11.10

This how Evolution looks like on Kubuntu 11.10 (Oneiric). To fix this, make sure this package is installed: “humanity-icon-theme”, then create $HOME/.config/gtk-3.0/settings.ini. [Settings] gtk-fallback-icon-theme = Humanity Restart Evolution, and it should be fixed. Credit: [solution] Evolution in Kubuntu 11.10

September 18, 2012 · 1 min · 39 words · kenno

Unknown Authn provider: ldap

Unknown Authn provider: ldap a2enmod authnz_ldap<br /> apache2ctl restart

September 12, 2012 · 1 min · 9 words · kenno

Fix: Xfce 4.10 panel no longer expands

After upgrading to Xfce 4.10 from 4.8, I noticed that the clock/notification area no longer pushed to the right edge of the panel. This is due to a change in the Window Buttons panel plugin which no longer expands to fill the available space[1]. To emulate the old behavior, add a transparent separator between the window buttons and the clock/notification area, setting its expand property. Voilla! [1] https://wiki.archlinux.org/index.php/Xfce

August 24, 2012 · 1 min · 68 words · kenno

FreeNX: Disable Persistent Session

It’s a bit unintuitive to set non-persistent session on FreeNX server. After a few attempts, here is the working settings: Edit /usr/NX/etc/node.cfg: ENABLE_PERSISTENT_SESSION=""<br /> DISABLE_PERSISTENT_SESSION="all"

August 22, 2012 · 1 min · 25 words · kenno

KDE Desktop Shell Scripting Console

I keep forgetting how to run Desktop Shell Scripting Console. So here it is, something just to remind myself: Alt + F2 Type desktop console and hit the enter key Wanna learn more what this tool’s for? Head to KDE System Administration/PlasmaDesktopScripting.

August 16, 2012 · 1 min · 42 words · kenno

FreeBSD: How to check version of installed packages

# pkg_version -v Running pkg_version -v could take a while. If we only want a quick look: # pkg_info -xI If we want to see if some packages are out of date: # pkg_version -v -X -s And to check all out of date packages: # pkg_version -vL "="

August 1, 2012 · 1 min · 49 words · kenno

Installing FreeBSD 9 source

Well, I need FreebSD 9 source to compile fusefs-kmod, which is required by gvfs, which’s in turn required by xfce. A lot of people recommend to use sysinstall to add the so called userland sources. sysinstall -> Configure -> Distribution -> src However, it didn’t work!! Thanks to wblock@[1] who pointed out that “sysinstall is mostly dead” and suggested a few ways to get the sources to your system. One of them is:...

July 29, 2012 · 1 min · 104 words · kenno

Change cursor theme in Xfce on Freebsd

Install the preferred cursor theme. I personally like dmz-cursor-theme. # pkg_add -r cursor-dmz-theme Then, Applications Menu -> Settings -> Mouse. Click on Theme tab, select the preferred theme and click Close. Log out of the current Xfce session, then log back in.

July 26, 2012 · 1 min · 42 words · kenno

KDE4 System-wide Force Font DPI Setting

Recently, while setting up a Kubuntu Linux terminal server using freenx, I’ve got an issue with the font display being too small. A quick check in Font settings (Applications -> Settings -> System Settings -> Fonts) showed that the “Force fonts DPI” was set to Disabled. To correct this per user, it’s as easy as to select the 96 DPI from the drop down menu, logout and log back in. However, if we want to apply this setting to all users, there’s a bit of more work....

July 22, 2012 · 1 min · 120 words · kenno