pasted-from-clipboard.png
Hello,
I found 2 apparently similar options, but both get stuck pretty much in the same point.
Here, I use this one: HOW DO YOU CONVERT IPK FILE TO DEB OR VICE-VERSE?
from Telnet
Code
apt-get update
apt-get install tar binutils
mkdir /tmp/convert-ipk
cd /tmp/convert-ipk
mkdir DEBIAN
upload the .ipk file via FTP to your dreambox on /tmp/convert-ipk,
then go to /tmp/convert-ipk from telnet and type
Code
ar -x *.ipk
[ -e debian-binary ] && rm debian-binary
rm *.ipk
tar vxzf control.tar.gz -C ./
tar vxzf data.tar.gz -C ./
rm *.tar.gz
mv ./control ./DEBIAN
mv ./pre* ./*post* ./DEBIAN
cd /tmp
The second option I found would be: https://www.i-have-a-dreambox.…ow-to-convert-ipk-to-deb/
apt-get update
apt-get install tar binutils
mkdir /tmp/convert-ipk
upload the .ipk via FTP to your drambox to /tmp/convert-ipk, then navigate to /tmp/convert-ipk on your box
cd /tmp/convert-ipk
ar -x name.ipk
[ -e debian-binary ] && rm debian-binary
rm *.ipk
tar vxzf control.tar.gz -C ./
tar vxzf data.tar.gz -C ./
rm *.tar.gz
mkdir DEBIAN
mv ./control ./DEBIAN
mv ./pre* ./*post* ./DEBIAN
check and customize the control file (dependences, architecture etc.)
then move back to the /tmp folder and create the .deb, the name must be given in the command line. It will not be generated from the control file automaticly!
cd /tmp
dpkg -b convert-ipk/ enigma2-plugin-extensions-name_version_architecture.deb
Now the question is WHAT DO I NOT DO OR DO WRONG?
Again to be noted: that the first option is for DM One and the second one for DM900, none for my DM 525 / DM 520.
Thank you!