“Our own Geek Queen Blair Mathis is back with 50 ways to increase your Linux knowledge and help you along the way to true geekdom.”
via 50 ways to impress your geeky linux friends – LaptopLogic.com.
“Our own Geek Queen Blair Mathis is back with 50 ways to increase your Linux knowledge and help you along the way to true geekdom.”
via 50 ways to impress your geeky linux friends – LaptopLogic.com.
“Moving Beyond Kubuntu
Over the years I’ve used many Linux distributions… far too many to list here without boring everyone. Needless to say, I cut my teeth on Linux during it’s early 1.2.x kernel days and I haven’t been wanting for choices over these many years.
I started using Kubuntu about two years ago when I wanted to see what the hype was all about and not only was it far easier to get going on my laptop of the time than the Debian installation I had been using, it was easy enough to use that I could recommend for new users.
So I stuck with it and I learned its myriad of quirks and all those little deviations that inevitably occur between releases as a distribution project matures. I didn’t just stick with the KDE variant either, I downloaded and used the gnome desktop. xfce, as well as the studio version and often ran the bleeding edge of everything. However, through all of it, KDE has pretty much remained my default desktop.
It seems that now… for me at least… it’s time to move on.”
More at: Moving Beyond Kubuntu
My Comment:
This is something everyone on the KDE team and everyone who makes KDE based distros needs to hear.
I’ve been struggling through KDE4 from 4.0 to 4.2.2, but when my distro started incorporating Koffice 2 and I read an article claiming 2 years before it becomes reliable again, that was just it. No more KDE, I’ve moved to Gnome and OpenOffice.
"Follow these steps to submit a package into the AUR:
A good article written by Antony Williams on how to and why to switch to Arch Linux
Reference:
http://www.antonywilliams.com/2008/07/linux-guru-then-switch-to-arch-linux.html
Networking 101: Understanding TCP, the Protocol
Networking 101: TCP In More Depth
Sep 24, 2008, 23 :19 UTC ()
(Other stories by Charlie Schluting
TCP, the Protocol
ICMP
Spanning Tree
Layers
Subnets Realized
Subnets and CIDR
IP Addresses
Reference:
http://www.linuxplanet.com/linuxplanet/tutorials/6534/1/
http://www.linuxtoday.com/developer/2008092401420PSHLNT
Many times I have found myself in need of a one line command involving ‘find ./ | xargs’, however every now and then I run into an instance where the files I’m looking at have spaces in them. Anyone who has tried this combination of commands find the result to be quite broken and disappointing.
Here is an example of how to get find and xarg to work in space handling harmony:
find ./ -iname ‘*.mp3′ -print0 | xargs -0 -i{} xmms -e "{}"
In this example I am looking for every file ending with .mp3 (case insensitive) located in the current directory, including all sub directories. The ‘-print0′ added to find will cause find to end each line with a null, as opposed to a new line. You can easily execute find ./ -iname ‘*.mp3′ -print0 and you will find the result is a long run-on list of the files you seek. This output is then piped into xarg, to which we apply the -0 argument, telling it to use null termination as a method of seperating the elements it will execute it’s command against. Then, using the -i{} replace argument, I call xmms -e (enqueue) against the file in quotes (once again protecting against spaces, as xmms would still handle xmms -e Star Trek Fanfare.mp3 as three seperate files).
In reverse order by popularity, here are the articles and tutorials readers found most interesting. IBM – Top 10 Linux articles, top 5 tutorials Includes articles on: The Kernel Bash Boot Faster Awk Linux Slab Alocator Linux Dynamic Libraries 10 Essential Tricks for Admins Inside the Linux Boot Process Reference: http://www.ibm.com/developerworks/linux/library/l-top-10.html http://www.ibm.com/developerworks/linux
Arch Linux: Why It Rocks From osnews.com posted by Eugenia Loli-Queru on Mon 21st Mar 2005 11:22 UTC "Comparison So far Arch does not look very glamorous from my description above, but looking under the hood and at the details, there are strong reasons why it has some advantages over the big Linux players and why it has personally won me over the last few months: (disclaimer: the following comparison is based on my own personal experience with these systems over the course of 7 years of using Linux)" Reference: http://osnews.com/story/10047
"Conclusion Basically, Arch is a do-it-yourself distro. That’s a totally different philosophy than the one used by Ubuntu, or OpenSuse, or Mandriva, or any other distribution that wants to provide an off-the-rack, works-for-everyone experience. There’s nothing wrong with that, but sometimes, despite all the effort, things don’t work for everyone. Most of those times, the solution isn’t very hard, but getting under the hood of those distro’s isn’t always simple. Arch is simple. It’s not easy at first, but it’s simple…and “simple” has the knack of becoming “easy” when you’re used to it. After the install, you end up with a system that has everything you want it to have, but nothing more. That means it’s light-weight, and fast, and unique, and very easy to maintain. After the initial hours of configuration, there’s not much left to be done. Upgrade the system every day. Sit back. Relax. Enjoy. I know I will. San"
Reference: http://celettu.wordpress.com/2008/06/25/arch-linux-200806-overlord/
No Comments