View Single Post
Old 03-14-2020, 05:11 PM   #10
pazos
cosiņeiro
pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.
 
Posts: 1,406
Karma: 2451781
Join Date: Apr 2014
Device: BQ Cervantes 4
Quote:
Originally Posted by brno View Post
Hi,
When I execute the code I get this error :

Code:
root@MiWiFi-R3G-srv:/mnt/private# tar -xvf ko*.tar.gz
tar: ko-deps.tar.gz: Not found in archive
tar: Exiting with failure status due to previous errors
Shall I proceed to the next lines?
Thanks in advance for your help!
Duh! My fault. When I wrote the instructions for the first time there was only a single attachment. Then I updated the second attachment and modified the instructions to match, but I never actually run the tar command to uncompress both attachments at the same time .

So, what happens is: you have both ko-deps.tar.gz and ko-deps-safemode-latest.tar.gz on /mnt/private and globbing doesn't work as expected and tries to uncompress ko-deps.tar.gz from within the other container. Again, duh!

What you need to do is uncompress both, with:
Code:
tar -xvf ko-deps.tar.gz
tar -xvf ko-deps-safemode-latest.tar.gz
And continue with the next lines (dpkg -i to install prerrequisites, unzip to unzip koreader). Hope it helps.

edit: use the exact command for dpkg -i. That should work!. If not do apt-get -f install. That will fix dependencies between packages. If that still doesn't work please check that your deb file is not corrupted. You can download it again or fetch another version as long as is compatible with Debian Wheezy with armel ABI. Prerequisites here are just to make things easier but there should be a few mirrors online for these packages.

Last edited by pazos; 03-14-2020 at 05:16 PM.
pazos is offline   Reply With Quote