HOW-TO-FILTER-MAILS-FROM-LINUX-MANIPUR This HOW-TO is for the newbies to filter mails from Linux Manipur and to a particular folder, hence avoiding bulk mails...
linux-manipur@yahoogr...
Jul 1, 2006 8:45 am
1281
LINE NUMBERS IN LINUX If you want a file with line numbers (say for printing). You can use the "nl" command in linux. $ nl file.c > file.c.num See man for more...
Sushil kumar
sushil.kumar@...
Jul 3, 2006 4:31 am
1282
Dear Readers, First off, we would like to thank our readers for an overwhelming response to the June 2006 issue of LINUX For You. The monsoon season brings...
GET YOUR IP-ADDRESS Type this simple command at the unix-prompt ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{print $2;}' | awk -F':' '{print...
Sushil kumar
sushil.kumar@...
Jul 4, 2006 3:32 am
1284
Here is another one: ifconfig | grep -m 1 -o "inet addr:[0-9.]*" | cut -d ":" -f 2 Regards, Yaikhom ... $2;}' | awk -F':' '{print $2;}'...
FINDING MORE LARGE FILES To find out the large files on a file system. find / -xdev -size +1024 -exec ls -al {} \; | sort -r -k 5 (courtesy: www.ugu.com) ...
Sushil kumar
sushil.kumar@...
Jul 5, 2006 4:50 am
1286
Here are a couple of requirements in Oracle . ****************** A. Application programming : C/C++/Core java/J2EE /JAVA with PL/SQL, Java with XML, C & Java...
FOLDING LINUX LINES If files have long lines and you want wrap those lines at 80 columns. Then you can use the fold command: $fold my_file See man for more...
Sushil kumar
sushil.kumar@...
Jul 6, 2006 4:58 am
1288
Affordable, Excellent Web Hosting services , Use a multi server setup with 99 % uptime, and are hosted on our state of the art NOC wich utilizes redundant...
KILLING MORE USERS To kill all processes of a particular user from root at unix prompt type: # kill -9 `ps -fu username |awk '{ print $2 }'|grep -v PID` We can...
Sushil kumar
sushil.kumar@...
Jul 7, 2006 3:52 am
1290
WATCHING MAKE When compiling software, don't just type 'make' and let run! You will never be able to catch your errors! Do 'make > Make.Out &' and then do ...
Sushil kumar
sushil.kumar@...
Jul 11, 2006 3:22 am
1291
hi , can anyone pliz tell me what is the job prospect of software implementation. they told me that i have to deal with the clients face to face ,implement the...
OUTPUT A FILE IN REVERSE A Linux Tip, you flavor may very. If you want to output all the lines in a text file backwords use "tac". It does just the opposite of...
Sushil kumar
sushil.kumar@...
Jul 11, 2006 11:02 pm
1293
hey I tried it on miracle linux It does not work it prints in the same order as does cat.. Regards Anjan Takhellambam ________________________________ From:...
takhellambam.anjan@...
Jul 12, 2006 4:15 am
1294
Hey Ringo and Team You guys are doing a great job , It takes the real hard work to initiate stuff , Just keep working and keep boosting the young guys. A lot...
hi anjan .. i think it works : tac Concatenate and write files in reverse, copies each FILE (`-' means standard input), or standard input if none are given, to...
anthony.chirom@...
Jul 12, 2006 5:31 am
1296
another commonly used command ... if you want to report the repeated lines in a file .. try using uniq <filename> anthony.chirom@pol aris.co.in...
anthony.chirom@...
Jul 12, 2006 4:31 pm
1297
OOPS.. RM STAR To prevent accidental removal of files in a directory you can create a file called "-i" this is done from a bourne ... this will be the first...
Sushil kumar
sushil.kumar@...
Jul 13, 2006 3:57 am
1298
Hi, Those interested in programming might want to check out the ICFP Contest for 2006 next weekend (July 21-24, 2006): http://www.icfpcontest.org/ "ICFP"...
Thanks to Swaroop CH for drawing this to our attention! FN ... From: Perl. com Newsletter <elists-admin@...> Date: Jul 15, 2006 6:00 AM Subject: State...
________________________________ From: A.R Karthick [mailto:a.r.karthick@...] Sent: Monday, July 17, 2006 6:21 PM To: Pebam, Ringo IN BLR SISL Subject:...
Pebam, Ringo IN BLR ...
ringo.pebam@...
Jul 17, 2006 1:08 pm
1302
Hi, I am a RHCE certified in RHEL4, I have some queries 1) I want to configure clutering with http server in rhel4 with out using the tools. Please send me the...
Hi, I am a RHCE certified in RHEL4, I have some queries 1) I want to configure clutering with http server in rhel4 with out using the tools. Please send me the...
anthony.chirom@...
Jul 18, 2006 3:59 am
1304
hey guys I am running some kind of a load test for apache based application by sending requests from different machines to the server. Currently I am testing...
takhellambam.anjan@...
Jul 18, 2006 6:45 am
1305
guys anybody having any idea about Keep-Alive ON and Keep-Alive OFF options in httpd.conf of apache Regards Anjan...
takhellambam.anjan@...
Jul 18, 2006 10:02 am
1306
hello anjan according to me Keep alive option is the option for persistent connection of any request when you request any connection to tyhe web server, it...
hello anjan according to me Keep alive option is the option for persistent connection of any request when you request any connection to tyhe web server, it...
LISTING DIRECTORIES ONLY Oldie but a goodie..... A quick way to list just directories in Unix: ls -al | grep "^d" (courtesy: www.ugu.com ) regards, sushil...
Sushil kumar
sushil.kumar@...
Jul 20, 2006 4:14 am
1309
we can achieve a high performance web server by the integration of tux web server (redhat content accelarator) and apache web server. tux web server is an...