linuxsysconfig

Configure your Linux system

Fedora 13 update issues

Fedora Project announced two “unexpected bugs” that affect Fedora 13. It looks like some users can no longer see the package update notification in the main panel or apply the updates using the update applet.

Updated packages to fix these bugs were released 2 weeks ago, but the users were not prompted to install them, since the update applet was broken. Users who perform manual updates using yum are not affected.

To fix your system, you need to run yum as root:

  • to update all packages:
    yum –skip-broken update
  • to install updated versions to fix the two issues:
    yum –skip-broken update gnome-packagekit selinux-policy

After the installation a reboot is required / recommended depending on the option you choose.

More details on Fedora Project mailing list.

New recovery OS updates

Yesterday, August 3rd, two Linux recovery operating systems received minor updates: my favorite, RIPLinuX (10.7) and another OS which I wrote about a while ago, Parted Magic (5.2).

The changelog files show these new releases include bug fixes, minor enhancements and updated versions for the main packages (e.g. partitioning tools).

Changelog for RIP LinuX:

http://www.tux.org/pub/people/kent-robotti/looplinux/rip/Changelog

Changelog for Parted Magic:

http://partedmagic.com/change-log/158-parted-magic-52.html

I’ve always been amazed by these lightweight Linux distributions (~100MB) which you can use for almost anything. Not only do they provide tools to help you troubleshoot your system, but they can also be used as regular OS’s for browsing the Internet, chatting with friends or even listening to music.

So although I generally agree with the saying, I can admit – in this case – that size doesn’t always matter.

What’s the fuss about the new Ubuntu font?

Cannonical Design announced new fonts that will available in Ubuntu 10.10 Maverick Merrkat. Then, they said the fonts will be made public on August 8th. Meanwhile, the Kubuntu-users mailing list gives notice that members of the ~kubuntu-users team on launchpad can now test the Ubuntu font which is currently in beta.

Ubuntu users go crazy. They create Launchpad accounts just to get access to this new font before August 8th.

Why?

Beats me. Yes, it is a nice font, I can admit that, but it’s just a font, isn’t it?

You can find more details here.

alias

alias is a built-in Linux command that defines shortcuts to longer (sets of) commands. The alias name is in fact a link to another command or command sequence. The Bash shell system wide aliases are set in /etc/bashrc, while users can define their own in ~/.bashrc.

$ cat ~/.bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi</p>
# User specific aliases and functions
alias update="sudo yum update"

The above update alias will execute ‘sudo yum update’ each time it is run from a terminal. In a similar manner, more complex aliases can be defined.

alias my_script=‘if [ $HOSTNAME="localhost.localdomain" ]; then echo "hostname is not defined"; else echo "hostname is defined"; fi’

[Read the rest of this entry...]