Dec 192014
 

Like every year it’s time once again to read the sysadvent blog, a great source of interesting article.

This one it’s an article of one year ago, but still really useful and interesting

Written by: Michael Stahnke (@stahnma)
Edited by: Adam Compton (@comptona)

Over the years, I have mentored quite a few System Administrators. Levelling up means learning about your tools and what they’re capable of (and not memorizing command line flags). For this year’s article on SysAdvent, I wanted to share a lot about one my favorite tools: yum. When I say yum, I mean a little more than just the yum cli itself, but the ecosystem of tooling around it. I spend a lot of time doing things like package building, package repository management, and all in all hacking around with rpms and yum.

Yum is a tool that you’ve probably used if you been a system administrator for any period of time. It’s also one of those tools that is very easy to use and have it get out of your way. yum does network-based dependency resolution, meaning that if you want to install a package, it will download and install all dependencies of that package as well. These are the basics people often know. Under the hood it uses rpm. In normal operation, you use yum for searching, installation and uninstallation of packages. That’s actually pretty awesome, but mainly the trivial use-case for yum.

Beyond that, however, there is much more to the way yum works and interacts with repository metadata. Sometimes being able to query that data can solve heinous problems easily, rather than coming up with odd workarounds. That information can also help you make good decisions about package management.

Continue reading »

Flattr this!

Nov 102012
 

In a previous post we’ve seen how to Enable automatic security update in Debian/Ubuntu, I use it on my Debian VPS and I must say that I’ve forgot to be worried about security updates thanks to this, but perhaps you have a Red Hat 6 or Centos 6 and you want to sleep well as well ?

There is no problem, today we’ll see how to achieve the same result on a Centos 6 machine.
Continue reading »

Flattr this!

Oct 272012
 

Sometimes it’s useful to tell to our GNU/Linux system that we want to keep some packages on Hold or that we do not want to update them , for example you could have added a custom kernel and you don’t want that during an update the standard kernel takes its place, or perhaps you want to test some specific version.

These instructions are tested with distributions that use packages in the .deb format (such as Debian, Ubuntu and Mint), .rpm based distributions that use yum (Red Hat Enterprise, Centos, Fedora) and Gentoo.
Continue reading »

Flattr this!

2 Useful plugins for Yum

In these days i’ve worked a lot on Red Hat Enterprise and Centos machines, and so i’ve used yum to install, upgrade, remove and download packages. I’m more used to .deb packages (or the portage system), and so for me these plugins are both new and really useful to extend the basic functions of yum. […]