Search Results

4
votes

What is the current state of art in Linux virtualization technology?

This is a job for ... Wikipedia! …
1
vote

Problem with Bash output redirection

When you submit your command string to bash, it does the following: Creates an I/O pipe. Starts "/usr/bin/tail -1", reading from the pipe, and writing to file.txt. S …
1
vote

Java Threads priority in Linux

First and foremost, you're going to want to upgrade to a more recent version of Java -- Sun stops supporting Java 1.4.2 in Octo …
3
votes

how to look up which files a certain process is manipulating?

You assert that rsyslogd is using "too much" memory (170MB). Too much in comparison to what? First, start by reading this …
0
votes

Direct Memory Access in Linux

Have you looked at the 'memmap' kernel parameter? On i386 and X64_64, you can use the memmap parameter to define how the kernel will hand very specific blocks of memory (see the …
-1
votes

Search for a string in a text file and parse that line (Linux, C)

With a POSIX shell, I'd use something like: answer=`egrep 'wants_config[ ]*=' /etc/myconfig | sed 's/^.*=[ ]*//'` Of course, if you're looking for an answer that u …
0
votes

Can I use a USB-to-serial adapter to talk to my development board from VMWare Fusion?

Depends upon the VM software, but VMWare Fusion does support USB devices. The question becomes, does your IDE support talking to a USB device instead of an old-fashioned serial port? With Linux, …
2
votes

Perl (or something else) - ^M problem

Your data file must have originated on Windows, which uses CRLF as a line delimiter instead of just LF. This means your text file looks like this: bla[CR][LF]bla bla[CR][LF]blah[CR …