===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Oct 1, 2006 3:49 pm
7249
All: A gentle reminder that talks registration for FOSS.IN/2006 ends on Sunday, October 8th. If you wish to present a talk/workshop/tutorial at FOSS.IN/2006,...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Oct 8, 2006 7:47 pm
7251
Hi, Can anyone give me a hint or a line of thought on how to switch off a PC monitor in C ? Google is churning out C source for the Win API. But I was looking...
... I am not sure an API exist in posix standard. But here is how you can do it system ("xset dpms force off") you can do as well system ("xset dpms force on")...
Hi We ported a working piece of software (stackable filesystem) from linux 2.6.11 to 2.6.17.13. One of the major changes are to the inode semaphores which have...
The first shortlist of talks for FOSS.IN/2006 has been released. http://foss.in/2006/info/Shortlist_1 Please read the explanations on that page carefully. This...
Dear all, Please help me to increase the processes virtual memory address space. Here are my questions: 1.As i have seen in a linux os for each process only...
Hi, I ma having a logitech quickcam messenger webcam. I have installed the driver "qc-usb-messenger-1.1-1_ker2.6.11_1.1369_FC4.i386.rpm." Everything seem to be...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Oct 22, 2006 8:19 pm
7258
Hi All, I am posting a small program which I ran on Linux machine. The program code is: ============================================== class ofNoUse { private:...
... Note: go nowhere. Unless nRows==1, this loop will never execute. ie, you're not deleting anything. If nRows==1, the loop will execute infinitely. You...
... Wrong logic it seems. you have i=0 (I think you meant 0 == i) Assume nRows = 10 before the loop, then, for ( i = 9, 0 == i, i --) {...} Won't execute,...
Om Narasimhan
om.turyx@...
Oct 25, 2006 12:06 pm
7261
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Nov 2, 2006 1:47 am
7262
I am trying to spawn a shell using the following program.. int main() { __asm__ ("jmp 0x2e\n\t" "popl %esi\n\t" "movl %esi,0x8(%esi)\n\t" "movb...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Nov 5, 2006 9:33 pm
7264
The much awaited Delegate Registration System is now open! People who wish to attend FOSS.IN can now register themselves online and avail the cool 50% discount...
All: This is a reminder that delegate registration for FOSS.IN/2006 is currently ongoing at https://foss.in/2006/cfp/delegates and will remain open another 9...
Folks: It is that time of the year again, a time of great joy and great celebration, the time when we announce the first major sponsors of our "little regional...
After introducing our top sponsors (MCIT, Sun Microsystems and Geodesic Information Systems) yesterday, it is time to introduce our Gold Sponsors: GOLD SPONSOR...
Over the past two days, we have met the Principal, Platinum and Gold Sponsors of FOSS.IN/2006. To re-cap: Ministry of Communication and Information Technology:...
Over the past three days, we have met the Principal, Platinum, Gold and first three Silver Sponsors of FOSS.IN/2006. To re-cap: Ministry of Communication and...
If you wish to be a volunteer at FOSS.IN/2006, then you have to attend the volunteer briefing and orientation meet: November 19th, 5pm HP Shezan Lavelle ...
All: http://foss.in/2006/schedules/ The talk schedule of FOSS.IN/2006. Note that this does not include the BOF schedule, which will be available at the venue...
Hello, I have a machine that is able to send and receive mails to machines (xyz) in the domain (eg abc.my.domain) but not to the mail server of the domain....
Sanjeev
sanjeev@...
Nov 17, 2006 12:27 pm
7273
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Nov 19, 2006 5:29 pm
7274
All: Note that TODAY (the 22nd) is the last day for online registration, and after midnight tonight, registration will open at the venue at 2pm tomorrow, the...
This is a post slightly delayed, but I am glad that I can make it: Also in your delegate kit is an item we are especially proud of - the official FOSS.IN...
Hi friends, i wanted to create a daemon and wants to be assured it is running successfully. so i think of making a script in perl which will see that the...
... Neither. You create a PID file when the daemon is started. kill(pid, 0) will tell you if a process with that PID is still running. Of course, there is a ...