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 SkipVought 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. CaptRage61

    Win 2003 server VPN config

    I have determined that when I am connected I am using the internet connection of my server, and not the connection that my laptop is on. But I am still not able to connect to any computers on my network...any ideas?
  2. CaptRage61

    Win 2003 server VPN config

    I want to be able to use my laptop on the go and VPN into my server. On my laptop I want to be able to enter \\myserver\myshare (or any other computers on the network). I would also like to be able to browse my network via My Network places, and RDP into any computer on my network by just...
  3. CaptRage61

    Win 2003 server VPN config

    Currently I have my windows 2003 server configured to accept VPN connections. I have a laptop with Win XP Home...I know pro would be better but this is all I have. I am able to create a new VPN network connection on my laptop. When I launch it and enter the ip address of my server at home I...
  4. CaptRage61

    How to email IP address

    I set it up and it works great...thanks.
  5. CaptRage61

    How to email IP address

    I checked out the dyndns.com and that looked pretty good, I will have to try that out. I just hope that it will do what I want. I am behind a router so it is a little harder to see the external ip. The reason that I wanted it emailed is so that it can be updated even if I am not at the server...
  6. CaptRage61

    How to email IP address

    Does anyone know of any simple programs or scripts that will email a computers ip address to a specified email. Here is why I would like to use it. I currently have a webserver that I am just playing around with but I have a dynamic ip address that changes about every 8 days. So what I would...
  7. CaptRage61

    Connectinf to network via internet

    Hey Guys, Here is what I would like to do, I currently have a home network with a bunch of computers (mostly running xp pro) and what I want to do is to be able to connect to this network via any computer on the internet. I know there is remote desktop but that is not really what I am looking...
  8. CaptRage61

    Compaq EVO D500 Compaq Fan error

    Where can I get this speedfan program?
  9. CaptRage61

    Compaq EVO D500 Compaq Fan error

    I just recently got this machine about a week ago and since I have had it it stated doing this. My question is does anyone know how to disable this warning or anything I could try to make it go away.
  10. CaptRage61

    Compaq EVO D500 Compaq Fan error

    It is the 3 pin connector, there are 2 connectors on the board one for cpu and one for a case fan, and both are hooked up. It is just the d500 DT, I just tried downloading the new BIOS to see if there is anything in there. Compaq support does not know anything. It always does this on startup...
  11. CaptRage61

    Compaq EVO D500 Compaq Fan error

    I have a EVO D500 Compaq and I am geting the following error during the post: 514: cpu or chassis fan not detected, and press F1 to continue. The fans do work and I even tried replacing them and I still get the message. No where in the BIOS do I see an option to turn off the fan warning or...
  12. CaptRage61

    Semaphores

    actually I think I just got it to work, thanks though
  13. CaptRage61

    Semaphores

    p = clone(producer, p_stackTop, CLONE_VM | SIGCHLD, NULL); c = clone(consumer, c_stackTop, CLONE_VM | SIGCHLD, NULL);
  14. CaptRage61

    Semaphores

    I am working on using semaphores to keep two threads from writing to the same variable but this is now working correctly, I beleive that the semaphore is created correctly can anyone tell if this is right: int p(){ //sem is the sembuf struct //x is the semid sem.sem_op = -1; semop(x, &sem...
  15. CaptRage61

    creating a make file

    So I would say all: myprog1.o myprog2.o myprog3.o cc -o all myprog1.o cc -o all myprog2.o cc -o all myprog3.o Thanks
  16. CaptRage61

    creating a make file

    Here is what I have for a makefile, I have the 3 files myprog1.c, myprog2.c and myprog3.c and I want to make 3 executable files called myprog1, myprog2 and myprog3. When I run this makefile I get errors. Here is what I have all: myprog1.o myprog2.o myprog3.o cc -o all myprog1.o...
  17. CaptRage61

    creating a make file

    ya, just like you would type make in linux
  18. CaptRage61

    creating a make file

    Does anyone know how to create a make file? For example, I have 3 c programs: myprog1.c, myprog2.c and myprog3.c. How do I creat a make file that will compile all of these programs by 1 command and make them executable???
  19. CaptRage61

    Using fork

    I am using the fork command to run 2 progmrams at the same time, the ls command. I then pass in at the command line 2 args so that the first arg goes to the first ls and the second arg goes to the second ls. That works fine, the problem is I am getting too many program running, all I want to...

Part and Inventory Search

Back
Top