1
vote
Load Balancing of Process in 1 Server
You need multi-processing or multi-threading. You aren't specific on the details of the server, so I can't give you advice on what to do exactly. fork and exec as Matt suggested can be a solution, …
0
votes
Why is ARG_MAX not defined via limits.h?
I'm assuming the filename that are missing in your post are limits.h and linux/limits.h. I don't know why they are missing, but I'm also wondering why your code needs them. I can think of no good r …
0
votes
Problem with .net app under linux, doesn’t work from shell script
Are you sure you want to do
/usr/bin/mono $1/hooks/post-commit.exe "$@"
$@ expands to ALL arguments. "$@" expands to all arguments join by spaces. I suspect you she …
0
votes
Fast Disk Cloning
Are you sure it isn't doing that at the same time? I would expect the disk caches to make sure it that happens. If not, non-blocking or even asynchronous reads/writes may help,
…
0
votes
Fast Disk Cloning
About your update: How big are the caches of your HDs? (specially the writing one). It may be that that is too much and you may need to reduce it to prevent unnecessary blocking.
…
0
votes
Automate firefox with python?
The languages of choice of Firefox is Javascript. Unless you have a specific requirement that requires Python, I would advice you to use that.
…
2
votes
How can I tar a file that is being used by another process?
Your second output is made after your first, that can't be right. I'm guessing that tar is right here: when it was doing its job, the file was empty. You may be dealing with a …
0
votes
