ErwinB wrote: > First of, thanks for responding. > > First one: > sudo dpkg -i --ignore-depends=libgcc1:i386,libc6:armhf > ./libc6_2.28-10_i386.deb > (Reading database ... 89033 files and directories currently installed.) > Preparing to unpack ./libc6_2.28-10_i386.deb ... > Unpacking libc6:i386 (2.28-10) over (2.28-10) ... > dpkg: error processing package libc6:i386 (--install): > package libc6:i386 2.28-10 cannot be configured because libc6:armhf is > at a different version (2.28-10+rpi1) > Processing triggers for libc-bin (2.28-10+rpi1) ... > Errors were encountered while processing: > libc6:i386 > > Second one: > sudo dpkg -i --ignore-depends=libgcc1:i386,libc6:armhf 2.28-10+rpi1 > ./libc6_2.28-10_i386.deb > dpkg: error: cannot access archive '2.28-10+rpi1': No such file or > directory > > Third : > dpkg --force-all --ignore-depends=libgcc1:i386 -i > ./libc6_2.28-10_i386.deb > (Reading database ... 89033 files and directories currently installed.) > Preparing to unpack ./libc6_2.28-10_i386.deb ... > Unpacking libc6:i386 (2.28-10) over (2.28-10) ... > dpkg: error processing package libc6:i386 (--install): > package libc6:i386 2.28-10 cannot be configured because libc6:armhf is > at a different version (2.28-10+rpi1) > Errors were encountered while processing: > libc6:i386 > > Last: > dpkg --force-all -i ./libc6_2.28-10_i386.deb > (Reading database ... 89033 files and directories currently installed.) > Preparing to unpack ./libc6_2.28-10_i386.deb ... > Unpacking libc6:i386 (2.28-10) over (2.28-10) ... > dpkg: error processing package libc6:i386 (--install): > package libc6:i386 2.28-10 cannot be configured because libc6:armhf is > at a different version (2.28-10+rpi1) > Errors were encountered while processing: > libc6:i386 > > Unfortunately no joy... > Just in case, I got the libc6 file here: > https://packages.debian.org/buster/i386/libc6/download not even sure > it's the right one so. > Anyway, thanks for trying.
The problem is that the buster distribution uses a libc6 library, which has been marked as modified for the pi (+rpi1) For the second approach, I forgot to add quotes, maybe a small chance that it works: sudo dpkg -i --ignore-depends=libgcc1:i386,'libc6:armhf 2.28-10+rpi1' ./libc6_2.28-10_i386.deb If that doesn't work, another strategy could be to remove the current version of the libc6 library and reinstall it, hoping that it will be replaced by a non-modified version of the Debian Distro (please make a backup as this is guessing without being able to test): sudo apt-get purge libc6:armhf sudo apt-get autoclean sudo apt-get update sudo apt-get install libc6:armhf sudo dpkg -i --ignore-depends=libgcc1:i386 ./libc6_2.28-10_i386.deb In case this block of commands does not work, another idea would be to download also the libc6:armhf manually and re-run the block but instead of the second last line use sudo dpkg -i ./libc6_2.28-10_armhf.deb and afterwards run the last line again... ------------------------------------------------------------------------ frankd's Profile: http://forums.slimdevices.com/member.php?userid=52885 View this thread: http://forums.slimdevices.com/showthread.php?t=106958 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
