Close

Enterprise 6 on your desktop?

RedHat Enterprise Linux is known for it’s security and stability on servers. Later this year, Redhat will release Enterprise Linux 6.0 and CentOS will release their version shortly after. CentOS is built entirely from RedHat’s sources. They are basically the same thing minus the RedHat artwork and support. What do you think about using it on your home desktop?

I came close to using CentOS 5.5 100% at home. The downfall

was multimedia applications such as k9copy and Kdenlive. CentOS/RedHat 5 is based off Fedora 6, which is very old. However, version 6 will be based off Fedora 12 which was just surpassed by Fedora 13. Fedora 12 was a great release in my opinion because it was stable and had recent versions of all the applications that I needed. After trying the RedHat 6.0 beta, I was able to install all of my modern applications and be 100% productive at home and work.

My question to all of you out there is would you use CentOS/RedHat on your home desktop? What are your thoughts? Do the non-bleeding edge packages matter to you? My opinion now is that release 6 may be good on the desktop for a year or so before the age of the packages starts to show. How long do you think you can use enterprise Linux for?   Would you feel that you are missing out on the new desktop Linux features?

New Mephisto Backup v1.10.4 released and looking for devs!

The fourth update to the Mephisto 1.10 series has been released. New features were back-ported from v11 to increase stability because the 1.10 branch is going for stability. This project is also looking for developers for new features and stronger development. If interested, please email phillip.tribble@gmail.com. Documentation engineers are also appreciated.

This program can do simple backups and syncs over a network or locally. Mephisto Backup was made with the Java programming language. The key feature of this program is the ability to backup your system to an image and copy it to a Linux Live DVD for future restoration. The user can then take that cd and move his or her system to any PC.

Location: http://mephistobackup.webhop.org/

Also, test out the v1.11 beta and submit feedback =)

Upgrading Fedora and retaining your existing programs.

I had an idea on how to make the upgrade process easier for my Fedora installation. I had Fedora 12 installed and wanted to upgrade to Fedora 13 with the same programs installed. The same concept can be applied to most distributions.

Instructions:

1. On my Fedora 12 box:
rpm -qa | cut -d – -f 1 > packages.txt

This command will print all the installed packages and remove the version information and architecture.

2. Install Fedora 13.

3. Copy packages.txt from Fedora 12 to Fedora 13.

4. Copy .repo files in /etc/yum.repos.d from Fedora 12 to Fedora 13.

5. yum install -y –skip-broken `cat packages.txt`

6. Done. =)

SSD and system logs.

My backup web server has a 8GB CF card. I want to reduce the number of writes to it as much as possible to save money and keep my server healthy. I added the following to my /etc/rc.local so that the logs files are created in RAM every time the server boots. The only downfall to this is that you will not have any logs if the system crashes to diagnose the problem, oh well =)

How it works:

1. Create the ram disk directory.
2. Mount the ram file system.
3. Erase old logs.
4. Use touch to create an empty log file in the ram disk directory.
5. Link the log file in the ram disk directory to /var/log

[ /etc/rc.local ]
#Creates a tmpfs RAM disk and mount it
mkdir /ramfs;mount -t tmpfs /dev/ram0 /ramfs;mkdir /ramfs/httpd
LOG[0]=messages
LOG[1]=secure
LOG[2]=maillog
LOG[3]=yum.log
LOG[4]=rpmpkgs
LOG[5]=dmesg
LOG[6]=boot.log
LOG[7]=spooler
LOG[8]=scrollkeeper.log
LOG[9]=cron
LOG[10]=Xorg.0.log
LOG[11]=acpid
LOG[12]=btmp
LOG[13]=wtmp

LOG[14]=httpd/access_log

LOG[15]=httpd/error_log

for ((c=0;c<=15;c++))
do
rm -f /var/log/${LOG[c]};touch /ramfs/${LOG[c]};ln -s /ramfs/${LOG[c]} /var/log/${LOG[c]}
done

OpenHatch.org Rocks

http://openhatch.org/ offers members of the community to contribute to open source projects even if your not a programmer.

“OpenHatch was founded in May 2009 by three alumni of the free culture and free software movements. The company was part of startup incubator Shotput Ventures‘ inaugural class.

Our core product is an open source software involvement engine. For developers, we provide tools to demonstrate and broaden their experience and expertise in the open source community. Our vision is to make the open source community better connected, more productive, and ultimately well rewarded for its expertise.” http://openhatch.org/