Linux
cups web interface.
2009/10/29
Today I found an interesting piece of information. I was trying to debug a problem with the cups service and found that cups offers a web administration.brbrThe server is running at port 631. So point …
Vi/VIM and Unix/Linux cheatsheets.
2009/10/26
I found quite a lot of good information today morning. Some really good info on vi/vim. I liked the this one:”Also, you don’t have to use the / command as a separator. Anything …
Adding dates to your photos.
2009/10/12
#!/usr/bin/perl if ($#ARGV < 0 ) { print ”$#ARGV \n”; print ”Usage $ARGV[0] filename/dir\n”; exit -1; } @files = `find ”$ARGV[0]” -iname …
root shell auditing and syslog entry for all commands of shell
2009/10/08
A lot of times there is a need to log all the messages and the output of the shell to the file or syslog. Sometimes I need that for some user too. script command can be used to do this but then …
Boot Linux Over HTTP With boot.kernel.org (BKO)
2009/10/01
<a href="http://blog.amit-agarwal.co.in/category/linux/">Bookmark this category […] This tutorial shows how you can <a …
7-deadly-linux-commands
2009/09/26
You want to learn about Linux, start from learning what not to do. <a href="http://www.junauza.com/2008/11/7-deadly-linux-commands.html" target="_blank">Here is one for the …
Configure sendmail for SMTP relay with your ISP
2009/09/26
http://cri.ch/linux/docs/sk0009.html I have copied the document from the above link without modifications Author: Sven Knispel Updated: 05-01-2005 Feedback welcome: <a …
Script to generate a html file with link to all files in directory
2009/09/26
ls -1 |awk -F”.” '{print ” ”,$2,”.”,$3,” […] And if you want to do it recursively ls -1R |awk -F”.” …
top command with rc to make it more useful and beautiful.
2009/09/17
Just for fun, somedays back I was reading the top command. This command is something that I have been using since long time and have never read the man page so I thought let me do that. And yes, it …
Diff Linux command — Find the difference in files the easier way.
2009/09/17
In Linux you can use diff command to find the differences in file. What is interesting is that you can use ”diff -u” to list the differences with ’+’ and …
Consider your account to be for you then use Linux
2009/08/12
Found <a href="http://www.esecurityplanet.com/features/article.php/51671_3834031_1/Consider-Linux-for-Secure-Online-Banking.htm" target="_blank">this nice article today, may …
bash tutorial for begineer and experienced.
2009/07/20
I having been looking for something like this for sometime. Found <a href="http://beginlinux.com/desktop_training/comm/shells/232-bash" target="_blank">this while searching. …