0
votes
2answers
58 views

How to get linux version set in shell script?

I want to build a shell script. There should be a conditional flag for CentOS version. I want to set a variable for that version like this VERSION := $(lsb_release -sr) But when I included this ...
0
votes
1answer
13 views

How to recursively replace \n\r with \n in all php files

Is there a command line way of iterating recursively over a directory and changing all \n\r to \n in all PHP files? I am using CentOS.
-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 ...
0
votes
1answer
69 views

How to programmatically filter and export data from a large set of dumps?

There is a serialized representation of the traffic collected over several days. A lot of dumps, which total size is ~ 500GB, is a mix of data that was transfered on the protocols UDP, MPEG PES, OSFP, ...
0
votes
1answer
70 views

Bash Script Cron Job

I have installed PCoIP Teradici PCoIP Solutions for linux in Centos 6.4. I want to get macAdress of HostCard, when i run pcoip_agent -info it gives correct output using command line. I want make this ...
0
votes
0answers
88 views

PHP Apache shell exec script unable to run a program

I'm fairly new to linux and I have been struggling with this for quite some time and any help is greatly appreciated. I'm trying to run a ruby program located here ...
0
votes
0answers
48 views

How do I restrict a users sudo access to a particular domain? [closed]

I have not found any clear documentation that I understand that restricts a user who I make a sudoer only grant them privileges for a specific domain. for example I only want the user to have sudo ...
0
votes
2answers
119 views

shell script doesn't run fully when run as a cron job

I'm having a peculiar issue with a shell script that I have set to run every minute via crontab. I use Pelican as a blog platform and wanted to semi-automate the way in which the site updates ...
0
votes
5answers
116 views

Display php output on a txt file Linux command line

i currently have a blacklist.php file the generates a black list and I need a to have a blacklist.txt file on linux that it will pull the output from the php file. is this possible ?
0
votes
1answer
55 views

Linux script to change mutliple php files [closed]

I need to change a lot of different files quickly. I am using CentOS 6. Previously, I used the command: find . -name "*.php" -print | xargs sed -i 's/foo/bar/g' This found all PHP files and ...
-1
votes
2answers
42 views

Cannot enter in centOS with any user [closed]

I am using cent OS Operating system without GNOME. In the starting, it asks localhost login: Password: It has one user named service under group name service whose password is also service. I ...
0
votes
1answer
43 views

Streaming files in commandline

I want to import a very large sql file into my test db server, the file is around 50GB. The problem is if I do mysql -uuser -p < sqlfile.sql, it is going to take very looong time due to the file ...
-1
votes
1answer
99 views

Does not add user in centOS 5.5

When I run a shell script. It shows some errors. I run script on centOS 5.5. This is the part of my shell script where its show error. PART OF CODE if ! id service >/dev/null 2>&1 then ...
7
votes
3answers
372 views

Methods to detect public IP address in bash

As part of an installation script, I want to make an "educated guess" about the machines public IP address. It should be as robust as possible, working on a variety of hosts and platforms. Here is an ...
0
votes
1answer
125 views

yum update ignores exclude when called in script

So, I'm trying out an update (upgrade) script for CentOS I have a Virtualbox VM for testing, on which I have a snapshot to which I can roll back The script is written in dash (not bash) These are ...
0
votes
1answer
232 views

How to run a shell script with root privileges from PHP?

I'm trying to use vpopmail's vadddomain to add new virtual domains. Since apache user has no access to vpopmail's binaries I cannot exec('../bin/vadddomain...') directly from PHP. I made a shell ...
0
votes
2answers
94 views

Automating deployment of PHP source from Mercurial Repos to Apache server in CentOS using .sh file

I have a basic deployment procedure in place and I want to automate it. I need help with creating an sh file that I can call which will take care of all the steps. Notes about my setup: root does ...
0
votes
1answer
205 views

Network script doesn't work. CentOS 2.6

Centos 2.6.32-179.9.1.el6.i686 Hello, I have a problem with my noowbie script. It does not work. When I try to use it (for ex., /etc/init.d/myscript start) nothing happened. Before that I make ...
1
vote
1answer
80 views

How to make GNU-Screen share 1 Screen for all Users?

How can I start a Screen that is accesable as Root-User and Default-User? Because now when I start a Screen as Default-User with the command: screen -dmS test java $JAR nogui After executing the ...
1
vote
1answer
87 views

track PID of a background process and store it along with the process name in linux

i want to save the PID of a background process and save it to a file along with the process name in linux. What is the command to do so? Can anybody help me out?
-1
votes
1answer
98 views

How can i put the current running linux process in background [closed]

I am upload the files using git to remote server from the linux shell. But its going to take many hours and i have to do more stuff from the terminal putty. How can i put that running program in ...
0
votes
1answer
133 views

jabber - create room

I have the following setup: A server with CentOS 6 XMPP server (used ejabber) A browser client (used Candy-chat) Chat is working, users have permissions, etc. What I need to do is to create a ...
0
votes
2answers
902 views

Starting a service (upstart) from a shell script, from a cron job

I'm trying to use a cron job to call a healthcheck script I've written to check the status of a web app (api) I've written (a url call doesn't suffice to test full functionality, hence the custom ...
1
vote
1answer
636 views

tar: Unexpected EOF in archive

I am trying extract .tar.gz file it but with no luck gzip: stdin: unexpected end of file tar: Unexpected EOF in archive tar: Unexpected EOF in archive tar: Error is not recoverable: exiting now the ...
1
vote
1answer
280 views

Permission denied for root shrc

Whenever I open the terminal on my Centos5.1, I always get this error /root/.cshrc Permission denied and then I can't use networking commands (ip,ifconfig,...) because they are reported as unknown ...
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
votes
1answer
59 views

Get data with comma separated when running shell? [closed]

I want to get data with comma separated when running shell script.See sample output; value1,value2,value3 Is there any ideas?I'm using centos 5.5.
0
votes
2answers
84 views

How to get event of file created/copy in a folder in CentOS?

I need to write a script in CentOS, which will run in background. This script need to check whether a file name "status.txt" has been created in /root/MyFile folder on not. If that file is created, an ...
0
votes
3answers
245 views

How to automate the sending of files over the network using python?

Here's what I need to do: I need to copy files over the network. The files to be copied is in the one machine and I need to send it to the remote machines. It should be automated and it should be ...
0
votes
1answer
85 views

Shell script syntax error for valid file

Anyone out here to help with shell script ? I have shell script in folder /home/username/down/devel (Script file name is php) When I run the script I get error as follows:- /usr/local/lib/php.ini]: ...
4
votes
1answer
159 views

Crontab executes only first line

I'm trying to setup several cron jobs on VPS under centos/whm. I've added to /var/spool/cron/root following lines: */5 * * * * find /some-dir/* \( ! -iname ".ht*" \) -delete */10 * * * * find ...
1
vote
2answers
126 views

how to make alias work at runtime?

i know if i make alias earlier, i could put this alias defination in /etc/profile, but now i have no choice, since some build operation is just on progress. i can use alias wget='wget -c' on new bash, ...
1
vote
1answer
672 views

how to sort according to size of subdirectories when using du -sh * command? [closed]

du -sh * 275M fusionforge_g 50M git 99M httpd 181M php-doc 4.0M pirate3 3.4G qt 1.1M vim-addon-manager 126M wp-and this output is out of order now, how to make this output ...
1
vote
2answers
921 views

Bash Echo Escape Sequences

I'm trying to write a bash script in CentOS that tests the various echo escape sequences. However, when I run the program ./test.sh a I keep getting this error message: bad interpretation: ...
3
votes
1answer
136 views

Shell Script: Is there a difference between “local foo” and “local foo=”?

I found following code in /etc/init.d/functions on CentOS. status() { local base pid lock_file= pid_file= ... 4 variables are declared. Two of them are not initialized, base and pid. But ...
2
votes
0answers
364 views

Running Xvfb on server - getting no screens found error? (on CentOS)

I am using SSH to log directly into our server and setup CutyCapt & Xvfb (for creating website screenshots) (running CentOS) The problem i have is that CutyCapt is installed along with Xvfb ...
1
vote
2answers
915 views

Command line php mysqli fails but works via web server and works in local

I have a shell script that calls a php script to insert records in database after parsing text file. When it calls the PHP script I get errors that it cannot find mysqli: PHP Fatal error: Class ...
0
votes
2answers
245 views

Shell Command to remove older files

I am making backups of a client's website on a remote FTP location. I have a script (usable without root access on cPanel) which is making backups on given cron and transfer it to remote ftp location. ...
1
vote
2answers
366 views

SSH2 change a user password

I've been playing around with SSH and now I need to change a user's password via the PHP's ssh2, Here's my code: $stream = ssh2_exec($ssh, 'passwd test1234'); stream_set_blocking($stream, true); ...
0
votes
1answer
528 views

mysqldump command works when typed directly into command line - but not in a shell script

I am just getting started with shell scripts to save me typing in the same commands over and over. This command is used to copy a database over to a slave server as part of setting up MySQL database ...
2
votes
4answers
199 views

bash script treats string as command

I have a noobish problem with a bash script. It treats a string as command. Script is #!/bin/bash if ["$(pidof whatever)"] then echo "suicide" fi exit 0 The error I get at run is "[29999] ...
1
vote
2answers
81 views

sed syntax error

I want to replace a forwarder in my named.conf file through a shellscript. The reasons for this are that I have a firewall, and that have to use my localhost in a VirtualBox VM. I do this ...
-1
votes
1answer
191 views

Is it possible to clean a Linux VPS using the shell? [closed]

Sometimes my friend give me root access to his CentOS VPS to help him install some programs and he leaves. Sometimes I mess with it, but I don't have the login information for Parallels Virtuozzo ...
0
votes
3answers
364 views

shell script cd fails even though the path is correct

I need to do a script to extract a tar at a specified location. I did something simple like: cp test.tar /var/www/html cd /var/www/html tar xvf test.tar If I execute the commands by hand ...
2
votes
1answer
2k views

ant Permission Denied problem

After extracting and saving the ant files into an opt/ directory and setting the path variable to $ANT_HOME/bin I ran the following command on a CentOS 5 ant -version and I am getting the ...
0
votes
1answer
197 views

PHP + shell - Start a process from PHP

Good day to all. I need to do this: From a computer somewhere in this world I need to access a specific URL and start a process. The only problem is that since the process may last over 5 hours and ...
0
votes
1answer
509 views

how to auto setup a “AT” schedule job once after reboot

when I loging in centos as root via ssh i type at -f /etc/at_stopssh.txt now + 5 minutes and it works, one schedule job has been setup sucessfully at_stopssh.txt include a simple command ...
-1
votes
1answer
222 views

Can't seem to install id3v2 on linux, doesn't seem to be any errors

I'm tryin to follow the direction to install id3v2. I installed id3lib and did not receive any errors. I now try to do "make" and then "make install" as they suggest that I do. I get the ...
3
votes
2answers
557 views

How to send list of file in a folder to a txt file in Linux

I'm fairly new to Linux (CentOS in this case). I have a folder with about 2000 files in it. I'd like to ideally execute a command at the command prompt that would write out the name of all the files ...