.kshrc is not executing


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting .kshrc is not executing
# 8  
Old 08-18-2009
First a moderative hint: you should open a separate thread for different problems, as this will it make easier to search for a specific problem for the future user with a similar (or even the same) problem. Thanks for your consideration.

From what you describe your terminal type is definitely at fault. Either your putty is not configured to act like a vt100 terminal (don't know putty all too well, being blessed with a Unix system to work on) or your termcap database entries for the vt100 are crap. As you said the system is a freshly installed AIX system i suppose the former to be the case.

To make sure the usual terminal definitions are correctly installed issue the following command. Output should be more or less the same as mine (taken from an AIX 5.3 system at ML 09):

Code:
# lslpp -l | grep -i term 
  X11.apps.aixterm           5.3.8.0  COMMITTED  AIXwindows aixterm Application
  X11.apps.xterm             5.3.9.0  COMMITTED  AIXwindows xterm Application
  X11.msg.en_US.apps.aixterm
                             5.3.0.0  COMMITTED  AIXwindows aixterm Messages -
  bos.terminfo.rte           5.3.7.0  COMMITTED  Run-time Environment for AIX
                                                 Terminals 
  devices.vdevice.hvterm-protocol.rte
                            5.3.0.50  COMMITTED  Virtual Terminal Physical
  devices.vdevice.hvterm1.rte
                             5.3.9.0  COMMITTED  Virtual Terminal Devices
                             5.3.9.0  COMMITTED  Virtual Terminal Devices
  devices.vdevice.hvterm1.rte
                             5.3.9.0  COMMITTED  Virtual Terminal Devices
                            5.3.0.50  COMMITTED  Virtual Terminal Devices 
  bos.terminfo.ansi.data     5.3.0.0  COMMITTED  Amer National Stds Institute
                                                 Terminal Defs
  bos.terminfo.com.data      5.3.0.0  COMMITTED  Common Terminal Definitions
  bos.terminfo.dec.data      5.3.0.0  COMMITTED  Digital Equipment Corp.
                                                 Terminal Definitions
  bos.terminfo.ibm.data      5.3.0.0  COMMITTED  IBM Terminal Definitions
  bos.terminfo.pc.data       5.3.9.0  COMMITTED  Personal Computer Terminal
  bos.terminfo.print.data    5.3.0.0  COMMITTED  Generic Line Printer Terminal
  bos.terminfo.televideo.data
                             5.3.0.0  COMMITTED  Televideo Terminal Definitions
  bos.terminfo.wyse.data     5.3.0.0  COMMITTED  Wyse Terminal Definitions

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Kshrc custom prompt will not work

So Yesterday I switched from Solus Linux to Fedora Linux 30, but I forgot to backup some of my dotfiles including kshrc. I am fairly new to Korn shell and do not know it well, but through memory I was able to at least get this. I did use code from several different source to recreate it. The only... (13 Replies)
Discussion started by: zoomer
13 Replies

2. Shell Programming and Scripting

ROOT is not executing

I have this script #!/bin/ksh #set -x if then while do if then date >> /export/home/Tool/checktmp.log echo "`ls -lrt / | grep tmp`" >> /export/home/Tool/checktmp.log echo "`ls -lrt / | grep tmp`" | mailx -s "/tmp permission has changed" -r a.com b.com c.com d.com ... (2 Replies)
Discussion started by: nikhil jain
2 Replies

3. Shell Programming and Scripting

Script not executing

Hi, am facing some problem while inserting a record into a script Please find script below. `sqlplus -s asdf/asdf123 <<eof! set feedback off; set heading off; set verify off; insert into... (3 Replies)
Discussion started by: senkerth
3 Replies

4. Programming

No error but not executing

Hi friends When I compile thic program by gcc filename, it shows no error. But after that if I execute the program gets stuck. Can any one find out. #include<stdio.h> #include<sys/types.h> #include<sys/mman.h> #include<stdlib.h> #include<fcntl.h> #include<sys/stat.h>... (6 Replies)
Discussion started by: gokult
6 Replies

5. Programming

No error but not executing

Hi friends NO errors, but when I try to execute the program it gets struck. Can any one find it out. #include<stdio.h> #include<sys/types.h> #include<sys/mman.h> #include<stdlib.h> #include<fcntl.h> #include<sys/stat.h> #include<unistd.h> #include<signal.h> #include<string.h> ... (0 Replies)
Discussion started by: gokult
0 Replies

6. UNIX for Dummies Questions & Answers

cronjob not executing...

Hi All. I created a cronjob entry and for some reason it is not executing. The script that it is suppose to call sends me an email when it is done. When I run the job manually it executes fine. This how my cron entry looks: 00 14 * * * /home/oracle/scripts/bin/free_space/free_space.sh 2>$1... (5 Replies)
Discussion started by: shaseeb
5 Replies

7. Shell Programming and Scripting

korn shell .kshrc in sunos

Hi, My login shell is c shell I have a line in .cshrc like setenv a 1000 I have a line in .profile like ENV=$HOME/.kshrc export ENV and in my .kshrc a=10 export a I wrote one korn script #!/bin/ksh echo $a (3 Replies)
Discussion started by: shahnazurs
3 Replies

8. Shell Programming and Scripting

.profile not reading .kshrc

Can anyone tell me why .profile would not be reading my .kshrc file? O/S is SCO 5.06? I've placed echo's before & after setting ENV and nothing ... help? Thanks! Here's .profile ================================================== : # DoubleVision Pro's digiboard call during... (7 Replies)
Discussion started by: gseyforth
7 Replies

9. Shell Programming and Scripting

kshrc

An odd problem using .kshrc, if I run with this in my home login directory it works fine other than if I use 'man', where each word of the manual entry is on a seperate line ?. I'm using AIX 5.3 (it worked fine on 5.2). Anyone seen this before ? (3 Replies)
Discussion started by: gefa
3 Replies

10. UNIX for Dummies Questions & Answers

not able to execute .profile /.kshrc

Hi, I m new to Solaris CDE...earlier i was using Windows. Here is my problem.. i know that whatever the initial settings we need to execute,we can place them in .profile file. in my home dir (/home/venki),i have following files for that. .profile .profile.user .kshrc .kshrc.user ... (2 Replies)
Discussion started by: Venky
2 Replies
Login or Register to Ask a Question