Sponsored Content
Full Discussion: losing /usr/bin directory
Operating Systems AIX losing /usr/bin directory Post 302315961 by smatherly on Wednesday 13th of May 2009 04:11:20 PM
Old 05-13-2009
We are not linking to it or should I say our backoffice system does. I had IBM look at it and our software vendor. They only tell me that someone or program according to the logs is deleting the links. No one as of yet can tell me why or how to stop it...
 

9 More Discussions You Might Find Interesting

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

2. UNIX for Dummies Questions & Answers

Difference between /bin, /usr/bin, /sbin ?

Hi All, Can somebody tell me the difference between /bin, /usr/bin, /sbin ? Thanx in advance, Saneesh Joseph (3 Replies)
Discussion started by: saneeshjose
3 Replies

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

4. UNIX for Advanced & Expert Users

#!/usr/bin/env : perl no such file or directory

hi i have some perl scripts with shebang line as (#! /usr/bin/env perl ) instead of actual absolute path of perl ( i know why its that way ) everything works fine from command line , the problem is when i am trying to run those scripts from web ( local web tool ) it throws error as /usr/bin/env :... (6 Replies)
Discussion started by: zedex
6 Replies

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

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

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

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

9. Shell Programming and Scripting

Getting error: /usr/bin/env: ruby: No such file or directory

Hi, I installed ruby using rvm with root user on Linux. Now i m trying the below command as a non root user with sudo privileges. sudo /usr/local/rvm/rubies/ruby-2.2.5/bin/gem install passenger I get the below error: I had even reset the path for both gem as well as ruby as you... (8 Replies)
Discussion started by: mohtashims
8 Replies
DRBDLINKS(8)						      System Manager's Manual						      DRBDLINKS(8)

NAME
drbdlinks - manages links into a shared DRBD partition SYNOPSIS
drbdlinks [OPTION]... [start|stop|auto|status|monitor] DESCRIPTION
drbdlinks is a program which manages links into a DRBD partition which is shared among several machines. It is meant to be used in con- junction with the heartbeat system for simplifying management of high availability clusters. A simple configuration file, "/etc/drb- dlinks.conf", specifies the links. This can be used to manage links for "/etc/apache", "/var/lib/pgsql", and other system files and direc- tories that need to appear as if they are local to the system when running applications after a DRBD shared partition has been mounted. A sample configuration file with annotations is included in the drbdlinks distribution. When run with "start" as the mode, drbdlinks will rename the existing files/directories, and then make symbolic links into the DRBD parti- tion. "stop" does the reverse. The "monitor" and "status" modes will check the file-system against the configuration file and will report "running" (monitor mode) or "OK" (status mode) if all links appear to be up. Otherwise they report "down" or "stopped" (respectively). By default, the rename appends .drbdlinks to the name, but this can be overridden in the configuration file. The "list" mode just show the list of links, with each line showing the link, destination, and a 0/1 flag for bindMount status. This may be useful for user scripts without having to parse the configuration. An init script is included which runs "stop" before heartbeat starts, and after heartbeat stops. This is done to try to ensure that when the shared partition isn't mounted, the links are in their normal state. OPTIONS
drbdlinks has several options, using either short or long variants. -h, --help Print a short help message describing the available options and exit. -c, --config-file=CONFIGFILE Specify an alternate config file. The default config file is /etc/drbdlinks.conf. Alternate config files should have a "drb- dlinks-" prefix, e.g. "drbdlinks-httpd.conf". -s, --suffix=SUFFIX Name to append to the local file-system name when the link is in place. The default is "drbdlinks", which would result in a renamed file like "/etc/httpd.drbdlinks". -v, --verbose Increase verbosity level by 1 for every occurrence of this option. EXAMPLES
Here are a few examples of how drbdlinks can be used. The most straight-forward, and default, method for starting drbdlinks: drbdlinks start To use a suffix different from the default when linking to a file or directory, the -s option can be used, specifying the desired string: drbdlinks -s orig start would rename the file-system name to "name.orig". Increase the verbosity to assist in debugging: drbdlinks -v -v start Use an alternate configuration file, possibly from with a DRBD mounted file-system: drbdlinks -c /shared1/drbdlinks-httpd.conf start This would use the specified configuration file, found on our DRBD device mounted on /shared1. This would allow us to easily keep drb- dlinks configurations tied to a specific set of data on a DRBD disk in an active/active sort of HA configuration. SEE ALSO
DRBD(8), drbdadm(8), drbdsetup(8), heartbeat(8). AUTHOR
drbdlinks was written by Sean Reifschneider <jafo@tummy.com>. This manual page was written by Cyril Bouthors <cyril@bouthors.org>, for the Debian project (but may be used by others). Sean Reifschnei- der modified it for status and monitor arguments, and included it in the base drbdlinks release. Mike Loseke <mike@tummy.com> added the sections on options and examples. September 3, 2008 DRBDLINKS(8)
All times are GMT -4. The time now is 04:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy