- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: need help for a primer ......
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 06:29 AM
08-01-2003 06:29 AM
need help for a primer ......
I have 2 strange thing happened here need help.
(We are on HP_UX 11i)
(1) use "Putty" or "Tera Term" software telnet to out HP box. I can't use vi. When type in 'vi filename', it gives a whole mass screen and all vi editing command not work. But if I use HummingBird's Exceed to connect to HP box, vi works OK.
Any idea ??????
(2) On one of our HP box, I did put $ORACLE_HOME=/path/... and $ORACL_SID=/path in to the .profile (we use ksh), but it seems not work -- after login, echo $ORACLE_HOME, $ORACLE_SID shown nothing. I did ./.profile again, echo still show nothing. But on other 2 HP box this is not happened.
Any idea?
Thank you in advance.
Sincerely
Ger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 06:31 AM
08-01-2003 06:31 AM
Re: need help for a primer ......
echo $TERM
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 06:43 AM
08-01-2003 06:43 AM
Re: need help for a primer ......
echo $TERM
To reset:
export TERM=hp
TERM=hp usually works for 85%.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 06:44 AM
08-01-2003 06:44 AM
Re: need help for a primer ......
I agree with Harry that your first problem is your TERM setting.
Check the term type you use for putty or the other & run
export TERM=vt100 #or whatever the type is
The second problem is that you have to export the setting - do it in one line like:
export ORACLE_HOME=/path/to/oracle/home #or whatever it is.
HTH,
Jeff
Welcome to the best 'NIX there is & to the best forum on the planet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 06:46 AM
08-01-2003 06:46 AM
Re: need help for a primer ......
Check system profile which is read first
/etc/profile
as well as users home.
( ensure you are in correct home dir after login, since a profile can change dirs by looking in /etc/passwd, or simply
cd
pwd
to see what is users home. You may be looking at a different .profile then expected.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 11:52 AM
08-01-2003 11:52 AM
Re: need help for a primer ......
the 1st problem is term. it default to 'hp' which not work with 'tara term' and 'putty' while Exceed default term to 'ddterm'. it works. I tried vt100. It's works also.
The 2nd. I still work on it. Can any body tell me what the difference between "source" a envron. and "run the source file" ? for example: .profile is a file we can "source" it (do this: . ./.profile) but if you change it to be a executible file and run it (do this: ./.profile), what's the difference?
Thanks.
Ger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2003 12:32 PM
08-01-2003 12:32 PM
Re: need help for a primer ......
ORACLE_HOME=/path/to/oralce
export $ORACLE_HOME
or it can be done like:
export ORACLE_HOME=/path/to/oracle
just setting:
$ORACLE_HOME=/path/to/oracle
will NOT work.