wbyeh

Greenhorn
+ Follow
since Aug 22, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by wbyeh

Because Linux has no 'uncompress' utility.
The writer has a pattern of the uncompressing algorithm.
So we do a trap for the 'uncompress' command of weblogic_linux600.bin
If you use 'vi' to see the 'weblogic_linux600.bin' binary code from
'InstallAnywhere'.
For my 2 day of hard test,
we need to make a fake script to instead of 'uncompress' and put it
in the /usr/bin; chmod 755.
Because RedHat Linux has no default '/bin/sh',
it has '/bin/bash' instead.
1. Edit the following script and save it as 'uncompress'.
#!/bin/bash
/bin/gzip -df $@
2. change its mode to executable.
$ chmod +x ./uncompress
3. then copy the 'uncompress' to '/bin/uncompress' using root privilege.
$ su
#ln -s /bin/bash /bin/sh
# cp ./uncompress /bin/uncompress
And then test the
'sh ./weblogic600sp2_linux.bin -i console'
Good Luck!
23 years ago