Hi,
when running the install script from getFlash11.tcz (from tinycorelinux/4.x/x86/tcz/) I always get this error after download:
tc@box:~$ getflash11.sh
Downloading source...
Done.
Copying files and setting permissions...
tar: invalid gzip magic
There has been an error in this function. Exiting.
tc@box:~$
I looked inside the downloaded .tar.gz file and also inside getFlash11.tcz and found out, that the downloaded file is not a .tar.gz file, but a .tar file.
So I changed the usr/local/bin/getflash11.sh script inside getFlash11.tcz (line 88) to:
# *** sometimes downloaded *.tar.gz is actually *.tar -- try BOTH formats ***
busybox tar -zxf "$SRCNAME" libflashplayer.so -C "$PKG""$SHAREDIR" \
|| mv "$SRCNAME" fp11_linux.tar && busybox tar -xf fp11_linux.tar libflashplayer.so -C "$PKG""$SHAREDIR" \
|| exit_red
This updated version is working fine for me. Please update your extension getFlash11.tcz to prevent other users from facing the same error.
Thanks.