Questions about /usr/local/bin & scripts.


 
Thread Tools Search this Thread
Operating Systems Solaris Questions about /usr/local/bin & scripts.
# 1  
Old 02-18-2010
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.
# 2  
Old 02-18-2010
this directory is not there by default on the OS. its user created.
check ls -l on the scripts and see where the softlinks are pointing to. or either, its triggered by cronjobs, perhaps
# 3  
Old 02-18-2010
Normally the 3 rd party applications are installed in /usr/local . Soit could be any 3 rd party application.ie - openssl
# 4  
Old 02-18-2010
Quote:
Originally Posted by incredible
this directory is not there by default on the OS. its user created.
check ls -l on the scripts and see where the softlinks are pointing to. or either, its triggered by cronjobs, perhaps
The directory does not contain any symbolic link.Smilie
Only:
start scripts for applications; xemacs; xf; wish; wish3.6; wish8.0; g++; gcc;
etc.

Last edited by wolfgang; 02-18-2010 at 07:37 AM..
# 5  
Old 02-18-2010
Quote:
Originally Posted by amitranjansahu
Normally the 3 rd party applications are installed in /usr/local.
Third party application shouldn't actually install in /usr/local as /usr belongs to the OS, not external stuff according to the SVR4 standard. I know sunfreeware.com releases packages that do so but they are breaking Solaris rules.
Third party applications should install in /opt/<app_name> or similar, /var/opt/<app name> and /etc/opt/<app name>.

---------- Post updated at 12:46 ---------- Previous update was at 12:46 ----------

Quote:
Originally Posted by wolfgang
The directory does not contain any symbolic link.Smilie
Why should it ?
# 6  
Old 02-18-2010
Then that starts scripts?
# 7  
Old 02-18-2010
If by registration, you mean login, then they are started by the profile scripts. Nothing special here.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. AIX

/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 (6 Replies)
Discussion started by: hifirockz
6 Replies

5. 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

6. Red Hat

/usr/bin/find && -exec /bin/rm never work as expected

hi there, Would you able to advise that why the syntax or statement below couldn't work as expected ? /usr/bin/find /backup -name "*tar*" -mtime +2 -exec /bin/rm -f {} \; 1> /dev/null 2>&1 In fact, I was initially located it as in crontab job, but it doesn't work at all. So, I was... (9 Replies)
Discussion started by: rauphelhunter
9 Replies

7. UNIX for Dummies Questions & Answers

Alias /usr/bin to /bin in profile

Hi! All the basic linux commands, ie. echo, find, etc, are located in /bin. I have a couple of programs that have these commands pointed towards /usr/bin, ie, /usr/bin/echo (even though the actual 'echo' command is in /bin). How can I alias or redirect or link the /usr/bin to /bin just for this... (6 Replies)
Discussion started by: dancerat
6 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