Search Results

0
votes

Limiting certain processes to CPU % - Linux

Throwing some sleep calls in there should force the process off the CPU for a certain time. If you sleep 30 seconds once a minute, your process shouldn't average more than 50% CPU usage during that …
1
vote

Most performant *nix system

Whatever your people are most familiar with is what they are going to be able to tune for maximum performance/reliability. …
0
votes

need hint with a custom Linux/UNIX command line utlity “cal” in C

The approach I would use for this would be to capture the output, split it into lines, and printf the lines out next to each other. I'd probably do it in Perl, though, rather than C. Or jus …
1
vote

Can you describe the cheapest/minimal hardware requirements needed to run a very light weight version of Linux?

I've run Linux on a 50MHz 486 DX/2 laptop with 12 megs of RAM and a 75 meg hard drive. The floppy drive was dead, but luckily it was running DOS so I was able to install Laplink through the serial …
2
votes

how to read() write() into pipe() via dup2() with stdin and stdout

This looks like homework, so I'll give you a way to approach the problem: Get it working with one calendar, reading in one line at a time and writing to stdout. Now store eac …
8
votes

Who “Killed” my process and why?

This looks like a good article on the subject: Taming the OOM killer. The gist is that Linux overcommits memory …
1
vote

Getting out of the habit of using a mouse while programming

What do you use the mouse for the most? I found that I was reaching over to the mouse a lot just to scroll around and look at the code, and also to scroll to a particular line number. I forced myse …
6
votes

How to start and position multiple applications on Ubuntu/Linux?

A lot of commands accept a -geometry argument (xterm does, for instance, so there's your terminal right there). I'm not sure how Ubuntu handles this stuff, but on Slackware I'd just pu …