Archive for the ‘Linux’ tag
All your base will belong to you
If you dare to post the true output of this from Linux:
grep ass .*/*cc*.x*
Random again - Cheese!
On Windows, when I got to use my Webcam (Once every 3 years?) I got to fish out its disc from the archives, go through the tedious “Next” button processes and then face warning about the device drivers not being signed and that it could wreck my Windows (’sif it doesn’t auto) and then finally, the best part of Windows Installation processes, RESTART.

Ok, so instead of that I just plugged it in while running Linux and a nice popup saying a camera was detected (DETECTED, not “wanna detect and face the peril”) comes up and asks if I wish to import photos from it. My webcam is one of those Mercury junk (Kobian in some countries). Its a “3 in 1 Pencam”. Can be used as Webcam, a standalone battery sucking camera or video source.
Now to the reason of using it - Cheese. Been hearing about this application for a long time and that it was even included in many of the popular distros running GNOME got my curiosity running high. And when I finally did use it today, it was really worth it! The effects are fabulous, quick and exactly as goofy as one would desire. I loved the Warp effect personally

Of course, using it is just as easy as using any other Linux application. All you got to do is plug in your cam, start Cheese and you have its amazing effects at your disposal without any hassles.
You can easily install Cheese via your Linux flavor’s repositories. I currently use Ubuntu and for that you might just click this to get it done. Happy posing!
P.s. No comments on my photography unless you are talking about my screen-shot taking abilities. ![]()
Tinge theme for gEdit
Announcing a nice-looking dark theme, Tinge color scheme for gEdit (Text Editor for GNOME):
Tinge (v1.0)
Preview (In Python):

Download Instructions:
- Click here to download (Or right click and choose Save As…)
Installation Instructions:
- Its very simple! Simply run your gEdit and go to Edit - Preferences - Font and Colors tab.
- Under the Color Scheme list, click the Add… button and select this downloaded Tinge.xml file from wherever you saved/moved it to.
- You’re done! Enjoy the colors as you develop!
Named it Tinge just for fun and cause it really just a tinge more than the Darkmate. Also inspired by Monokai’s theme here.
Jumping onto the console bandwagon
After I discovered the existence of this very wonderful screen program a few months ago, I’d always been trying to use more and more simple command-line / console based programs rather than those GUI heavyweights which both use up resources and clutter my desktop.
At first I learned vim basics via vimtutor, but I gave up using it as a default text editor and still preferred the gedit warmth. But vim was powerful, no doubt, and definitely more faster than moving your mouse around to activate events and work with dialog boxes. But it just didn’t fit well with me that I launch it each time I need to dump some text or write something up quickly. Only while programming something up did I summon its need. The jump to console applications here was not so good!

Next up, I tried the most popular thing screen is famous for, the IRC client called irssi. This one simply blew me away. After all, in an IRC you do nothing with a mouse, all you do is talk with the keyboard, and run commands too with it. So why the GUI, I wondered, and ditched the good old XChat and its various scripts for a much more simple console interface, the mighty irssi. Running it within a screen session gave me more comfort of not having an icon blinking or simply residing on my tray or various other bars and that I could connect to the session anytime I desired. Takes about ~1 MB for one server (irc.freenode.net) with 4 channels auto connected. Jump to console applications for IRC - Very good!
Next up was the media requirements. While video was out of the question, cause I can _never_ give up Mplayer+GUI whatever comes my way, I looked at Console based audio players to satisfy this urge. I did some research on popular and non popular ones and am currently using Plait, which I think is the perfect thing I’d need. Its revolutionary, and is based on a hinting system. It (plaiter) takes about 600~ KB of my RAM for a list of 10 songs. Directly streams them to the audio device or any even an online stream if desired, at no or very less resource costs! An example follows:
$ plait staind not outside
Now this command above will play all songs in my library which are by Staind but will not play those songs matching the name Outside.
Awesome isn't it?
The shift here, for music, is still quite a bumpy one so far since pausing / stopping is a bit tedious but I have made ways for it by mapping my keyboard’s (a Samsung SDM4500P) multimedia keys to its commands. More about this in some other post over time here.
The last thing I’ve shifted to a console application is the beautiful rTorrent client. This client is an amazing one. Its light as irssi, perhaps even lighter, cause its just taking ~1 MB of my RAM and its got all the features of a good client including PEX and DHT in it. Only issue with it is in its torrent list managemen. Its still under heavy and active development with very clean documentation so that shouldn’t be an issue for too long, and am happy with this anyway. Moreover, rTorrent uniquely is different cause it directly transfers from your file-system to the network stack, and vice versa, so very minimal amount of memory is used! Console based application for torrents - fairly good!
I’ll blog about each of these items and more as I encounter simpler alternatives to my major tasks soon here, detailing on how to install them, set them up and other usage details. Very soon.
A final list of software I’ve talked about in this post:
- screen
- vim
- gedit
- irssi
- plait
- rtorrent
More soon! I’m loving the consoles! ![]()
Shorten the apt-get install!
sudo apt-get install [name]
Thats probably one of the most used commands on your Ubuntu box. Hate writing such long lines for while installing a package as quick as possible? This guide should help you reducing the length of that command to just, well, 1 character!
Like this example:
user@domain:~$ i john
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following NEW packages will be installed:
john
(. . .)
Notice the one-letter i in the above? I created i to stand for apt-get install.
Unix/Linux have something fantastic in them called alias. The command alias is used to create shorter and quicker keywords to another command which could be very long with all its parameters. So lets move on to making a simple alias for apt-get.
Basically our command is:
alias i="sudo apt-get install"
But just giving that would not last anymore once your terminal is closed. To make it permanent we have to do the following in the Terminal:
echo alias i=\"sudo apt-get install\" > ~/.bash_aliases
Now give this command:
gedit ~/.bashrc
A text editor should open with some content in it. Now scroll a bit until you find the following lines: (Should be around 50~ lines from beginning)
#if [ -f ~/.bash_aliases ]; then
#. ~/.bash_aliases
#fi
Now remove those 3 #’s (hash comment symbols) from each of the lines so that they look like this:
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
Save and close the editor. Restart your Terminal and voila, you can now do the i method as shown earlier!
Example:
user@domain:~$ i gnome-bluetooth
[sudo] password for user:
Reading package lists… Done
Building dependency tree
Reading state information… Done
gnome-bluetooth is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
