Sponsored Content
Full Discussion: system call
Top Forums Shell Programming and Scripting system call Post 302557250 by rajan007 on Tuesday 20th of September 2011 05:13:05 PM
Old 09-20-2011
Thanks. Issue suddenly started happening after we moved to a new mysql server. So it must not be client issue.

-Raj
 

10 More Discussions You Might Find Interesting

1. Programming

semclt system call ???

hi mates, What is the : semctl system call for? any example will be helpful and be appreciated. cya and thanx abdul (2 Replies)
Discussion started by: abdul
2 Replies

2. Programming

Problem in system call

Dear Friends, I write a c program to list the directories recursively. For this I write a function called my_readdir to read the content of directory. For this I use read system call it returns -1, then I use readdir system call it gives comment terminated error or segmentation... (1 Reply)
Discussion started by: spmlingam
1 Replies

3. UNIX for Advanced & Expert Users

how to differentiate system call from library call

Hi, Ho do I differentiate system call from library call? for example if I am using chmod , how do I find out if it is a system call or library call? Thanks Muru (2 Replies)
Discussion started by: muru
2 Replies

4. Programming

c system call

How the c compiler differentiates the system calls and function calls? (1 Reply)
Discussion started by: rangaswamy
1 Replies

5. Shell Programming and Scripting

system call

Hi, How to write a system calls in a script ? > cd $HOME > ls -ltr thanks in advance.. (10 Replies)
Discussion started by: hegdeshashi
10 Replies

6. Programming

C:system call

Hi I'm studing the system call. I've written a small program that return the time spent in doing some operations. Now I'd like to write one that return the time spent in user mode of a process. I'm reading that i should use the tms struct: clock_t times(struct tms *buf); struct tms {... (2 Replies)
Discussion started by: Dedalus
2 Replies

7. Programming

system call

I have a cgi script which is called after certain time interval, which has this: system ("ls -l /tmp/cgic* | grep -v \"cgicsave.env\" | awk '{print $5}'"); During the execution of this script,the output is 0 sometimes. But due to this the system call is not working at all and doesnt o/p... (2 Replies)
Discussion started by: xs2punit
2 Replies

8. Programming

need help with system call

hi everyone i wrote a system call and compiled the kernel succesfully... my system call is in a file in the kernel folder named my_syscall1.c (kernel/my_syscall1.c) the header file for this system call i added it in the folder include like this include/my_syscall1/my_syscall1.h my problem is... (2 Replies)
Discussion started by: demis87
2 Replies

9. Programming

[C] exec system call

Hi again ;) Now I want to make a program that will execute the programs with exec, asking the user if he wants the program to run in background or foreground. scanf("%c",&caracter); if (caracter=='y'){ printf("Has decidido ejecutarlo en background\n"); if((pid=fork())==0) {// fork para... (3 Replies)
Discussion started by: lamachejo
3 Replies

10. Programming

c programming system call

newPerm = oldPerm & ~0100; where oldPerm holds the value of st_mode from the system call stat(). When I try and compile every line where ive attempted to do these operations gives the warning "parameter names without declaration types in function declaration". what could be the problem? the... (2 Replies)
Discussion started by: bjhum33
2 Replies
bootpd(8)						      System Manager's Manual							 bootpd(8)

Name
       bootpd - Server to help boot diskless clients

Syntax
       /usr/etc/bootpd [ -d ] [ -i ]

Description
       The server is for the Internet BOOTP protocol (a UDP-based protocol).  This allows a diskless machine to find out its Internet address, the
       address of a bootserver, and the name of a file to boot.

       The server is either started from or from If is started from the -i flag must be supplied by The server reads its configuration file,  when
       it starts up. When a new request arrives, checks to see if the file has been modified, and if so, reads it again.

       If  started  by	waits  until  no new requests arrive for one minute.  This limits the overhead of restarting the daemon without tying up a
       process slot when nothing is happening.	The following is an example of the format of the configuration file:
       #
       # /etc/bootptab:  database for bootp server (/usr/etc/bootpd)
       #
       # Blank lines and lines beginning with '#' are ignored.
       #
       # home directory

       /usr/local/bootfiles

       # default bootfile

       defaultboot

       # end of first section

       %%

       #
       # The remainder of this file contains one line per client
       # interface with the information shown by the table headings
       # below. The host name is also tried as a suffix for the
       # bootfile when searching the home directory (that is,
       # bootfile.host)
       #
       # host	      htype haddr	  iaddr 	 bootfile
       #

       hostx	      1 02:60:8c:06:35:05 99.44.0.65	 ultrix
       hosty	      1 02:07:01:00:30:02 99.44.0.65	 vms
       hostz	      1 02:60:8c:00:77:78 99.44.0.03	 lps40
       node1	      1 02:60:8c:00:99:47 99.44.0.01	 tops20
       The first two lines specify the home (default) directory and the default bootfile, respectively.  A line starting with  two  percent  signs
       (%%) separates these first lines from the host information table, which contains an entry for each bootable host.

       You  should  start with a configuration file similar to this and edit the host entries to correspond to your local systems.  The host field
       does not have to be a formal host name; it is used for identification in the log file and also as a  possible  extension  to  the  bootfile
       name.

       The  is	always	1  and	corresponds to the hardware type assigned Ethernet by the Assigned Numbers RFC.  The field can use a period (.), a
       hyphen (-), or a colon (:) as separators.  The entry is the file used if the client does not know the name of the file it  wants  to  boot.
       This is frequently the case when a diskless workstation is booted.

       The server logs interesting events using

Options
       -d   Logs all requests and indicates what responses are made.

       -i   If is started from the -i flag must be supplied by

Files
       Configuration file

See Also
       inetd(8c), tftpd(8c)

																	 bootpd(8)
All times are GMT -4. The time now is 10:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy