The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 01-30-2008
Smiling Dragon's Avatar
Smiling Dragon Smiling Dragon is offline
Disorganised User
 

Join Date: Nov 2007
Location: New Zealand
Posts: 742
Code:
-rwxr-xr-x   1 infodba     78880 Jul 11  2006 /export/home/data/SoftwareSource/TcEng2005SR1/install/jre/bin/java
This suggests you don't have any permissions issues, but either the group or owner info is missing (ie, there aren't enough fields in that ls output). Is infodba the file owner or the group the file belongs to?

Do you get both the owner and group displayed if you do:
Code:
ls -ld /export/home/data
Or
Code:
ls -ld /export/home/data/SoftwareSource/TcEng2005SR1
Or
Code:
ls -ld /export/home/data/SoftwareSource/TcEng2005SR1/install
Code:
/export/home/data/SoftwareSource/TcEng2005SR1/install/jre/bin/java:     ELF 32-bit MSB executable SPARC Version 1, dynamically linked, stripped
This is a SPARC compiled binary, are you running it on a SPARC processor?

Next question, what happens if you run (as the same user that would run the installer):
Code:
/export/home/data/SoftwareSource/TcEng2005SR1/install/jre/bin/java -version

Last edited by Smiling Dragon; 01-30-2008 at 03:12 PM.. Reason: Fixed a 'code' tag that was making it hard to read
Reply With Quote