Find the answer to your Linux question:
Results 1 to 2 of 2
when I write g++ p1.cpp -o output the terminal shows the message that g++: vfork: Resource temporarily unavailable what is this?? please tell me how can i run my file?? ...
  1. #1
    Just Joined!
    Join Date
    Mar 2009
    Posts
    8

    terminal giving error

    when I write g++ p1.cpp -o output
    the terminal shows the message that
    g++: vfork: Resource temporarily unavailable

    what is this??
    please tell me how can i run my file??

    help me
    tommorow is my project
    and my terminal..


  2. #2
    Just Joined!
    Join Date
    Apr 2009
    Posts
    90
    The error is due to your user account having used up all of its allowed processes. basically g++ is trying to create (fork) a new process, and the kernel is saying No.

    Maybe kill off some of the processes you are running, or have a friendly word with your System Administrator to increase the limit.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...