Tagged Questions
-1
votes
1answer
40 views
Program to check a servers activity and usage [closed]
I am making a new version of a program where it in short use ssh to connect to multiple VM clients to check if the machine is still in use.
I have made a version of this in Perl, but I want to ...
-1
votes
2answers
59 views
Linux - How to compare installed package version new install by shell script
I am trying to write a shell script that can install an Avamar client onto a Redhat or Centos box. I place the pkg I want to install into a repo dir /ava/repo
The script needs to perform the ...
3
votes
2answers
145 views
Best way to write an init.d script for start_server and starman?
I'm trying to come up with a nice init.d script that starts a psgi app, using start_server and starman. It needs to have the following features:
Run on RedHat (i.e. Debian's start-stop-daemon is not ...
0
votes
1answer
32 views
Command to display whole row based on searching column in linux?
I have rows like this
A006 Anand E1 01 12450.00
A005 John E2 01 14500.00
I have been trying:
cut -f3 emp | grep 'E2'
Output:
E2
...
0
votes
1answer
100 views
Monitoring system performance in Linux server with the top command
I'm trying to pull in system performance information ( PID, User, CPU, MEM and Time) into an excel file. I will be doing this via a shell script. I tried the top command. It has all the information, ...
2
votes
1answer
133 views
FIFO to grep to file
I am using a named pipe to trap syslog messages. I can then easily view syslog by doing something like
cat /var/log/local3.pipe | grep somefilter
or
grep somefilter /var/log/local3.pipe
These both ...
-2
votes
1answer
196 views
Postgres “Command Not Found” [closed]
I have looked at the majority of "Command Not Found" errors with Postgres and none of them are similiar to what I am running into. On my server Postgres is running effectively, as I can log into an ...
0
votes
2answers
249 views
shell scripting: java program can't find property file when starting by sh
I am starting a java programm under Red Hat Enterprise Linux Server release 5 (Tikanga).
directory structure:
- bin ->sc.jar,start-sc.sh,sc-lib-all.jar
- conf->log4j-sc.properties,sc.properties
...
0
votes
2answers
101 views
Bash “source” command returns the wrong concatenated string
I have a configuration file like this:
//filename : stat.conf
LAS_SERVER="127.0.0.1"
LAS_PORT=3306
LAS_USER=root
LAS_PWD=root
LAS_DB=test
CONN_STR_LAS_DB="-h$LAS_SERVER -P$LAS_PORT -u$LAS_USER ...
1
vote
1answer
2k views
PECL and PHP Build Directory
I'm trying to install a PECL package, and I received this error. I'm unsure what to do about it, so was hoping someone may be able to offer some help:
# pecl install -f ssh2
WARNING: failed to ...
1
vote
1answer
401 views
Problems with storing oracle sqlplus query output shell script
I have a RHEL 5 system and have been trying to get a batch of 3-4 scripts each in a separate variables and they are not working as expected.
I tried using following syntax which I saw a lot of people ...
3
votes
3answers
4k views
Redhat Linux - change directory color
I am using Redhat Linux and the problem I am facing is that the "blue" colour of the directories is hardly visible on the black background. I found some posts on the web which asks to change some ...
0
votes
4answers
894 views
hexdump and xxd produce different outputs on red hat and ubuntu/mint
Firstly , I am mentioning whatever happened on my linux mint/ubuntu system ...
udit@udit-Dabba ~/ah $ xxd -r -p input.txt output.txt
udit@udit-Dabba ~/ah $ cat input.txt
60 00 00 00 00 14 06 20 00 ...
0
votes
4answers
632 views
shell/awk script working fine on ubuntu/mint but not working properly on red hat
I am new to linux and its shell programming.
I wrote a shell script on ubuntu and linux mint which is working perfectly on their systems.
Now when I tried to run this shell script on red hat , whole ...
-1
votes
5answers
50 views
exit within single line
#!/bin/bash
grep -q 'string1' abc.txt && sed -i~ "s/string1/string2/g" abc.txt || echo "ERROR1! Exiting..."; exit
grep -q 'string2' pqr.txt && sed -i~ "s/string2/string3/g" pqr.txt || ...
1
vote
2answers
214 views
replace using sed
I want to replace IP dynamically but somehwo sed is placing word $IP instead of actual value.
IP=10.50.33.44
PORT=5774
sed -i~ 's/https:\/\/10.11.12.13:8443/https:\/\/$IP:$PORT/g' abc.txt
Can ...
1
vote
3answers
835 views
Shell script continues to run even after exit command
My shell script is as shown below:
#!/bin/bash
# Make sure only root can run our script
[ $EUID -ne 0 ] && (echo "This script must be run as root" 1>&2) || (exit 1)
# other script ...
1
vote
1answer
601 views
Have you ever got this message when moving a file? mv: will not overwrite just-created
I have a bourne shell script which performs several tasks. One of these tasks is to move some files to certain directory. Today, when I ran the script I got the following message:
mv: will not ...
1
vote
3answers
151 views
Sorting content based on first field and outputting second field into new file
I've got a file which is like this:
3 EOE
5 APPLE
6 NOBODY
i need to parse this and output all with '3' in the first column into filename.3, '4' into filename.4, etc... from the unix prompt
0
votes
1answer
831 views
“Permission denied” error on .sh script on RHEL5
root@server [/mnt/elm332/Setup/Linux]# ./setupLinux64.sh -c
Unpacking JRE ...
Starting Installer ...
./setupLinux64.sh: line 433: /tmp/setupLinux64.sh.28603.dir/jre/bin/java: Permission ...
6
votes
6answers
8k views
cron : how to schedule to run first Sunday of every month
Hi I need to schedule a cron job to run at at 9:00 AM on first Sunday of every month.
Did a little research and see that there is no short hand in cron to this.
Do you know of an optimal way ?
Using ...
1
vote
3answers
163 views
Red hat compatibility
The following code works as expected on CentOS and Ubuntu O/s but not on Red hat. What changes needs to be made?
CentOS release 5.3 (Final)
Linux ubuntu 2.6.24-19-generic #1 SMP Wed Jun 18 14:43:41 ...