/usr/local/bin/cvs: Not found


 
Thread Tools Search this Thread
Operating Systems AIX /usr/local/bin/cvs: Not found
# 1  
Old 08-03-2011
/usr/local/bin/cvs: Not found

I can able to access /usr/local/bin/cvs in the terminal (AIX 6.1 Box). but i am getting the "/usr/local/bin/cvs: Not found " when i call it from the script. please some one assist me what maybe problem
# 2  
Old 08-03-2011
Quote:
Originally Posted by hifirockz
please some one assist me what maybe problem
The best assistance i can give you is: why don't you post your script instead of letting us guess what its contents might be?

This is a tit-for-tat form of forum and as long as you provide nothing to base our work on you will get equally much in helpful advice. You might want to read this thread for reference.

I hope this helps.

bakunin
# 3  
Old 08-03-2011
What bakunin said is true, but in the interest of clairvoyant debugging, what happens if you put the following call before your first call to cvs?
Code:
ls -l /usr/local/bin/cvs

Are you developing and running on the same host?
# 4  
Old 08-03-2011
Quote:
Originally Posted by hifirockz
I can able to access /usr/local/bin/cvs in the terminal (AIX 6.1 Box). but i am getting the "/usr/local/bin/cvs: Not found " when i call it from the script. please some one assist me what maybe problem
I assume you are trying to use the Concurrent Versions System. Are you sure it has been installed? As long as you are using the full path as Skrynesaver and bakunin have demonstrated I would say it is not there!

Also both the aforementioned are correct; without a look at the script we cannot say why for sure!
# 5  
Old 08-03-2011
Hi All,
Here is my code
Code:
#! /bin/sh 
.
.
.
CVSEXE=/usr/local/bin/cvs
CVSREPDIR=/var/opt/soe/local/CVSREP
.
.
/bin/su - test_user -c "umask 002; $CVSEXE -d $CVSREPDIR init"

and the error is
Code:
sh: /usr/local/bin/cvs:  not found

But if i call the cvs in the terminal, it is working good
Code:
/opt/soe/local/bin/cvs -v

Concurrent Versions System (CVS) 1.11.17 (client/server)

Copyright (c) 1989-2004 Brian Berliner, david d `zoo' zuhn,
                        Jeff Polk, and other authors

CVS may be copied only under the terms of the GNU General Public License,
a copy of which can be found with the CVS distribution kit.

Specify the --help option for further information about CVS

What is the problem?
# 6  
Old 08-03-2011
as Skrynesaver said already - what is the output of ls -ali /usr/local/bin ?

Most likely you are just missing the link from /usr/bin/cvs to /usr/local/bin/cvs - and you only have proven so far that cvs is installed, not that it really is linked into /usr/local/bin ...

Regards
zxmaus
# 7  
Old 08-05-2011
/usr/local/bin/cvs
Is not the same as
/opt/soe/local/bin/cvs
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Open Source

/usr/bin/sh xlc not found

Hi Everyone, We are trying to compile Kerberos library using xlc and we get an error that xlc is not found in the system. We tried using gcc as well but it also fails with the same error. We could not find the compiler in the software media we received from IBM. Any inputs on how... (2 Replies)
Discussion started by: madhav.kunapa
2 Replies

2. BSD

FreeBSD: /usr/bin/ld not looking in /usr/local/lib

I'm not sure if this is the default behavior for the ld command, but it does not seem to be looking in /usr/local/lib for shared libraries. I was trying to compile the latest version of Kanatest from svn. The autorgen.sh script seems to exit without too much trouble: $ ./autogen.sh checking... (2 Replies)
Discussion started by: AntumDeluge
2 Replies

3. Solaris

How to link sed from /usr/bin/sed to /usr/local/bin/sed?

Hi Guys, OS:- Solaris 10 64Bit I have a small query. On one server a user is facing sed command issue. He gets error regarding sed for this location /users/hoy/2999/batch5/bin/internal.sh: /usr/local/bin/sed: not found How ever the sed is actually present at this location on server:-... (13 Replies)
Discussion started by: manalisharmabe
13 Replies

4. Shell Programming and Scripting

/usr/local/bin/expr function not working

Legends, I am not able to set "expr" function in ksh script. Below is the sample code i used, and output is as "Syntax error" Please help me to come out of it. OUTPUT (9 Replies)
Discussion started by: sdosanjh
9 Replies

5. Solaris

What is the difference between xpg4/bin and usr/bin?

Hi Experts, I found that the same commands(sort, du, df, find, grep etc.) exists in both dir. What is the difference to use them? i.e: to use xpg4/bin/grep and usr/bin/grep My OS version is SunOS 5.10 Regards, Saps (7 Replies)
Discussion started by: saps19
7 Replies

6. OS X (Apple)

When to use /Users/m/bin instead of /usr/local/bin (& whats the diff?)?

Q1. I understand that /usr/local/bin means I can install/uninstall stuff in here and have any chance of messing up my original system files or effecting any other users. I created this directory myself. But what about the directory I didn't create, namely /Users/m/bin? How is that directory... (1 Reply)
Discussion started by: michellepace
1 Replies

7. Solaris

Questions about /usr/local/bin & scripts.

Hi gentlemen. For what intended is the directory /usr/local/bin? In this directory are some script. I don't understand how these scripts being in this directory are started. Each time after registration of the user occurs start of these scripts. These scripts start applications. (7 Replies)
Discussion started by: wolfgang
7 Replies

8. Solaris

How do I link ld in /usr/ucb/ to /usr/ccs/bin?

Hi all, below is the problem details: ora10g@CNORACLE1>which ld /usr/ucb/ld ora10g@CNORACLE1>cd /usr/ccs/bin ora10g@CNORACLE1>ln -s /usr/ucb/ld ld ln: cannot create ld: File exists ora10g@CNORACLE1> how to link it to /usr/ccs/bin? (6 Replies)
Discussion started by: SmartAntz
6 Replies

9. UNIX for Dummies Questions & Answers

/bin/sh: /usr/bin/vi: No such file or directory when doing crontab

I just set up an ftp server with Red Hat 5.2. I am doing the work, I'm baby stepping, but it seems like every step I get stuck. Currently, I'm trying to set up a crontab job, but I'm getting the following message: /bin/sh: /usr/bin/vi: No such file or directory. I see that vi exists in /bin/vi,... (3 Replies)
Discussion started by: kwalter
3 Replies
Login or Register to Ask a Question