Executing idebug in AIX


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Executing idebug in AIX
# 1  
Old 08-03-2006
Executing idebug in AIX

There is an interactive debugger on our AIX box. According to the IBM provided doc, if you type the command

IDEBUG

The debugger will start. When I do this I get

ksh: idebug: 0403-006 Execute permission denied

How can I tell what the permissions on that commmand are??

I have located the software directories for idebug and have modifiied them so the permissions should not be an issue. Should I be looking somewhere else?

Thanks in advance
# 2  
Old 08-03-2006
Where is the file? If AIX has whereis, you can do 'whereis idebug' to find it. Once that's done,'ls -l /path/to/idebug' to see what it's permissions are.
# 3  
Old 08-04-2006
When I issue "whereis idebug"

I get:

idebug:

That's it. I did actually find it's directory my manually navigating, but I'm curious if anyone knows what the 'idebug:' means.
# 4  
Old 08-04-2006
Code:
find / -name "idebug" -print

if ur not root, then u will probably get a bunch of permission denied msgs.
this seems kind of weird, when u execute idebug, you dont need to provide the full path (do you?) which means that its in your $PATH. the whereis command searches only directories in your $PATH. so... idebug *should* show up with it. post your .profile.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Samba 3.6 on AIX 7.1 - Windows 10 Access to AIX file shares using Active Directory authentication

I am running AIX 7.1 and currently we have samba 3.6.25 installed on the server. As it stands some AIX folders are shared that can be accessed by certain Windows users. The problem is that since Windows 10 the guest feature no longer works so users have to manually type in their Windows login/pwd... (14 Replies)
Discussion started by: linuxsnake
14 Replies

2. AIX

Will it affect my AIX LPAR security, when i set up email alerts on AIX server.

Hello, I've set up email alerts on AIX Servers. so that i can get email notifications (via mail relay server) when ever there is abnormal behavior. for example 1) my script monitors CPU/disk/memory etc... when it reaches high water ark, it will send an email alert. 2) disk usage alerts 3)... (5 Replies)
Discussion started by: System Admin 77
5 Replies

3. AIX

Nim on AIX 7.1 used to migrate AIX 5.3 to AIX 6.1...is possible?

Using nimadm: nimadm -j nimadmvg -c sap024 -s spot_6100 -l lpp_6100 -d "hdisk1" -Y Initializing the NIM master. Initializing NIM client sap024. 0505-205 nimadm: The level of bos.alt_disk_install.rte installed in SPOT spot_6100 (6.1.3.4) does not match the NIM master's level (7.1.1.2).... (2 Replies)
Discussion started by: sciacca75
2 Replies

4. AIX

Error while executing command in aix box

Hi Folks I get the below error in my aix box. Im not sure if this is an AIX issue or a TWS issue. Please advice me cbspsdb01:/opt/TWS/bin # ./conman status exec(): 0509-036 Cannot load program ./conman because of the following errors: 0509-150 Dependent module... (6 Replies)
Discussion started by: newtoaixos
6 Replies

5. Shell Programming and Scripting

Error while executing disk space script in AIX

#!/bin/ksh for AIX used=0 mount=${1:-"/mountpoint"} threshold=${2:-80} #message="hello" #SUBJECT="Disk Space Alert" #EMAIL="xyz@abcinc.com" used=`df -k $mount | grep % | awk '{print $5}' | sed 's/%//g'` #echo "Free Space available under \"$mount\" is `expr 100 - $used`%.\n">$message ... (6 Replies)
Discussion started by: rajeshw61
6 Replies

6. AIX

How to upgrade AIX Firmware & TL Maintenance Level in AIX

Steps to upgrade AIX TL ( technology Level ) / Maintenance Level in AIX ( including Firmware HMC VIOS ) This article or post covers upgrades for - Hardware Management Console ( HMC ) - Firmware ( also known as microcode ) - VIO ( Virtual I/O Server = PowerVM ) - AIX Version, Technology... (2 Replies)
Discussion started by: filosophizer
2 Replies

7. Shell Programming and Scripting

Creating and Executing a script of aliases in AIX

hi, I am trying to create a script in AIX (5.3 I think), then run it. here's what I have: /home/me $ vi first.aliases ... alias cdblah='cd /blah' alias cdho='cd /ho' alias ssr='sudo su - random' ~ ...end of first.aliases /home/me $ ./first.aliases /home/me $ ssr ksh: ssr: not found.... (2 Replies)
Discussion started by: heetertc
2 Replies

8. UNIX for Dummies Questions & Answers

Using IDEBUG on AIX 5.2

I am trying to run the interactive debugger locally on our new unix machine. When I type idebug I get 'execute permission denied'. When I look at idebug in /usr/idebug it has all file permissions turned on. I have tried executing using root with the same results. Anyone familar with... (0 Replies)
Discussion started by: jbrubaker
0 Replies

9. UNIX for Dummies Questions & Answers

[AIX] executing script

Hello! I need to run a script from the root user as the other user. I know that I can issue the following command: su - user_name -c "/path_to_script/script_name.sh" But there is a small problem with the above command. I must export a environment variable before I run the script. In the... (1 Reply)
Discussion started by: piooooter
1 Replies
Login or Register to Ask a Question