|
Hi.
This is a usual problem with instalers that compress the binary file insite the SH file.
tail sintax have been changed (a while ago, dont ask me when), so,
$ tail +N
do not work anymore.
Try to open the SH file with you prefered text editor end change
tail +NNN
for
tail -n NNN
It brings another problem sometimes. The file have a MD5 verification, if you change the file you will have a different MD5 sum, so, you will have to regenerate the MD5 and replace the MD5="????????" inside the file.
Usualy i just ignore the MD5 verification commenting the lines.
Good luck!
[]'s, FMC!
|