Hi,
when I run ps -aux command on my linux server, to which I connected using putty, few processes are too long to fit in my current window width. Is there an alternative?
Thank you
-- Update --
I am sorry for downgrading,I thought others won't find the answer useful too, so I downgraded.
Here is the info you asked for.
hadoop-use...
Hi,
Is it possible to host an asp page on a linux server ?
...
Given this two files:
$ cat A.txt $ cat B.txt
3 11
5 1
1 12
2 3
4 2
I want to find lines number that is in A "BUT NOT" in B.
What's the unix command for it?
I tried this but seems to fail:
comm -3 <(sort -n A.txt) <(sort -n B.txt) | sed 's/\t//g'
...
Hello,
I was just wondering if it is possible to replace Loader (executable program loader not the boot loader) of an Operating System (Windows is my choice). Are there any third party loaders available that would patch the default one.
Is there any way through which I can obtain the control over the OS Loader? I mean, I want things it...
I'd like to do something like:
do lots of stuff to prepare a good environement
become_interactive
#wait for Ctrl-D
automatically clean up
Is it possible with bash? If not, do you see another way of doing the same thing?
...
When using msgsnd the structure mentioned in man page is
struct mymsg {
long mtype; /* message type */
char mtext[1]; /* body of message */
};
But if you use it like
func(char *array, int sizeofarray)
{
struct mymsg {
long mtype; /* message type */
char *ptr; /* body of message */
};
...
Hi,
I added some additional code to the Linux kernel (the scheduler)
and now I would like to know what is the impact of this modification.
For user processes I always used:
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, ...);
Now I am wondering if there is a kernel-equivalent routine that I could
use to do something similar.
Many thanks ...
Hello All,
We have a particular problem here on one of our production machine, which is running a PHP application.
We have an AJAX call that is only called at one location in the code. However, at any given time, when I have a look at the PHP activity file in Linux (suphp_log), I see that when the server freezes (for a couple of minu...
I would like to use a Debian distribution for this purpose. My application is closed source and Debian is a mix of various open source licenses. Some of them force publishing everything that uses it under the same license (GPL). Does it apply to my scenario as well or can I still use my own license for my code?
...
What are the steps for deploying the .Net Web Application on Linux & apache web server developed using .NET Framework using Visual Studio 2005?
...
Hey,
I am using mongoDB and am curious to whether you can import scripts like you can in MySQL:
mysql -uuser -ppassword database < script.sql
Can you do this with mongoDB?
Cheers
Eef
...
Hi All,
I want to know about cygcheck utility of cygwin. How can I use it to extract all the class hierarchy and dependencies with the help of cygwin?
Thanks !
P.S: Any tutorial that you can point out that shows how to use it for dependencies
...
Hi,
What I want to do is create some kind of graph detailing the execution of (two) threads in Linux. I don't need to see what the threads do, just when they are scheduled and for how long, a time line basically.
I've spend the last few hours searching the internet for a way to trace the scheduling of pthreads. Unfortunately, the two p...
I know that Java is pre-installed in Mac OS X but i wonder if it is pre-installed in Windows XP, Vista, 7 and all Linux distros?
...
I am looking for a relatively bug-free, small learning curve data modeler that allows creation of UML diagrams. Prof recommended Rational Rose...but I don't want to pay for it. Could run on Linux or Windows...
Any suggestions?
...
Is there a Linux equivalent of __declspec(dllexport) notation for explicitly exporting a function from a shared library? For some reason with the toolchain I'm using, functions that aren't class members don't appear in the resulting shared library file.
...
java -version still returns old java version. I have red hat linux
I installed jdk 1.5 int eh follwing path and updated the bask profile and did a source but still the java version shows 1.4
JAVA_HOME=/usr/local/jdk/jdk1.5.0_10/bin/java
PATH has /usr/local/jdk/jdk1.5.0_10/bin
but i still see java -version even from the bin directory ...
# which java
/usr/bin/which: no java in (/usr/local/jdk/jdk1.5.0_10/bin/java:/usr/local/jdk/jdk1.5.0_10/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin)
I installed java in /usr/local/jdk/jdk1.5.0_10 but cannot run java -version
I get this
$ java -version
-bash: /u...
I'm trying to write a tcp stream 'tunnel' (similar to the ones SSH handles by default) but with one exception, I have to rewrite certain information as it flows through.
I'm certain there's something similar out there but I have not been able to find it.
I have three main questions:
Is there an easy way to save a tcp stream for obser...
Map reduce/Hadoop is one of the framework/program that s used for distributed systems.
What are some other popular frameworks/programs?
Thanks.
...