HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - How to install oracle Forms 6 i
 
Operating System - HP-UX
        1840141
        Members
    
    
        2352
        Online
    
    
        110161
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              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
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            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
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
Topic Options
			
				
					
	
			
		
	- 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
 
12-05-2000 01:08 AM
12-05-2000 01:08 AM
			
				
					
						
							How to install oracle Forms 6 i
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi friends,
When i try to install oracle Forms 6 i on A180 server it hangs, I think it is a problem with Terminal settings . Oracle install should be run from vt220 ot vt100 but my HP 9000 A180 server gives a term called "dtterm" only. Can i change this TERM varible to some thing else (vt100 or vt220) ?. I tried keeping the following line in .profile and .dtprofile but it did'nt work.
TERM=vt220
export TERM
ORACLE_TERM=vt220
export ORACLE_TERM
Can any body help ?
Thanks in advance
Kapil Raj
					
				
			
			
				
		
		
	
	
	
When i try to install oracle Forms 6 i on A180 server it hangs, I think it is a problem with Terminal settings . Oracle install should be run from vt220 ot vt100 but my HP 9000 A180 server gives a term called "dtterm" only. Can i change this TERM varible to some thing else (vt100 or vt220) ?. I tried keeping the following line in .profile and .dtprofile but it did'nt work.
TERM=vt220
export TERM
ORACLE_TERM=vt220
export ORACLE_TERM
Can any body help ?
Thanks in advance
Kapil Raj
	Nothing is impossible
			
			
				
			
			
			
			
			
			
		
		2 REPLIES 2
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-05-2000 01:59 AM
12-05-2000 01:59 AM
			
				
					
						
							Re: How to install oracle Forms 6 i
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi there.
I attached a few line for the oracle user.
First the .profile :
# @(#) $Revision: 66.1.1.1 $
# Default user .profile file (/bin/sh initialization).
# Set up the terminal:
TERM=vt220
export TERM
tset -s -Q -m :vt220 > /dev/null
stty erase "^?" kill "^U" intr "^C" eof "^D"
stty hupcl -ixon -ixoff
tabs
# Set up the search paths:
PATH=$PATH:.:/usr/local/bin:
# Set up the shell environment:
set -u
trap "echo 'logout'" 0
# Set up the shell variables:
EDITOR=vi
export EDITOR
ORAENV_ASK=NO
export ORAENV_ASK
exec /usr/bin/ksh
Now for the .kshrc :
unset HISTFILE
export ORAENV_ASK=YES
export ORACLE_SID=DE01
export ORACLE_HOME=blabla
export PS1=`hostname`','`whoami`',${ORACLE_SID:-"none"},$PWD,!
> '
export EDITOR=vi
export TSMTERM=vt220
stty intr "^c" kill "^-" stop "^-" start "^-" erase "^?"
. oraenv
This work on my machine since 1994.
rgds
Alexander M. Ermes
					
				
			
			
				
		
		
	
	
	
I attached a few line for the oracle user.
First the .profile :
# @(#) $Revision: 66.1.1.1 $
# Default user .profile file (/bin/sh initialization).
# Set up the terminal:
TERM=vt220
export TERM
tset -s -Q -m :vt220 > /dev/null
stty erase "^?" kill "^U" intr "^C" eof "^D"
stty hupcl -ixon -ixoff
tabs
# Set up the search paths:
PATH=$PATH:.:/usr/local/bin:
# Set up the shell environment:
set -u
trap "echo 'logout'" 0
# Set up the shell variables:
EDITOR=vi
export EDITOR
ORAENV_ASK=NO
export ORAENV_ASK
exec /usr/bin/ksh
Now for the .kshrc :
unset HISTFILE
export ORAENV_ASK=YES
export ORACLE_SID=DE01
export ORACLE_HOME=blabla
export PS1=`hostname`','`whoami`',${ORACLE_SID:-"none"},$PWD,!
> '
export EDITOR=vi
export TSMTERM=vt220
stty intr "^c" kill "^-" stop "^-" start "^-" erase "^?"
. oraenv
This work on my machine since 1994.
rgds
Alexander M. Ermes
	.. and all these memories are going to vanish like tears in the rain! final words from Rutger Hauer in "Blade Runner"
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
12-11-2000 04:16 AM
12-11-2000 04:16 AM
			
				
					
						
							Re: How to install oracle Forms 6 i
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						hi alex,
Thanks for the efort. But unfortunately it was a problem with Patches. I installed those and the system started behaving properly.
Thanks once again
Kapil Raj
					
				
			
			
				
		
		
	
	
	
Thanks for the efort. But unfortunately it was a problem with Patches. I installed those and the system started behaving properly.
Thanks once again
Kapil Raj
	Nothing is impossible
			
			
				
			
			
			
			
			
			
		The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP