OESF Portables Forum

General Forums => General Discussion => Topic started by: Ling on August 09, 2004, 08:13:47 pm

Title: I've fallen and I can't get up
Post by: Ling on August 09, 2004, 08:13:47 pm
It seems that immature, irrelevant subjects get the most traffic and responses, so I thought I would try it.

I am trying to fix the emasculated Kino2 that comes with Cacko and I need to extract some binaries from the Kino2 ipkg. I don't know if it is gz or ar format. I tried extracting it using 7zip on my windoze machine and with gunzip and ar -x on my Linux box. No joy. I would appreciate some help.
Title: I've fallen and I can't get up
Post by: zxerx on August 10, 2004, 12:59:33 am
Use the file command to find out whether it is a gz or ar package.

# ls kino2_0.21_arm.ipk
kino2_0.21_arm.ipk
# file kino2_0.21_arm.ipk
kino2_0.21_arm.ipk: gzip compressed data, was "kino2_0.21_arm.ipk", from Unix, max compression
# mkdir kino2
# cd kino2/
# tar zxvf ../kino2_0.21_arm.ipk
./debian-binary
./data.tar.gz
./control.tar.gz
# tar zxvf data.tar.gz
./
./opt/
./opt/QtPalmtop/
./opt/QtPalmtop/bin/
./opt/QtPalmtop/bin/kino2
./opt/QtPalmtop/apps/
./opt/QtPalmtop/apps/Multimedia/
./opt/QtPalmtop/apps/Multimedia/kino2.desktop
./opt/QtPalmtop/i18n/
./opt/QtPalmtop/i18n/ru/
./opt/QtPalmtop/i18n/ru/kino2.qm
./opt/QtPalmtop/pics144/
./opt/QtPalmtop/pics144/kino2/
./opt/QtPalmtop/pics144/kino2/tv.png
./usr/
./usr/local/
./usr/local/bin/
./usr/local/bin/mplayer
./usr/local/etc/
./usr/local/etc/mplayer/
./usr/local/etc/mplayer/codecs.conf
./usr/local/lib/
./usr/local/lib/mplayer/
./usr/local/lib/mplayer/vidix/
./usr/local/lib/mplayer/vidix/w100_vid.so
#
Title: I've fallen and I can't get up
Post by: Ling on August 10, 2004, 12:31:11 pm
That worked great! Thanks for taking the time to post such a detailed response.