![]() |
|
#1
|
|||
|
|||
|
!: 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 |
|
#2
|
|||
|
|||
|
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. |
|
#3
|
||||
|
||||
|
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 |
|
#4
|
|||
|
|||
|
Quote:
Thanks Vikz |
|
#5
|
||||
|
||||
|
You can try and to submit a bug report, if you want!
__________________
Vlad |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|