Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sramki

    ftp using c

    hey all i would like to ftp a file to a web server . i will get the web server name from the GUI screen i have and store it in a database . From the database i shd fetch the path of the server and send a corresponding file to that server . i need to just know abt the FTP part .how can i do it...
  2. sramki

    ftp using c

    hey all i would like to ftp a file to a web server . i will get the web server name from the GUI screen i have and store it in a database . From the database i shd fetch the path of the server and send a corresponding file to that server . i need to just know abt the FTP part .how can i do it...
  3. sramki

    hey all i would like to ftp a fi

    hey all i would like to ftp a file to a web server . i will get the web server name from the GUI screen i have and store it in a database . From the database i shd fetch the path of the server and send a corresponding file to that server . i need to just know abt the FTP part .how can i do it...
  4. sramki

    segmentation fault

    hi russ thanks for ur valuable comments and suggestions they were really very useful . great man great stuff!!!!!!!! thanks again ramki
  5. sramki

    environmental variable in C program

    sorry friends i forgot to give u the rest of the code where i have used a wait . i had given wait with a parameter ie wait(); there ocured a segmentation fault because of this . then i tried wait(NULL); it worked but tell me what is the difference btw these . anyway thanks for ur effort ...
  6. sramki

    environmental variable in C program

    hey i solved it by just giving a NULL in the wait function . could someone tell me what is the difference between wait(); and wait(NULL); thanks abp for ur efforts ramki
  7. sramki

    segmentation fault

    sorry i missed half the code here is the full code iam getting a segmentation fault after it executes for the first time . #include<stdio.h> #include<signal.h> #include<time.h> #include<unistd.h> #include<errno.h> #include<stdlib.h> #include &quot;/home/ipcpe/process/lib/ERR_logerror.c&quot...
  8. sramki

    segmentation fault

    hi all cou;ld someone help me out with this segmentation fault . i have given the code here . somewhere there is a segmentation fault . iam unable to find out .could u help me . the main aim of the code is to run a particular process &quot;get&quot; at an interval as specified in the ENv...
  9. sramki

    environmental variable in C program

    hi abp i have given the code here . somewhere there is a segmentation fault . iam unable to find out .could u help me . the main aim of the code is to run a particular process &quot;get&quot; at an interval as specified in the ENv variable &quot;TIME&quot; . The process is getting executed...
  10. sramki

    environmental variable in C program

    hi all i would like to know how i can use some the environmental variable inside a c program . iam working in linux platform . If u can give me an idea it would be great thanks ramki
  11. sramki

    appel à un executable

    u can try exec too ramki
  12. sramki

    Is there any clue about /usr/preser

    hey u will also have some swp ( swap files) created which will be used for the recovery of the file as CaKiwi said u can recover the file lost by vi -r filename here -r stands for recovery . hope it was useful regards ramki
  13. sramki

    how to use CUT ? ?

    CUT is a command used to cut a field from a file and display it on to the screen . create a file $ cat > f1 name age group class sec let these some of the fields in that file f1 . suppose u wanna cut the third field $ cut -d &quot; &quot; -f3 this will give a o/p of &quot;group &quot...
  14. sramki

    Signal Handling

    It is possible to send a signal to a specified process group using the kill system call . where as raise sends a signal to the current process only . regards ramki
  15. sramki

    Is CSH the default shell shipped on Solaris?

    There could be a possibility that while installing the default would have been set to CSH . Try to change the settings . regards ramki
  16. sramki

    Signal Handling

    kill would be a better choice than raise . more efficient and reliable also regards ramki
  17. sramki

    I cannot see GUI in Solaris8

    There can be 2 possibility for not finding GUI 1. There may be a probs with the Xwindows or a probs with the graphical drivers . 2 . The CDE option may be disabled so to enable it From the root in the prompt give $ dtconf -e or dtconf -enable move to /usr/dt/bin and then give...
  18. sramki

    UNIX Introduction

    hi parrabueno unix sun certification will do good when u r inclined to unix administration . U have 2 papers on that u can get info from sun site itself . hi Spockx2 The best way to learn unix is to install and find out how it works on ur own .Dont attend any classes they r waste . get a...
  19. sramki

    File change detection

    use the stat command . stat <filename> u can use the ctime(member of stat ) to see whether the file has changed or not regards sramki
  20. sramki

    Signal Handling

    There is also another way of sending signals . Set up the signal handler in the process that wants to catch the signal: #include <signal.h> /* ... */ signal(SIGUSR1,handler); The handler fucntion will be called as soon as the signal SIGUSR1 is invoked . In the process that sends the...

Part and Inventory Search

Back
Top