View Single Post
Old 07-21-2025, 05:53 AM   #4
neil_swann80
0000000000101010
neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.
 
neil_swann80's Avatar
 
Posts: 5,894
Karma: 12981955
Join Date: Mar 2023
Location: An island off the coast of Ireland
Device: PB632 [HD3]
Like I said, for a Pocketbook you should just download the specific pocketbook release from github, then unpack it to the device storage.


If you want a simple script to install it from the device (connected to WIFI obvs and reboot after)....
Code:
#!/bin/sh
tmpDir=/var/tmp/koreader
rm -rf $tmpDir; mkdir $tmpDir; cd $tmpDir
curl -s https://api.github.com/repos/koreader/koreader/releases/latest \
| grep -wo "https.*pocketbook.*zip" | wget -qi -
unzip $tmpDir/$(ls) -d /mnt/ext1
neil_swann80 is offline   Reply With Quote