Flexera Software Community  

Go Back   Flexera Software Community > Products > InstallAnywhere > InstallAnywhere 2009
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-14-2009, 07:30 AM
Vikram Gosain Vikram Gosain is offline
Power User (30+ Posts)
 
Join Date: Mar 2009
Location: Bangalore,Karnataka,India
Posts: 55
!: not found

When I am trying to execute my solaris installer I get this message...
!: not found

The installer executes fine and I am successfully able to install my solaris installer,but why this message.?

Thanks
-Vikz
Reply With Quote
  #2  
Old 11-06-2009, 05:06 PM
senmun senmun is offline
New User (0 Posts)
 
Join Date: Sep 2007
Posts: 3
I am also getting the same message on Solaris. Any idea?

Could it be an issue with creating the package using JDK 1.6? Our previous release with JDK 1.5 do not have this issue.

Preparing to install...
Checking for POSIX df.
Found POSIX df.
Checking tail options...
Using tail -n 1.
True location of the self extractor: /space/966/setup.bin
Creating installer data directory: /tmp/install.dir.20377
Creating installer data directory: /tmp/install.dir.20377/InstallerData
Gathering free-space information...
Space needed to complete the self-extraction: 3524306 blocks
setup.bin: !: not found
Available space: 8576736 blocks
Available blocks: 8576736 Needed blocks: 3524306 (block = 512 bytes)
Computed number of blocks to extract: 2136
Extracting the JRE from the installer archive...
Extracting JRE from setup.bin to /tmp/install.dir.20377/Solaris/resource/jre_padded ...
Extracting done, exit code = 0
Extracting JRE from /tmp/install.dir.20377/Solaris/resource/jre_padded to /tmp/install.dir.20377/Solaris/resource/vm.tar.Z ...
Extracting done, exit code = 0
Unpacking the JRE...

Last edited by senmun : 11-06-2009 at 05:24 PM.
Reply With Quote
  #3  
Old 11-07-2009, 03:13 AM
pv7721's Avatar
pv7721 pv7721 is offline
Uber User (1000+ Posts)
 
Join Date: Mar 2006
Location: Paris, France
Posts: 1,090
Exclamation

This occurs in the self-extracting phase before installation and it's somewhere in this code taken from the Unix self-extractor:

Code:
[ $LAX_DEBUG ] && echo "Space needed to complete the self-extraction: $NEEDED_SPACE blocks"

sePwd=`pwd`
cd "$INSTBASE"

AVAIL_SPACE=`$DF_CMD . 2>/dev/null | awk "{print \\\$$DF_AVAIL_COL}" | tail $TAILN1ARG`

isValidNumber()
{
	awk 'BEGIN { 
		if ( ARGV[1] ~ /^[0-9]+$/ ) {
			exit(0);
		} else {
			exit(1); 
		}
	     }' "$1"

	return $?
}

if ! isValidNumber "$AVAIL_SPACE"; then
	echo "DF output not POSIX standard" 

	AVAIL_SPACE=`$DF_CMD . 2>/dev/null | awk -F: '{ print $2 }' | awk '{ print $1 }' | tail $TAILN1ARG`

	if ! isValidNumber "$AVAIL_SPACE"; then
		unset $AVAIL_SPACE
	fi 
fi

[ $LAX_DEBUG ] && echo "Available space: $AVAIL_SPACE blocks"
__________________
Vlad
Reply With Quote
  #4  
Old 11-09-2009, 01:23 AM
Vikram Gosain Vikram Gosain is offline
Power User (30+ Posts)
 
Join Date: Mar 2009
Location: Bangalore,Karnataka,India
Posts: 55
Quote:
Originally Posted by pv7721 View Post
This occurs in the self-extracting phase before installation and it's somewhere in this code taken from the Unix self-extractor:

Code:
[ $LAX_DEBUG ] && echo "Space needed to complete the self-extraction: $NEEDED_SPACE blocks"

sePwd=`pwd`
cd "$INSTBASE"

AVAIL_SPACE=`$DF_CMD . 2>/dev/null | awk "{print \\\$$DF_AVAIL_COL}" | tail $TAILN1ARG`

isValidNumber()
{
	awk 'BEGIN { 
		if ( ARGV[1] ~ /^[0-9]+$/ ) {
			exit(0);
		} else {
			exit(1); 
		}
	     }' "$1"

	return $?
}

if ! isValidNumber "$AVAIL_SPACE"; then
	echo "DF output not POSIX standard" 

	AVAIL_SPACE=`$DF_CMD . 2>/dev/null | awk -F: '{ print $2 }' | awk '{ print $1 }' | tail $TAILN1ARG`

	if ! isValidNumber "$AVAIL_SPACE"; then
		unset $AVAIL_SPACE
	fi 
fi

[ $LAX_DEBUG ] && echo "Available space: $AVAIL_SPACE blocks"
I believe its the problem of the shell.The error message appears when the installer is executed in bash and sh, it does not come up in ksh.

Thanks
Vikz
Reply With Quote
  #5  
Old 11-09-2009, 05:45 AM
pv7721's Avatar
pv7721 pv7721 is offline
Uber User (1000+ Posts)
 
Join Date: Mar 2006
Location: Paris, France
Posts: 1,090
Exclamation

You can try and to submit a bug report, if you want!
__________________
Vlad
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 09:34 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2009 Flexera Software Inc. All rights reserved.