unix

Mastering the Linux command line

Mac OSX users, Linux desktop users, and anyone who works in server-side web development on any Unix-like system can benefit from a knowledge of the command line tools that these systems share. While graphical user interfaces are designed to make things easy for you, they often leave out some of the power and speed that you can get by going straight to the terminal window.

Network Problems with KDE

Every so often, for no apparent reason, KDE kills the network manager. After rebooting or switching users, suddenly the network manager icon says that the network is "unmanaged" and if you try to right click, it tells you that network manager is disabled. I have read that this same thing can happen if you have a failed sleep or hibernation mode.

Oh How I Hate Command Line Tar

It's cuz I'm dyslexic and I always get things backwards. Which comes first? The file I'm trying to create or the one I'm trying to tar up? Here's the answer for future reference.


tar -cf [the file you want to create] [the file(s)/directory(ies) you want to tar]


The "c" stands for "create". The "f" stands for "file" (the default is to pipe the tarred stuff to stdin). You can also turn it into a gzip file in the same go with the letter "z" or into a b-zip file with the letter "j".
Subscribe to unix