Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread will
Apparently that kicks off the code that emulates a native Universe 
environment.  You can put it into your login script.  Or include 
/usr/ibm/uv/bin in $PATH if you want to do the #uv at login.


Brutzman, Bill wrote:

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
	sh: uv:  not found. 
  #


3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Dave Davis
For #2 to work, the current directory must either be in your $PATH, or
/usr/ibm/uv/bin must be in your $PATH.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill
Sent: Friday, April 13, 2007 1:01 PM
To: '[EMAIL PROTECTED]'
Subject: [U2] Launching UV via HP-Ux

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Bob Woodward
After you change directory, try doing a ./uv to start Universe.  The
./ is a safety feature in *nix systems that says Yes, I'm sure.
Current directory, this program.

BobW
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill
Sent: Friday, April 13, 2007 10:01 AM
To: '[EMAIL PROTECTED]'
Subject: [U2] Launching UV via HP-Ux

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Bob Wyatt
Instead of the uv in the second example, do ./uv...

This is a standard part of built-in UNIX security...
Also, the exec shields the users from the UNIX shell (or protects the shell
from the users, depending on your point of view)... They run UniVerse, and
they are immediately logged out...

Regards, 

Bob Wyatt 

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread Jeff Schasny
By default on most *nix's  your current directory (.) is not set up as 
part of the PATH if you are root, which you appear to be. The PATH 
environment variable defines where the OS will look for commands. You 
can check this by doing:

# echo $PATH

I generally add a line to /etc/profile like this:

PATH = $PATH:/usr/ibm/uv/bin

which lets me just type 'uv' anywhere I please


, Bill wrote:
 1.  Why do I have to do the command...

   #exec /usr/ibm/uv/bin/uv

 2.  Why does it not work when doing...

   #cd /usr/ibm/uv/bin
   #uv
   sh: uv:  not found. 
   #

 3.  Is there a batch command that will work?

 Suggestions would be appreciated.

 --Bill
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/

   

-- 

Jeff Schasny - Denver, Co, USA
jschasnyATgmailDotcom

---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread Mike Husmann
Bill,

On Fri, April 13, 2007 12:01 pm, Brutzman, Bill wrote:
 1.  Why do I have to do the command...

   #exec /usr/ibm/uv/bin/uv

 2.  Why does it not work when doing...

   #cd /usr/ibm/uv/bin
   #uv
   sh: uv:  not found.
   #

  If the /usr/ibn/uv/bin directory isn't in your path, you'll need to use

   #./uv
 instead of
   #uv
To indicate 'current directory'.

Or, you can 'export PATH=$PATH:/usr/ibm/uv/bin'  and then run your command.

My $.02

Mike
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Jeff Fitzgerald
When you enter a command at the UNIX prompt the system searchs for the
command in the directories specified in the PATH environment variable.  If
it doesn't find the command in any of the locations in PATH it issues the
not found message.  The system doesn't include the local directory in the
search list unless it is specified in PATH, so just being positioned in a
directory doesn't mean that you can execute programs in that directory just
by typing their name.

Add the uv/bin directory to the PATH variable

PATH=$PATH:/usr/ibm/uv/bin

You can change the .profile script in / to make the PATH include
uv/bin whenever root logs in.


Try this:

cd /usr/ibm/uv/bin

./uv

But you will get an error because the bin directory doesn't have a
VOC file and isn't a UniVerse account.

Instead you could do this:

cd /usr/ibm/uv

bin/uv

And you'd get to the UniVerse prompt in the uv account.

So, basically you need to cd to a directory that is also a UniVerse
account and you need to invoke uv either by entering uv and having the
uv/bin directory included in PATH or by entering some version of the
explicit absolute or relative pathname to the uv executable.

Hope this helps!

Jeff Fitzgerald
Fitzgerald  Long, Inc.
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill
Sent: Friday, April 13, 2007 11:59 AM
To: '[EMAIL PROTECTED]'
Subject: [U2] Launching UV via HP-Ux

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread Allen Egerton

Brutzman, Bill wrote:

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
	sh: uv:  not found. 
  #


3.  Is there a batch command that will work?

Suggestions would be appreciated.


1 - that's a fullpath reference to the executable.

2 - 'cause your machine isn't searching the currently attached directory.


suggestion 1 - after cd'ing to /usr/ibm/uv/bin, enter ./uv.

suggestion 2 - modify your search rules to either include 
/usr/ibm/uv/bin or to include ./


--
Allen Egerton
aegerton at pobox dot com
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Gahan, Mick
Bill,

I'm thinking that the current directory is not in your path.

Try

./uv

And see what happens.

Mick

Mick Gahan
Director, MIS
Metropolitan Community College
Omaha, NE 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill
Sent: Friday, April 13, 2007 12:01 PM
To: '[EMAIL PROTECTED]'
Subject: [U2] Launching UV via HP-Ux

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread bradley . schrag
 2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found.
#

I'm not real familiar with HP-UX, but try ./uv instead. Or you could add
. to your PATH statement.

Brad Schrag
InfoLease Development
651-205-3074
RiverBank / EP-MN-BGF

The answer to life, the universe and everything


--
Electronic Privacy Notice. This e-mail, and any attachments, contains 
information that is, or may be, covered by electronic communications privacy 
laws, and is also confidential and proprietary in nature. If you are not the 
intended recipient, please be advised that you are legally prohibited from 
retaining, using, copying, distributing, or otherwise disclosing this 
information in any manner. Instead, please reply to the sender that you have 
received this communication in error, and then immediately delete it. Thank you 
in advance for your cooperation.
==
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


{Blocked Content} RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread colin.alfke
Warning: This message has had one or more attachments removed
Warning: (not named).
Warning: Please read the AngelicHost-Attachment-Warning.txt attachment(s)
for more information.

Looking like you're logging in as root do .uv - it's some unix permission
thing.

hth
Colin Alfke
Calgary (Currently LA)



From: Brutzman, Bill

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found.
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
This is a message from the MailScanner E-Mail Virus Protection Service
--
The original e-mail attachment winmail.dat
was believed to be infected by a virus and has been replaced by this warning
message.

If you wish to receive a copy of the *infected* attachment, please
e-mail helpdesk and include the whole of this message
in your request. Alternatively, you can call them, with
the contents of this message to hand when you call.

At Fri Apr 13 11:50:44 2007 the virus scanner said:
   Could not parse Outlook Rich Text attachment

Note to Help Desk: Look on the AngelicHost MailScanner in
/home/virtual/site2/fst/var/spool/mail.quarantine/20070413 (message
l3DIofMf006669).
--
Postmaster
MailScanner thanks transtec Computers for their support
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Rod Hills
I have put cd universe_account ; exec /usr/ibm/uv/bin/uv in all my
user .profile files, so that when they login they are put directly into
uniVerse.

The reason is that I have a 180 users logging in, and without the exec
it would leave a posix-shell process running that isn't needed for all
180 users. 

Also, if uniVerse aborts, the user is merely kicked off the system and
not left at a unix shell prompt (which would be unfamiliar territory for
my users).

My 2 cents

Rod Hills

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill
Sent: Friday, April 13, 2007 10:01 AM
To: '[EMAIL PROTECTED]'
Subject: [U2] Launching UV via HP-Ux

1.  Why do I have to do the command...

#exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

#cd /usr/ibm/uv/bin
#uv
sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
___

This e-mail and any attachments are for the sole use of the 
intended recipient(s) and may contain privileged and 
confidential information. Any unauthorized review, use, 
disclosure or distribution is strictly prohibited. If you are not 
the intended recipient(s), please contact the sender by reply 
e-mail and destroy all copies of the original message.
Thank you.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Launching UV via HP-Ux

2007-04-13 Thread Charlie Rubeor
It looks like the directory /usr/ibm/uv/bin is not in your path.  If you 
include that directory in your path, it should work.

--
Charlie Rubeor
Senior Database Administrator
Wiremold/Legrand
60 Woodlawn Street
West Hartford, CT  06110
Tel: 860-233-6251 x3498
Fax: 860-523-3690
Email: [EMAIL PROTECTED]
--




Brutzman, Bill [EMAIL PROTECTED] 
Sent by: [EMAIL PROTECTED]
04/13/2007 01:01 PM
Please respond to
[EMAIL PROTECTED]


To
'[EMAIL PROTECTED]' [EMAIL PROTECTED]
cc

Subject
[U2] Launching UV via HP-Ux






1.  Why do I have to do the command...

 #exec /usr/ibm/uv/bin/uv

2.  Why does it not work when doing...

 #cd /usr/ibm/uv/bin
 #uv
 sh: uv:  not found. 
  #

3.  Is there a batch command that will work?

Suggestions would be appreciated.

--Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/