Advertisement

Experts have come up with some helpful tips for getting a solution to your problem fast.

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top Linux Dev Solutions: 26 - 36 of 36
 
I have the code #define MODULE #include <linux/module.h> int init_module(void) { printk("<1>Hello, world\n"); return 0; } void cleanup_module(void) { printk("<1>Goodbye cruel world\n"); } ...
I am struggling to get a running kernel for an AMD Geode LX800 based board. As soon as I attempt to boot the kernels I configure with grub I get nothing more than a flashing cursor in the top ...
This situation is not very common and I ran into this because of some third party libraries. I have an executable compiled with gcc3.2.3 and it tries to load another c++ library compiled wi...
How can I redirect output from sh -x to a outputfile?
I have a script that copy files from sever a to b But theres a problem& when I run the script, I see it live Like this: sent 63680 bytes  received 20 bytes  127400.00 bytes/sec total...
I'm attempting to add IMQ support to a Fedora 7 box, but I'm having trouble with it.  I'm new at this kernel-building thing, so I've probably missed something basic. Here's the short versio...
I'm attempting to patch iptables for IMQ support on Fedora 7, but my patch keeps vanishing.  I'm pretty new at this, so I'm probably missing something basic. Here's my process: Apply the...
Hi I need help to remove first 4 and last 4 lines from file using shell script. I need another shell script which will find the pattern inside the file and remove the lines. The lines w...
Shell script to do telnetfrom one Linux machine to another linux machine  without using expect package
Hi All, I am using the below rule to compile my CPP files. %.o: %.cpp         g++ .... But the problem is, I have one 'C' file in that list of CPP files.  My question is how to chang...
I have a compiled C program that implicitly attempts to load libc.so.6 when run. When I attempt to run it on a host that I do not have root access to, it complains that it needs a newer versio...