Category Archives: System

How to extract RPM or DEB packages

RPM and DEB packages are both containers for other files. An RPM is some sort of cpio archive. On the other hand, a DEB file is a pure ar archive. So, it should be possible to unpack their contents using standard archiving tools, regardless of your distribution’s package format. Under normal conditions, you should use…

Continue reading

CloneZilla instead of Partimage

1 Comment

Until now I have been creating partition images with Partimage, which has never failed. Another very popular tool nowadays is CloneZilla. This software, which happens to include partimage among various other utilities, has wider filesystem support and a better set of features – taking/restoring backups across the network is supported. The fact that this is…

Continue reading

Effectively remove a user from the system

This is a very interesting article that describes in detail all the required actions a sysadmin should perform in order to effectively remove a user from a Linux system. This checklist mainly focuses on security, covering all aspects of the removal procedure, from the user’s documents to mail aliases, cronjobs, user’s processes etc. Read the…

Continue reading

How to integrate seaudit-report in logwatch

No Comments

Today, I revised my logwatch configuration and I decided to use an external parser for the SELinux audits. Logwatch includes such a parser (/usr/share/logwatch/scripts/services/audit script), but i tend to prefer seaudit-report, part of the setools-gui package in Fedora. Don’t let the package name confuse you, seaudit-report is a CLI tool.

How to recover lost files

No Comments

Linux com has published an intersting article about recovering data after wiping the hard drive. The author describes a successful attempt to recover his lost photographs and videos by using two GPL tools, TestDisk and PhotoRec. It’s good to know that there are free tools out there that can actually do this job right. I…

Continue reading

Troubleshooting with strace

Another great write-up by Ravi, in which he explains the usage of strace by resolving a common issue with Totem not being able to play encrypted DVDs. Ravi writes in his article: Many times I have come across seemingly hopeless situations where a program when compiled and installed in GNU/Linux just fails to run. In…

Continue reading

Filesystem Backup Again

Some months ago, I had written a guide about using PartImage to take snapshots of linux partitions either locally or remotely. Some readers had recommended some other tools, as you can see in the comments on that page, since the development of PartImage seems to have stopped (it still works ok for me though). Anyway,…

Continue reading