Sunday, May 10, 2009

PCLinuxOS Update Notifier

There's a lot of buzz at the forum with the recent addition of an Update Notifier. First, it is an excellent idea, and second, it is a valuable addition to PCLinuxOS but personally, I won't be using it. Fedora has something similar and so does Ubuntu (as far as I can remember), and they are irritably annoying. The taskbar balloon that states there are a number of updates available gets in the way.


*Thanks to Yoyo for the screenshot

I update my system every once in a while and I would like to be able to continue the way I do it ... the old-school way.

Of course, one doesn't have to install it but if someone unknowing who had set their system up close to perfect updates and wham, bang hose their install, that is going to be one sad thing. And I can just picture this user storming the forum and letting all hell loose. The easiest way to break a perfectly good install is by updating, unless of course one can remedy the loss with a recent reinstall of a remaster.

There are, naturally, the advantages. Take for instance Firefox and its attempt to patch the vulnerabilities that seemed to be more and more these days. Then there are the latest releases of packages ... wow, updating OpenOffice.org - would you have the patience?

What would be interesting to see added on the PCLOS Update Notifier is an IGNORE button. At least that would prevent those nasty indications that there are updates available on the repository. This sort of thing can make one feel lagging behind the latest and greatest apps available.

But if it ain't broke, don't fix it!

Saturday, May 9, 2009

What is good in this world?

It's a hard battle on all fronts, but most of all let's not discuss politics. It's a tough rule but must be followed if we are to maintain peace and order, or what little of it exist. The recent blog post by Clement Lefebvre, main developer of Linux Mint was a big talk in the Linux circle. One such article from ExtremeTech called it The Great Linux Mint Political Train Wreck. All I could say was WOW.

What could something like this do for a popular Linux distro as Mint? Time will definitely tell but some say it is going to be bad for the distro. I don't know. Can something such as this take away the true merits of a fine distro? You bet it could.

But that's not really the big issue, is it? It is what's happening on the other side of the world. It shouldn't really be happening but it is, and no matter how bitter it is to accept, we have to because in my opinion, it is but a small part of the grand design.

On another playing field, it was reported that the Internet will become so saturated in 2012 that access to it will become so slow.

And the truth about The fundamental value of Internet access posted by Dana Blankenhorn on his ZDNet blog interestingly removed the "right" on "fundamental rights".

"People with no Internet connection, by definition, have less economic power in the 21st century than other people. They have less access to training, no way to see over the horizon (which is why TV has become so trivial). Their connections to the world are entirely local, except for those few people they maintain contact with by telephone or mail."

Connected the dots yet?

Wednesday, April 1, 2009

A Split in PCLinuxOS

It had been reported in Distrowatch.com that "numerous developers quitting the project" and a lot of pushing and shoving on the mailing list and forum.

Whatever started the "internal issues" albeit avoidable had happened and we'll all have to get on with it.

I would have nothing short of wishes of luck and successes to the result of this split, Unity Linux and wish that all this back-stabbing and flame would cease and desist.

I will stick with PCLinuxOS for nothing more than Texstar. Although I don't know him personally, and I've never met him face-to-face, I believe that he is a good person. Sure he blew a fuse ONCE but understand that his health is in the balance and he had a shuffle of priorities because of this. Even if PCLinuxOS is not in his top priorities, he knows that it is his legacy. And it will nevertheless be a good legacy because the truth will eventually come out and Texstar did his best to handle the situation - both in the development and community board.

Tuesday, March 24, 2009

Google Earth 5

First, I have to reiterate that installing packages outside the PCLinuxOS repositories isn't supported by the PCLinuxOS Community Forum, and I will not be held responsible if anyone follows my example and breaks their installation. This is merely a record of a simple task that I did to install the latest release of Google Earth.

I downloaded the latest release (as of this posting is Google Earth 5.0) and saved the bin to a folder. When I first installed it, I got several errors that a required library wasn't installed so I went and used Synaptic to install the missing libraries. It still didn't work, and just crashed when I launch it.

I wanted to install GoogleEarth so I settled for an earlier version which is available on the repository, and that naturally worked. I played with it for a week but I just wanted the latest. With the package from the repository installed, all I did was install over that and I got a working GoogleEarth 5.0.


I couldn't be happier.

Sunday, March 15, 2009

Global Moderator

Whew! Whatever did I do to deserve such a burden in life? Seriously, I am pleased that I will be able to give a bit more of my time and effort to the PCLinuxOS community.

Today was my first day at the job and I learned to split and merge and move posts and topics. I didn't have to do any of those things when I was administering PCLinuxOS China. Then again I had a lot of help from the users.

It'll be different this time though. I've even locked a topic today.

One thing I know though, I will have to be more civil, tolerant and smarter. And it will be a very good experience for me doing the tasks of a global moderator. YAY!

Friday, March 13, 2009

last and history

In Linux, we learn different things all the time. Today, I learned the comand "last" and how to append a timestamp into the command "history".

"history" is a common command for shell that lists all the executed commands until given the -c switch. It is very useful repeating commands that had already been executed, and investigating what commands were executed.

"last" shows a listing of last logged in users. The command searches back through the file /var/log/wtmp (or from a file designated by the -f flag) and displays a list of all users logged in (and out) since the file was created. The pseudo user reboot logs in each time the system is rebooted. Thus, the last reboot will show a log of all reboots since the log file was created. Since it would search /var/log/wtmp, a user needs to su or sudo "last".

$ sudo last
...
archie :0 Thu Mar 12 07:16 - 10:30 (03:14)
reboot system boot 2.6.27.13.tex1 Thu Mar 12 07:15 (03:15)
archie :0 Wed Mar 11 17:27 - 04:59 (11:31)
archie :0 Wed Mar 11 10:02 - 17:27 (07:24)
reboot system boot 2.6.27.13.tex1 Wed Mar 11 09:58 (19:00)
archie :0 Wed Mar 11 06:06 - 07:36 (01:29)
reboot system boot 2.6.27.13.tex1 Wed Mar 11 06:04 (01:31)
...
archie :0 Sun Mar 1 11:46 - 13:25 (01:39)
reboot system boot 2.6.27.13.tex1 Sun Mar 1 11:45 (01:40)

wtmp begins Sun Mar 1 09:26:07 2009

$ history
1 man last
2 sudo last
3 history
4 man strftime
5 history


By defalt, "history" does not append a timestamp to the list of executed command but with setting the environment variable HISTTIMEFORMAT, a user would be able to to easily configure "history" to display the date and time. HISTTIMEFORMAT uses the format string of "strftime". Check out "man strftime" to choose your preferred string.

$ export HISTTIMEFORMAT="%F %T "


The setting is equivalent to the year-month-date format in decimal number plus the time in a 24-hour-minute-second notation. Execute the command and you can immediately see the changes

$ history
1 2009-03-13 19:55:24 man last
2 2009-03-13 19:55:44 sudo last
3 2009-03-13 19:55:53 history
4 2009-03-13 19:59:46 man strftime
5 2009-03-13 20:08:21 history


Of course, when you close the shell, the changes are not saved so if you want to make the changes, add the export into your .bash_profile as well as the /root/.bash_profile. If you don't have .bash_profile, you can append the export to .bashrc.

Thursday, March 12, 2009

Distrowatch.com announced PCLinuxOS 2009.1 release

Distrowatch.com finally announced the distribution release of PCLinuxOS.2009.1. The announcement states:

The long-awaited PCLinuxOS 2009 has been released: "The Ripper Gang is pleased to announce the final public ISO image release of PCLinuxOS 2009.1. This release features Linux kernel 2.6.26.8, KDE 3.5.10, OpenOffice.org 3.0, Firefox 3.0.7, Thunderbird 2.0.0.14, KTorrent, Frostwire, Amarok, Flash, Java JRE, Compiz Fusion 3D and much more. We decided to use KDE 3.5.10 as our default desktop as we could not achieve a similar functionality from KDE 4. We will however offer KDE 4 as an alternative desktop environment available from the repository once we stabilize it."


It also added,

Besides the main product, a GNOME edition of PCLinuxOS 2009 containing GNOME 2.24.3, Brasero, GNOME Power Manager, Exaile Music Player and other GTK+ applications is also avalable for download.


The actual announcement can be viewed on the PCLinuxOS.com.

Wednesday, March 11, 2009

PCLinuxOS 2009 Is Released

Although for some reasons, there has been no announcement so far as I know, PCLinuxOS 2009 had been released. The timestamp of the ISO was March 9th, and after downloading it and making certain that the md5sum checks out, I ran it on VirtualBox. I guess it's time for first impressions. The release features the Linux kernel 2.6.26.8, KDE 3.5.10, OpenOffice.org 3.0, Firefox 3.0.7, Thunderbird 2.0.0.14, KTorrent, Frostwire, Amarok, Flash, Java JRE, Compiz-Fusion 3D, and many more.

PCLinuxOS 2009 IS the easiest Linux distribution to use. The installable LiveCD only prompted to choose a keyboard layout and it's the login screen. Everything that a normal computer user would ever need to use is right there packed in its 696.2 Megabytes of the latest and greatest applications from the world of FOSS and GNU/Linux.

Once on the desktop, the all-familiar layout to any long-time PCLinuxOS user is without a question the most sensible arrangement. I was even instantly connected to the Internet without the need to configure the network. Sure, it was running as a guest on VirtualBox but I am betting that the simplicity of PCLinuxOS would be appealing to even a hardcore Windows user and a veteran Linux user.

However, the most obvious question to be asked is, why didn't PCLinuxOS use KDE4. For us insiders and PCLinuxOS community members, we know why and we understand and we won't mind staying with the last release of KDE 3.5. We'll get there eventually but for now, we'll enjoy the stability of KDE 3.5.10.

The following screenshots are proof of how Radically Simple PCLinuxOS 2009 truly is:





























Thanks to Texstar and the Ripper Gang for their love and dedication. We can only be behind you on this. Lead on ...

BIG FLASH! PCLinuxOS 2009.1 replaced PCLinuxOS 2009 as a minor bug fix release.

Is PCLinuxOS 2009 Released?

There has been no official announcement that PCLinuxOS 2009 has been released, and I only saw a post on the PCLinuxOS forum from wamukota that prompted me to look at the download server, and indeed there is a pclinuxos-2009.iso available.

Are the Ripper Gang waiting for all the mirrors to sync before making the release announcement? Or are they going to rename it to Test Release 7? What goes? Whichever, I am already downloading it and will fire it up on VirtualBox, and possibly even install it on my VAIO.

Tuesday, March 10, 2009

My 1010

Today, I found a screenshot on my Temporary folder. It was a screenshot of my profile at PCLinuxOS Forum taken on March 5, 2009. The reason why I took the screenshot was the number of my posts - 1010. It may not be as much as others in the forum but it is a landmark number for me coupled with the fact that I have been with the PCLinuxOS forum for over three years now.

1010 Posts

There had been a lot of changes in the forum. I've witness its growth from a mere 3,000 plus members to over 21,000. I've been using PCLinuxOS from when it was 0.92, and still patiently waiting for the release of 2009. Friends I've never met in real life came and went, and new ones are adding up. It is the best online community that I've ever been a part of.

PCLinuxOS may never be as big as Ubuntu or Mandriva, Fedora, Suse but it is home to me. And home is where one's heart is.

More power to PCLinuxOS.

Monday, March 2, 2009

Getting a change of bootsplash to work

I am still a Linux novice so why should new users complain that it is hard to use? I knew of a command that I forgot was useful in a small project I did and have been receiving feedbacks from the PCLinuxOS community.

The command:
switch-themes

A reason why I probably couldn't remember the command is I am always logon as a user and I have setup sudo. The command is only available to root. And in using the Konsole, I usually just type out the first two then three letters of a command and hit the tab to complete the command. Laziness has its disadvantages.

Anyway, as pointed out by a user. Dhamaka, changing the bootsplash was as easy as:
# switch-themes <options> <themes>

The options are optional and just three little switches. The -c after the command informs you which current theme is used; the -l lists all the available themes; and -u updates the current theme installed.

Incidentally, there were several suggestions in improving the theme package, which I am taking notes of and hope to add on a changelog. I've never really done stuff like this and it is highly educational if not truly technical.

Sunday, March 1, 2009

PCLinuxOS KDE 2009

Okay, that may be a little bit extreme for a title but simply, it is what it is. It might also be seen as a repetition of my last post ... well more or less it is. It is a partial theme package that was not a request but more of my way of sharing with the PCLinuxOS community. It was something I have been working on for the last few days. Finally I was able to post the results on the PCLinuxOS forum.

Check out the rest of my commentary at this post.

Friday, February 27, 2009

PCLinuxOS KDE

During my more recent idleness, I had two thoughts: Simplicity and Original. In putting these thoughts together as an idea, PCLinuxOS often comes to mind. Ruel24's 2009 logo is inspirational; and I've always like Linuzoid's gears. Then it hit me ... PCLinuxOS is KDE and what better gears could there be than the KDE Gears themselves.

I went and worked on Inkscape and GIMP and below is the result.

PCLinuxOS 2009 KDE Logo

I desaturated the logo colors in GIMP and place it on the center of my Brushed Metal wallpaper, voila ... it is my resident desktop wallpaper for a while.

Brushed Metal KDE desktop wallpaper

Thursday, February 26, 2009

Why are so many windows stiff?

It was said that windows are one's eyes to the world. And for so many years in my computing growth, I was convinced that there was only one way to look at the world. When I discovered Linux, I never thought that I would have a completely different perspective of The Road Ahead. But it was not until 2004 that I started to get serious about Linux. And when I first installed PCLinuxOS, I knew for certain what I wanted.

Looking around my peers and their Windows XPs and Vistas, I cannot help but wonder what sort of user experiences they were getting? If I didn't know better, I would have thought that they were trapped at a time when innovation had failed them. Sure, some of them take the extra steps to catch up with time but their ways and additions seemed superficial.

My first view of an average user's desktop experience was in|situ|'s Metisse and Sun/Java.Net's 3D Looking Glass. But these innovation didn't seem to materialize or at least reached the average desktop users, and I waited months, maybe even a year or two to experience something similar. Then came Beryl and it was exciting. But that too was short-lived. In its place grew Compiz, then Compiz-Fusion. And the latter made my desktop experience the envy of the neighborhood. In fact, everyone in my campus who'd seen my desktop wanted their notebooks to look like mine.

The wobbly windows, rotating cubes with a click of a mouse button; water and ripple effects across an open windows; moving the mouse cursor to the upper left-hand corner to expose an 8-desktop expo; and over at the right-hand corner to scale the windows making them all visible on the desktop; fire and snow, inverting window and desktop colors, desktop zoom, windows switcher (Vista, eat your heart out!), motion blur, grouping and tabbing windows, a wide range of effects for open, closing, minimizing and maximizing windows, just to name a few make for this user's desktop experience

All these are now. On February 4, 2009, Kristian Lyngstol announced on the Compiz mailing list the possibility of Compiz++ and Nomad merging after the release of 0.9.2. It also mentioned on the announcement that Compiz and Compiz-Fusion will be merge into a single entity and simply be named Compiz. In addition, Compiz is moving away from Freedesktop entirely. All these should be done with around August/September, 2009.

The technology may seem just another eye candy to some users, but I can assure you that aside from making your OS extremely ... let me highlight that word again - EXTREMELY ... beautiful and functional, and for one thing it makes organizing ones desktop much easier. Of course, like learning to use a new application, it takes getting used to before it could even be totally appreciated.

So back to the question, why are so many windows stiff? Are you content with it? Take a look at a few of my screenshots and maybe these will help you change your minds.

Cover windows switcher

Rotating cube with 3D Windows

Expo

Scale Plugin

Freely Transformable Windows

Whichever way it is for you, Linux ... it is your freedom of choice.

Monday, February 23, 2009

ms_meme and the PCLinuxOS


ms_meme is an active Hero Member of the PCLinuxOS Forum. She is a young 68-year-old from Texas, USA, and the first time I met her on the forum was when she was asking for help on a matter that she had long-time resolved. My apologies because I cannot really remember what it was now.

She has the eagerness of a curious child; her gentle words reminds me so much of my mother; and she has a profound acumen in learning technical stuff. Recently, I was teasing her about learning Vi just because I am in the process of learning it as well. I have O'Reilly's 7th Edition of Learning the vi and Vim Editors, and am a third through. Lately, it's hard for me to find some time to just sit down and read.

Anyway, ms_meme likes to sing, and "the songs she sings are just her way of saying thank you". I find her melodious voice appealing. It is hard for me to find a favorite rom her huge collection; they are all beautiful and angelic. She even has a PCLinuxOS-specific song page that'll thrill any PCLinuxOS user with her verses and melody.

What is the whole point of this introduction? Nothing, except somewhere in this troubled world we live in, there are people like ms_meme, who deserve much of our beautiful planet and digital world. Real people who can make these two existence a better place to be in. So, thank you, ms_meme.

Sunday, February 22, 2009

gtk-recordMyDesktop et al

Earlier tonight, I thought of playing around with gtk-recordMyDesktop, without any audio,and the resulting OGV needed to be converted. FFMPEG to the rescue.

Once I had a suitable video file, it was time to embed an audio track. I decided to use Apollo 440 over Bonobo. The video was a bit long so I needed to stitch together a couple of tracks. I used Audacity and I was done in a matter of minutes. I split the stereo tracks and decided to go for mono.

KDEnlive was all that was needed to put together the audio and video. But somehow along the line, the file was truncated and I couldn't view the last bits. Oh well, gotta keep practicing.

Anyway, the outcome can be viewed at YouTube.

PCe17OS, The Second (English)

I've always like the first release of PCe17OS although at first, I had a slight problem with changing to my user login. It was beautiful and it was beautiful. However, I can't truly say the same for the second even though much of the bells and whistles were still intact. I am not saying it is PCe17OS rather the Enlightenment 17 project seemed to be going nowhere, and I really like that DE along with the PCLinuxOS-based E17 project.

The first release of PCe17OS

Sandor Lisovszki of PCLinuxOS Hungary recently announced the second offering of the second PCe17OS in English so I went and downloaded the 1.3Gb ISO. The announcement can be viewed at the PCe17OS International Support Forum.There were posts on the forum regarding issues with Entrance so that's noted. I tested this flavor of PCLinuxOS with VirtualBox 2.1.4 so basically it should work on an average machine.

First off was setting PCe17OS up on VirtualBox, which was easy enough even for a novice like myself. I allotted it 512Mb RAM and a full 128 Video Memory. I designated 5Gb as its Virtual Hard Disk with the intent of installing it, enabled the sound and USB. I should also note that I changed the Network Adapter to Intel PRO/1000 MT Desktop (8254OEM). On starting the Virtual Machine with the LiveISO,, the familiar GRUB offered a selection of boots and diagnostics. Putting myself in the shoes of a new user, I let it go with it's default selection - the LiveCD.

The GRUB default selection

Unlike its KDE and GNOME sisters, PCe17OS didn't have a bootsplash. But that's not a bad thing. The user would be able to view the boot up progress and mentally note much of the OKs and Failed. In this case, There weren't any of the latter.

The Boot Up progress

Once again as Lisovszki had mentioned, this particular release didn't have entrance so one had to login via tty (root/root for username/password) and start the session by typing startx.

Terminal Login

Once done, an e17 splash screen was briefly displayed.

E17 Splash Screen

And the gorgeous PCe17OS desktop complete with useful weather, time and network traffic modules. I am a user who likes dark colors so its appeal to me was instantaneous. I would also like to mention the desktop wallpaper which was indeed PCe17OS specific, and I'd like to give a thumbs up to its designer.

PCe17OS Desktop

Clicking anywhere on the desktop pops up the menu for e17 and there were quite enough applications bundled on the release to make it useful to any average user on a daily basis.

PCe17OS Menu

As this test was on VirtualBox and the host machine was already connected to the Internet, Firefox was ready to use. Otherwise, setting up a network connection should be child's play with PCC.

Firefox Web Browser

The heavy-duty GIMP was also installed, and should make wallpaper hobbyist like myself happy and content.

GIMP

One thing though, As a long-time KDE user, it is the first time I've heard of Exaile, a music manager and player for GTK+ written in Python, and it looked promising. Note: Exaile is available as a package from Synaptic, and perhaps I'll install and try it later.

Exaile Audio Player

And as with every PCLinuxOS-based release, the ever-present Draklive-Install Enhanced is easily found on the top group of icons.

Draklive-Install Enhanced

I did notice that when I typed in an address in Firefox, the "y" becomes a "z" so it'd be advisable to change the keyboard layout to a US keyboard and 104-key PC unless the user has other preferences.

Keyboard Layout

Another visible feature is the quick access of System Profiler and Benchmark (System Information).

System Information

I thought I'd install PCe17OS later so I clicked on the desktop and System > Shutdown.

Shutdown

However, on the shutdown process, I noticed a couple of errors that would prompt me to go to the forum and post these findings, if they were not already reported. The last thing was when prompted to press Enter upon removing the LiveISO, the virtual machine wouldn't fully shutdown therefore I have to manually close it from the VirtualBox menu.

In conclusion, this project is worthwhile pursuing and any help extended to Lisovszki is truly appreciated. He is asking for help in packaging RPMs and artwork so if you are a PCLinuxOS user and have the skills and can help out in the project, you are most welcome by sending Sandor Lisovszki and email or joining the forum.

Saturday, February 21, 2009

Five-O for PCLinuxOS

I have a group of friends who visited me in campus, and Marvin S. Tan brought his elegant ASUS laptop with him. Whatever for? To install PCLinuxOS, of course. Why would he do that? Well, the previous weeks when we were having a group study, he saw that I was using another operating system on my laptop and was viciously impressed with it. Marvin is not particularly computer-savvy and he was just willing to get a new computer user experience.

It was my chance to tell them about Linux, and how it is superior to the other OS. After several rhetoric questions about viruses and software interoperability ... and a much-needed demonstration, I convinced him that he would be better off with Linux.

Today, while I was installing PCLinuxOS 2008 Minime, the questions continued to flow, and I did my best to answer them in such a form that they were easily understood. As he watched me me launch the LiveCD, his first impression was, wow... that was quick. I corrected him stating that it was he saw were pulled from the CD. The funny thing was his assurance that to his knowledge he had to install Windows before even getting something similar. One point for Linux.

When I was convinced that his hardware are all detected, I told him that I would set up a dual-boot system and he can choose which one to run. He asked what that meant and after a brief explanation, he said that he'd like Linux to be the default selection, and that he'll run Windows only when he had to. I told him that it is a wise choice and that he will be able to learn and do things at the same time when he uses Linux.

So I made the necessary preparations, moving files off one of the four Windows partitions, deleting the near empty partition from Windows and relaunching the LiveCD. I asked him again if he wanted to proceed, and trusting me like a brother, he nodded and I assisted him on his first Linux step - a Linux installation.

It was 11:00 AM and he got it done in ten minutes time. His comment, that was so easy to do. Two points.

After rebooting to PCLinuxOS, I mentioned to them about the upcoming 2009 release. And one of the guys was dumbfounded, querying if there'll be something better? I didn't answer but instead asked Marvin what he was using his laptop for, and explained to him that I wanted to install the programs he needed to get the most from his machine. Well, it was pretty much basic so within the hour (I have a local PCLinuxOS repository), I got much of what he needed; his system updated and loaded. Marvin was a bit baffled how he got GIMP, the latest Firefox, OpenOffice.org, digiKam, amarok, and a host of other goodies. Three points.

There was a look in Marvin's face that I was able to easily translate, how was he going to use these? For the next three hours we spent a hands-on exercise. He was much pleased with Compiz-Fusion (four points) that I had to snap him out of his rotating cube and explain how he could access his Windows files and open and save them. He still couldn't believe he was running Linux and accessing his files. He had his digital camera that automatically mounted and opened digiKam. He got right on his Facebook logon with so much as a bat in the eye. He was able to add his Yahoo account on Kopete. I helped him dress up Compiz-Fusion that he was just eager to show it off to our other friends back at his place. His other friends hinted they were bringing their laptops next week. Five points for Linux.

Wednesday, February 18, 2009

Simply Nostalgic

I was on Inkscape and GIMPing, and really had no clue to where I was going nor what I was doing when I remembered the old days when waves were the preferred desktop wallpapers and blue was the color so I thought it’d be nice to make one myself because I never did one. The result:



I hope to have more of this similar wallpapers and share them with other PCLinuxOS 2009 users.

Tuesday, February 17, 2009

Contending Desktop Environments: The Big Two

There is without a doubt that in terms of users base, KDE and GNOME are the two main desktop environments on the Linux platform. Hot debates arose such from statements made by the kernel creator, Linux Torvalds on December 13, 2005 and a recent ComputerWorld Australia interview. Other good reading materials I found are an untitled essay from Derek Glidden, circa 2002 and KDE vs. GNOME: Is One Better? from Bruce Byfield on April 16, 2007.

Linux distributions often prefer to use a particular DE on their official releases with user options to install another DE. Often, the switch can be seamless but there are times when they're not. And right off a main distribution can come forks offering alternative DEs. Take for example Ubuntu, which is a GNOME-centric distro. Forks such as Kubuntu, Xubuntu, etc are tailored to even make Ubuntu appealing to a wide range of Linux users. Is this a bad thing? Personally, I don't think so.

Similarly, PCLinuxOS is KDE-centered, although one may argue that it uses several GNOME apps under its hood. The PCLinuxOS community hence pushed for several DE projects, PCLinuxOS-GNOME, PCe17OS, TinyMe, among others. In the end, it is the users that ultimately decide which they want to use.

I may not be in the position to be writing about this but I only want to reiterate that I use KDE. I've tried different DE flavors, and they are all very attractive, even the minimal FluxBox and XFCE. So, why do I prefer KDE?

Let me start by enumerating what I don't like about KDE. It is a resource hog. One must have a fairly adequate machine to run it. That's it. I prefer KDE because I simply because I like it more. I am used to using it, I know my way around it, I am familiar with the native KDE applications, and it pleases me more to use it than the others. For other users, these may be as lame as an excuse could be but that is just me. I like the beauty it represents. I enjoy the multitude of contribs, from desktop wallpapers to the downloadable file utilities others users share on the Internet. I like that I am able to do things with it, like for example coding a system monitor widget for SuperKaramba. I like that I learn stuff from it. I don't find it difficult to use, I don't get any problems from it. I take great pride when friends see my desktop and compliment me for having the "latest Windows OS". I take pleasure in using it to advocate the use of Linux.

But for me, whatever DE a Linux user might prefer is not important. The acknowledgment that we know better and collaborate on this wisdom is what's important. We must put our efforts together so whatever KDE users might use could also be used by GNOME uses, vis-a-vis. In the meantime, we just ought to put our differences altogether and enlighten our Windows-user brothers of the road we've taken. Peace.

Monday, February 16, 2009

Desktop Wallpapers

I wouldn't call myself an artist or even someone closely resembling one. I just like to fiddle around with applications in the mere hope of maybe coming up with something that I could like. In this case, I was playing around with Inkscape and GIMP.

I was able to put together some stuff that I think were fairly acceptable, though I might consider them average. And as part of my contribution to the popularity of PCLinuxOS, I thought I'd share them with other PCLinuxOS users and they can be the judge of these wallpapers.


Contributions from users (either financially, technical or even artistic) are one of the strong foundations of PCLinuxOS. Although, there are already official teams doing various types of works, a community member can often times, make their contributions in their own small ways.

Sunday, February 15, 2009

The Road to PCLinuxOS 2009

PCLinuxOS 2009 slow on the taking but it is definitely worth the wait. The sixth test release was closed by Sal, one of the forum's administrator and member of the Ripper Gang on February 12, 2009. There are several assumptions that the Final release will be soon. After all, countless PCLinuxOS users have been anxiously waiting for over a year. However, I have always believed in the Ripper Gang's philosophy of "it's ready when it's ready".

Let me explain the above a bit more. Very rarely, a project may be ahead of schedule but more often these can fall behind a set deadline. The case of setting and meeting deadlines can not always be advantageous. I do not want to install a half-baked OS just for the sake of releasing it on time.

This had happened in the Windows side of the fence and even in the Linux community. The Ripper Gang's philosophy makes more sense to me, and is one of the reasons why I stick to this finely crafted Linux distribution.

But whenever PCLinuxOS 2009 is finally released. It will surely make waves, even if it is just within the PCLinuxOS community.

A brief breakdown of the previous releases are as follow:

PCLinuxOS 2008 Minime announced its release on January 08, 2008. I have been using this particular release and had upgraded it to the most current package versions in the PCLinuxOS repositories.

PCLinuxOS 2007 announced its release on May 20, 2007. If I can remember correctly, this was the particular release that placed PCLinuxOS on the number two spot in 2007 at DistroWatch.com.

On August 22, 2006, PCLinuxOS 0.93a aka Big Daddy or Full Monty (although the latter didn't seem to caught up) was released. The official announcement can no longer be found but an excellent review by Susan Linton can be read at Tuxmachines.org.. Two weeks prior to the release of Big Daddy, Junior was release on August 9, 2006. Clement Lefebvre wrote a comprehensive review of Junior at LinuxForums.org. Minime was announced on August 4, 2006 with an affirmative review again from Tuxmachines.org.

PCLinuxOS 0.92 was the release that replaced my Windows XP, and it was this version that persuaded me to commit myself to PCLinuxOS. It was released on November 22, 2005. Atanu Datta wrote a positive feature review of the release on Linux.com.

There were earlier releases of this mighty fine Linux distro, and though I was not with it from the very beginning, I sure am glad that I am with it now. I thought I might dig deeper into its roots but that would have to be for another post.

Test running PCLinuxOS on a Windows XP VirtualBox

It takes time and getting accustomed to doing things to be good at something. Even veteran Windows users are good at what they do. I know because I've been there.

It is pretty much the same with using Linux; there are a lot to be learned. I've had my good share of frustrations and successes. And I am still on the upward of that learning curve.

These days, OS developers tend to make things easier for the new users. It is a competition on the installer and the desktop experience. There are countless HowTos spread all over the Internet, and I don't mean to add anymore to much of the "garbage" out here. I'm sure that there are others that is the same in topic and process, however I wrote Installing PCLinuxOS 2008 Minime on a Windows XP VirtualBox (PDF), and I wanted to share it with open-minded Windows users, and perhaps they might be able to see where I am coming from.

1, 2 ... Start Advocating

When a lot of people see a computer, they'd quickly assume Windows inside. Fair enough. It's only a tool to help us in our productivity and communication; it's even just an entertainment box.

I started with Linux in the mid-1990s but it was still hard to use then, so I continued with Windows until 5 years ago to the month. I can remember, those were Fedora 3 and Ubuntu 4.x back then. The real change happened with my utter dissatisfaction with the nagging updates, viruses/worms and vulnerabilities plaguing Windows but there were so many Linux distributions to choose from.

Oh, I had it the hard way. I tried a dozen distros from the easy Puppy to the head-scratching Gentoo. After several months of searching, reformatting (I didn't know better then), and installing, I landed on PCLinuxOS. Well, I didn't want to commit a hundred percent so I dual-booted with Windows XP.

A year after that I completely wiped out Windows from my computers and haven't looked back since. Up until now, I am Windows-free and enjoying all the freedom Linux has brought me.

This blog is about Linux advocacy, particularly PCLinuxOS. It is my personal hope that in this small way, I may be able to contribute to the awareness that in our world, there is an alternative operating system. There is something better than Windows. It is Linux.