Search Results

0
votes
2answers
269 views

what’s the difference between foreground and background programme?

I tried to run a programme in background mode and foreground mode, while in background mode,it failed to run, but in foreground mode,it succeeded, so what's the difference b …
1
vote
2answers
177 views

what does these output mean?

especially the last two with '-' and '+' respectively, what does it mean on earth? [1] Done php start.php bots/admin32.bot.php [2] Done ph …
0
votes
2answers
74 views

Is it normal for “rsyslogd” to cost 170M memory?

One of my sites runs extremely slow, and I use top command to see that "rsyslogd" cost 170M memory, is that normal? If not,how can I limit the size of memory "r …
1
vote
7answers
138 views

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

In my case it's "rsyslogd", I find it's consuming up to 170M memory,which is too much, and I've checked its configuration file located at /etc/rsyslog.conf and then checked …
0
votes
2answers
123 views

how to make a PHP process auto-restart when dead?

Something like a daemon that will never die, my system is fedora10 …
0
votes
4answers
191 views

how to investigate ports opened by a certain process in linux?

Suppose the PID of the process is already known …
1
vote
3answers
622 views

what’s the option for cp to create a directory if not exists?

Here is what I tried but failed: [root@file nutch-0.9]# cp -f urls-resume /nosuchdirectory/hi.txt cp: cannot create regular file `/nosuchdirectory/hi.txt': No such file or directory …
0
votes
0answers
124 views

a bash problem [closed]

Suppose under current directory,there are multiple sub-directories,and one is called A. My question is: how to delete all sub-directories except A with bash? …
3
votes
7answers
457 views

how to make a programme continue to run as root after log out from ssh?

This programme takes lot of time to finish running, it's running as root from ssh, I want it to continue to run after it logout,is it possible? …
0
votes
4answers
87 views

can “nice” and “exec” cooperate in linux?

This one fails: nice -n 10 exec "$JAVA" $JAVA_HEAP_MAX $NUTCH_OPTS -classpath "$CLASSPATH" $CLASS "$@" this succeeds: nice -n 10 java test …
0
votes
4answers
158 views

Is it possible to see output to stdout after disown and logout?

I have done this to that programe: ctrl-z disown -h %1 bg 1 then logout, Is it still possible for me to see what that programe outputs to stdout now? …
1
vote
3answers
122 views

how to replace the “disown” with “screen”?

ctrl-z disown -h %1 bg 1 logout …
-1
votes
1answer
156 views

how to scp across servers using bash?

Is it doable? …
0
votes
6answers
246 views

Is it possible to make a bash file run as root in crontab?

I need that bash file to run periodically,and must as root. Is that kind of possible? [root@file nutch-0.9]# locate crontab /etc/crontab /etc/sysconfig/crontab /usr/bin/cron …