The forking tag has no wiki summary.
0
votes
1answer
66 views
Fork processes in a script using different colors for each process output
I have a script that operates on 4 folders.
Because they are completely independent, I'm passing in the folder path to a function and then forking that function. It works, but the output to the ...
1
vote
1answer
134 views
Neutralize fork-bomb through ssh
I have access to a server through SSH (namely, it's our informatics server :) ) and ran a fork-bomb there (the bash one). Is there a way to neutralize it remotely? Just using ssh name@server does just ...
4
votes
2answers
458 views
How can I Resync a fork from original
I just forked a project in Github. I made modifications and send pull request. Th owner merge my fork with the main project and after that he made some modifications. So for now my fork is not updated ...
9
votes
3answers
6k views
How do I fork a process that doesn't die when shell exits?
If I run emacs from the shell:
$ emacs foo &
and then kill that shell, emacs dies.
How can I run a command so that it will not die when the shell dies?
I found references to nohup, but that ...
1
vote
1answer
271 views
git cannot allocate memory - git svn rebase
I cannot run git svn rebase in my repository as I am getting:
Can't fork: Cannot allocate memory at /usr/share/perl5/vendor_perl/Git.pm line 1262
The output of free indicates I have plenty of free ...
8
votes
3answers
2k views
NetBSD, OpenBSD, *BSD and FreeBSD compared
I recall reading a comparison of NetBSD and FreeBSD a few years back, and in 2000 (okay many) it looked like NetBSD forked processes better, while FreeBSD threaded better, and so, for Apache 1 NetBSD ...
6
votes
2answers
115 views
Git branch for instances of a website?
I'm working in a couple of websites, both websites needs almost the same code except for some changes in images and css, or settings.
I'm just finished to read the chapter of branchs of Pro Git book ...
4
votes
1answer
1k views
Linux / Perl - What happens when a process is forked?
I've read about fork and from what I understand, the process is cloned but which process? The script itself or the process that launched the script?
For example:
I'm running rTorrent on my machine ...
0
votes
1answer
555 views
Any way to simulate Process.fork() on Windows?
I need to use a library that seems to be making the assumption that Process.fork() is available.
On Windows it is not.
I tried installing Cygwin with the idea that it might simulate this.
Didn't ...
