Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 01-25-2021, 09:50 PM   #76
NiMa
Fanatic
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 507
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Huuuuuh?
Huh
That's strange.

- Reboot your Kobo, then -

Please post the output of
Code:
cat /mnt/onboard/.adds/kobox/kobox-boot.sh
and
Code:
df -h
before and after you run the script.
and
Code:
ls /mnt
NiMa is offline   Reply With Quote
Old 01-25-2021, 10:06 PM   #77
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Alright, tomorrow morning. Hmmm, do you think the legacy instructions would work? Just a random thought.
Elektron is offline   Reply With Quote
Old 01-25-2021, 10:10 PM   #78
NiMa
Fanatic
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 507
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Alright, tomorrow morning. Hmmm, do you think the legacy instructions would work? Just a random thought.
Legacy instructions? You mean this thread?
Yeah, sure, it's pretty much the same thing.
NiMa is offline   Reply With Quote
Old 01-26-2021, 11:00 AM   #79
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Code:
Microsoft Windows [Version 10.0.18363.1316]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\redacted>ssh root@192.168.1.77
root@192.168.1.77's password:

[admin@pixie root]# cat /mnt/onboard/.adds/kobox/kobox-boot.sh
#!/bin/sh

# KoBox launcher
# Nicolas Mailloux, 2021.
#
# This mounts the main Alpine Linux image to /mnt/user and then bind-mounts /sys, /proc, etc. to the chroot's ones.

mkdir -p /mnt/user
mount /mnt/onboard/.adds/kobox/kobox.img /mnt/user
mount -v --bind /dev /mnt/user/dev
mount -v --bind /dev/pts /mnt/user/dev/pts
mount -vt proc proc /mnt/user/proc
mount -vt sysfs sysfs /mnt/user/sys
mount -vt tmpfs tmpfs /mnt/user/run
mount -vt tmpfs tmpfs /mnt/user/tmp
mkdir /mnt/user/dev/shm
mount -vt tmpfs tmpfs /mnt/user/dev/shm


# <---- DANGEROUS ---->
# This could be harmful to the /mnt/onboard partition! Don't do this unless you are sure of what you're doing!
# mount --bind /mnt/onboard /mnt/user/mnt
# <---- DANGEROUS ---->


# Copying network info so that we can access the Internet
cp /etc/resolv.conf /mnt/user/etc

# Killing Nickel/Fickel/etc.
export DBUS_SESSION_BUS_ADDRESS NICKEL_HOME WIFI_MODULE LANG WIFI_MODULE_PATH INTERFACE
sync
killall -TERM nickel hindenburg sickel fickel fmon 2>/dev/null

# Let's go!
chroot /mnt/user /bin/sh /kobox.sh
[admin@pixie root]# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root               247.9M    180.0M     68.0M  73% /
none                     16.0M         0     16.0M   0% /tmp
none                    124.5M      4.0K    124.5M   0% /dev
none                     16.0K      4.0K     12.0K  25% /var/lib
none                     16.0K         0     16.0K   0% /var/log
none                    128.0K     28.0K    100.0K  22% /var/run
/dev/mmcblk0p3            1.3G    259.9M      1.1G  19% /mnt/onboard
[admin@pixie root]# /mnt/onboard/.adds/kobox/kobox-init.sh
mount: mounting /dev/loop0 on /mnt/user failed: Device or resource busy
mount: mounting /dev on /mnt/user/dev failed: No such file or directory
mount: mounting /dev/pts on /mnt/user/dev/pts failed: No such file or directory
mount: mounting proc on /mnt/user/proc failed: No such file or directory
mount: mounting sysfs on /mnt/user/sys failed: No such file or directory
mount: mounting tmpfs on /mnt/user/run failed: No such file or directory
mount: mounting tmpfs on /mnt/user/tmp failed: No such file or directory
mkdir: can't create directory '/mnt/user/dev/shm': No such file or directory
mount: mounting tmpfs on /mnt/user/dev/shm failed: No such file or directory
chroot: can't execute '/bin/sh': No such file or directory
[admin@pixie root]# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root               247.9M    180.0M     68.0M  73% /
none                     16.0M         0     16.0M   0% /tmp
none                    124.5M      4.0K    124.5M   0% /dev
none                     16.0K      4.0K     12.0K  25% /var/lib
none                     16.0K         0     16.0K   0% /var/log
none                    128.0K     28.0K    100.0K  22% /var/run
/dev/mmcblk0p3            1.3G    259.9M      1.1G  19% /mnt/onboard
[admin@pixie root]# ls /mnt
onboard  sd       user
[admin@pixie root]#
Elektron is offline   Reply With Quote
Old 01-26-2021, 11:29 AM   #80
NiMa
Fanatic
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 507
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Code:
Microsoft Windows [Version 10.0.18363.1316]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\redacted>ssh root@192.168.1.77
root@192.168.1.77's password:

[admin@pixie root]# cat /mnt/onboard/.adds/kobox/kobox-boot.sh
#!/bin/sh

# KoBox launcher
# Nicolas Mailloux, 2021.
#
# This mounts the main Alpine Linux image to /mnt/user and then bind-mounts /sys, /proc, etc. to the chroot's ones.

mkdir -p /mnt/user
mount /mnt/onboard/.adds/kobox/kobox.img /mnt/user
mount -v --bind /dev /mnt/user/dev
mount -v --bind /dev/pts /mnt/user/dev/pts
mount -vt proc proc /mnt/user/proc
mount -vt sysfs sysfs /mnt/user/sys
mount -vt tmpfs tmpfs /mnt/user/run
mount -vt tmpfs tmpfs /mnt/user/tmp
mkdir /mnt/user/dev/shm
mount -vt tmpfs tmpfs /mnt/user/dev/shm


# <---- DANGEROUS ---->
# This could be harmful to the /mnt/onboard partition! Don't do this unless you are sure of what you're doing!
# mount --bind /mnt/onboard /mnt/user/mnt
# <---- DANGEROUS ---->


# Copying network info so that we can access the Internet
cp /etc/resolv.conf /mnt/user/etc

# Killing Nickel/Fickel/etc.
export DBUS_SESSION_BUS_ADDRESS NICKEL_HOME WIFI_MODULE LANG WIFI_MODULE_PATH INTERFACE
sync
killall -TERM nickel hindenburg sickel fickel fmon 2>/dev/null

# Let's go!
chroot /mnt/user /bin/sh /kobox.sh
[admin@pixie root]# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root               247.9M    180.0M     68.0M  73% /
none                     16.0M         0     16.0M   0% /tmp
none                    124.5M      4.0K    124.5M   0% /dev
none                     16.0K      4.0K     12.0K  25% /var/lib
none                     16.0K         0     16.0K   0% /var/log
none                    128.0K     28.0K    100.0K  22% /var/run
/dev/mmcblk0p3            1.3G    259.9M      1.1G  19% /mnt/onboard
[admin@pixie root]# /mnt/onboard/.adds/kobox/kobox-init.sh
mount: mounting /dev/loop0 on /mnt/user failed: Device or resource busy
mount: mounting /dev on /mnt/user/dev failed: No such file or directory
mount: mounting /dev/pts on /mnt/user/dev/pts failed: No such file or directory
mount: mounting proc on /mnt/user/proc failed: No such file or directory
mount: mounting sysfs on /mnt/user/sys failed: No such file or directory
mount: mounting tmpfs on /mnt/user/run failed: No such file or directory
mount: mounting tmpfs on /mnt/user/tmp failed: No such file or directory
mkdir: can't create directory '/mnt/user/dev/shm': No such file or directory
mount: mounting tmpfs on /mnt/user/dev/shm failed: No such file or directory
chroot: can't execute '/bin/sh': No such file or directory
[admin@pixie root]# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root               247.9M    180.0M     68.0M  73% /
none                     16.0M         0     16.0M   0% /tmp
none                    124.5M      4.0K    124.5M   0% /dev
none                     16.0K      4.0K     12.0K  25% /var/lib
none                     16.0K         0     16.0K   0% /var/log
none                    128.0K     28.0K    100.0K  22% /var/run
/dev/mmcblk0p3            1.3G    259.9M      1.1G  19% /mnt/onboard
[admin@pixie root]# ls /mnt
onboard  sd       user
[admin@pixie root]#
Huh. That's very strange. Are you on your Kobo Mini?

Download strace.zip from there: https://www.mobileread.com/forums/sh...05&postcount=2
Unzip it
Use SCP/FTP to put the binary in the root storage of the Kobo (/)
Restart the Kobo
Code:
cd /
and try and post the output of this:
Code:
./strace losetup -P -f /mnt/onboard/.adds/kobox/kobox.img
(should not produce any output)
and this:
Code:
./strace mount /dev/loop1 /mnt/user
thanks.
I bought a Kobo Mini a few days ago and it should arrive soon, maybe I will more be able to help you

Last edited by NiMa; 01-26-2021 at 11:33 AM.
NiMa is offline   Reply With Quote
Old 01-26-2021, 11:45 AM   #81
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Alright.
Yeah, I'm on my Kobo Mini... excellent for tinkering that's what I bought it for!
Elektron is offline   Reply With Quote
Old 01-26-2021, 11:53 AM   #82
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,506
Karma: 26047202
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
(Sidebar: KoboStuff already bundles strace).
NiLuJe is offline   Reply With Quote
Old 01-26-2021, 11:57 AM   #83
NiMa
Fanatic
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 507
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by Elektron View Post
Alright.
Yeah, I'm on my Kobo Mini... excellent for tinkering that's what I bought it for!
Same thing for me... I was looking for a better device than this for testing new kernels/programs...
NiMa is offline   Reply With Quote
Old 01-26-2021, 12:04 PM   #84
NiMa
Fanatic
NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.NiMa ought to be getting tired of karma fortunes by now.
 
NiMa's Avatar
 
Posts: 507
Karma: 2390534
Join Date: Jun 2020
Location: Somewhere in the Universe
Device: Kobo Libra, Glo HD, Touch C/B, Mini, Glo, Aura SE, Clara HD, KT
Quote:
Originally Posted by NiLuJe View Post
(Sidebar: KoboStuff already bundles strace).
Oh yeah... I completely forgot that
I'm doing frequent factory resets these times, and I don't always take the time to reinstall KoboStuff...

Then, @Elektron, strace should already be in your Kobo if you installed the Stuff
NiMa is offline   Reply With Quote
Old 01-26-2021, 12:15 PM   #85
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Quote:
Originally Posted by NiMa View Post
Oh yeah... I completely forgot that
I'm doing frequent factory resets these times, and I don't always take the time to reinstall KoboStuff...

Then, @Elektron, strace should already be in your Kobo if you installed the Stuff
I thought so
Yeah, I have the Stuff. That's how I am able to use SSH
Running strace now...
Elektron is offline   Reply With Quote
Old 01-26-2021, 12:20 PM   #86
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Kobos are so finicky...
Attached Thumbnails
Click image for larger version

Name:	stracedenied.png
Views:	153
Size:	23.0 KB
ID:	184985  
Elektron is offline   Reply With Quote
Old 01-26-2021, 12:22 PM   #87
chech
Enthusiast
chech began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Oct 2018
Device: kobo aura h2o
touch not good in h2O v1 and aura

hello i m very happy to your work i search install a recent browser for a web application
i test your chroot to h20 v1 and aura both are the same problem than the other tread i test the last solution but the touch is broken can you help me
chech is offline   Reply With Quote
Old 01-26-2021, 12:29 PM   #88
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Code:
Microsoft Windows [Version 10.0.18363.1316]
(c) 2019 Microsoft Corporation. All rights reserved.

C:\Users\redacted>ssh root@192.168.1.77
root@192.168.1.77's password:
[admin@pixie root]# cd /
[admin@pixie ]# ./mnt/onboard/.niluje/usbnet/bin/strace
./mnt/onboard/.niluje/usbnet/bin/strace: must have PROG [ARGS] or -p PID
Try './mnt/onboard/.niluje/usbnet/bin/strace -h' for more information.
[admin@pixie ]# ./mnt/onboard/.niluje/usbnet/bin/strace losetup -P -f /mnt/onboard/.adds/kobox/kobox.img
execve("/sbin/losetup", ["losetup", "-P", "-f", "/mnt/onboard/.adds/kobox/kobox.i"...], 0x7e87fcac /* 19 vars */) = 0
brk(NULL)                               = 0xb5000
uname({sysname="Linux", nodename="kobo", ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacb000
access("/etc/ld.so.preload", R_OK)      = 0
open("/etc/ld.so.preload", O_RDONLY|O_CLOEXEC) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=22, ...}) = 0
mmap2(NULL, 22, PROT_READ|PROT_WRITE, MAP_PRIVATE, 3, 0) = 0x2aacc000
close(3)                                = 0
open("/lib/libarmmem-v7l.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\20\5\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=15076, ...}) = 0
mmap2(NULL, 79308, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2aadc000
mprotect(0x2aae0000, 61440, PROT_NONE)  = 0
mmap2(0x2aaef000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x2aaef000
close(3)                                = 0
munmap(0x2aacc000, 22)                  = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/neon/vfp", 0x7e978358) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/neon", 0x7e978358) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/vfp", 0x7e978358)  = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l", 0x7e978358)      = -1 ENOENT (No such file or directory)
open("/lib/tls/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/neon/vfp", 0x7e978358) = -1 ENOENT (No such file or directory)
open("/lib/tls/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/neon", 0x7e978358)     = -1 ENOENT (No such file or directory)
open("/lib/tls/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/vfp", 0x7e978358)      = -1 ENOENT (No such file or directory)
open("/lib/tls/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls", 0x7e978358)          = -1 ENOENT (No such file or directory)
open("/lib/v7l/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/neon/vfp", 0x7e978358) = -1 ENOENT (No such file or directory)
open("/lib/v7l/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/neon", 0x7e978358)     = -1 ENOENT (No such file or directory)
open("/lib/v7l/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/vfp", 0x7e978358)      = -1 ENOENT (No such file or directory)
open("/lib/v7l/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l", 0x7e978358)          = -1 ENOENT (No such file or directory)
open("/lib/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/neon/vfp", 0x7e978358)     = -1 ENOENT (No such file or directory)
open("/lib/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/neon", 0x7e978358)         = -1 ENOENT (No such file or directory)
open("/lib/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/vfp", 0x7e978358)          = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0h<\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=407144, ...}) = 0
mmap2(NULL, 471184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2aaf0000
mprotect(0x2ab53000, 61440, PROT_NONE)  = 0
mmap2(0x2ab62000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x62000) = 0x2ab62000
close(3)                                = 0
open("/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0@%\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=59268, ...}) = 0
mmap2(NULL, 133044, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2ab64000
mprotect(0x2ab71000, 65536, PROT_NONE)  = 0
mmap2(0x2ab81000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x2ab81000
mmap2(0x2ab83000, 6068, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ab83000
close(3)                                = 0
open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\234g\1\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1289388, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacc000
mmap2(NULL, 1357192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2ab85000
mprotect(0x2acbc000, 61440, PROT_NONE)  = 0
mmap2(0x2accb000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x136000) = 0x2accb000
mmap2(0x2acce000, 9608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2acce000
close(3)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacd000
set_tls(0x2aaccb40)                     = 0
mprotect(0x2accb000, 8192, PROT_READ)   = 0
mprotect(0x2ab81000, 4096, PROT_READ)   = 0
mprotect(0x2ab62000, 4096, PROT_READ)   = 0
mprotect(0x2aada000, 4096, PROT_READ)   = 0
getuid32()                              = 0
open("/dev/loop-control", O_RDWR|O_LARGEFILE|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/dev/loop0", O_RDONLY|O_LARGEFILE) = 3
ioctl(3, LOOP_GET_STATUS64, 0x7e978a00) = -1 ENXIO (No such device or address)
close(3)                                = 0
open("/mnt/onboard/.adds/kobox/kobox.img", O_RDWR|O_LARGEFILE) = 3
stat64("/dev/loop0", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x7, 0), ...}) = 0
open("/dev/loop0", O_RDWR|O_LARGEFILE)  = 4
ioctl(4, LOOP_GET_STATUS64, 0x7e9789e8) = -1 ENXIO (No such device or address)
ioctl(4, LOOP_SET_FD, 3)                = 0
ioctl(4, LOOP_SET_STATUS64, {lo_offset=0, lo_number=0, lo_flags=LO_FLAGS_PARTSCAN, lo_file_name="/mnt/onboard/.adds/kobox/kobox.img", ...}) = 0
close(3)                                = 0
exit_group(0)                           = ?
+++ exited with 0 +++
[admin@pixie ]# ./mnt/onboard/.niluje/usbnet/bin/strace mount /dev/loop1 /mnt/user
execve("/bin/mount", ["mount", "/dev/loop1", "/mnt/user"], 0x7ef46cb8 /* 19 vars */) = 0
brk(NULL)                               = 0xb5000
uname({sysname="Linux", nodename="kobo", ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacb000
access("/etc/ld.so.preload", R_OK)      = 0
open("/etc/ld.so.preload", O_RDONLY|O_CLOEXEC) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=22, ...}) = 0
mmap2(NULL, 22, PROT_READ|PROT_WRITE, MAP_PRIVATE, 3, 0) = 0x2aacc000
close(3)                                = 0
open("/lib/libarmmem-v7l.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\20\5\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=15076, ...}) = 0
mmap2(NULL, 79308, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2aadc000
mprotect(0x2aae0000, 61440, PROT_NONE)  = 0
mmap2(0x2aaef000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x2aaef000
close(3)                                = 0
munmap(0x2aacc000, 22)                  = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/neon/vfp", 0x7e9bb378) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/neon", 0x7e9bb378) = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l/vfp", 0x7e9bb378)  = -1 ENOENT (No such file or directory)
open("/lib/tls/v7l/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/v7l", 0x7e9bb378)      = -1 ENOENT (No such file or directory)
open("/lib/tls/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/neon/vfp", 0x7e9bb378) = -1 ENOENT (No such file or directory)
open("/lib/tls/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/neon", 0x7e9bb378)     = -1 ENOENT (No such file or directory)
open("/lib/tls/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/vfp", 0x7e9bb378)      = -1 ENOENT (No such file or directory)
open("/lib/tls/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/tls", 0x7e9bb378)          = -1 ENOENT (No such file or directory)
open("/lib/v7l/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/neon/vfp", 0x7e9bb378) = -1 ENOENT (No such file or directory)
open("/lib/v7l/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/neon", 0x7e9bb378)     = -1 ENOENT (No such file or directory)
open("/lib/v7l/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l/vfp", 0x7e9bb378)      = -1 ENOENT (No such file or directory)
open("/lib/v7l/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/v7l", 0x7e9bb378)          = -1 ENOENT (No such file or directory)
open("/lib/neon/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/neon/vfp", 0x7e9bb378)     = -1 ENOENT (No such file or directory)
open("/lib/neon/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/neon", 0x7e9bb378)         = -1 ENOENT (No such file or directory)
open("/lib/vfp/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat64("/lib/vfp", 0x7e9bb378)          = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0h<\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=407144, ...}) = 0
mmap2(NULL, 471184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2aaf0000
mprotect(0x2ab53000, 61440, PROT_NONE)  = 0
mmap2(0x2ab62000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x62000) = 0x2ab62000
close(3)                                = 0
open("/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0@%\0\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=59268, ...}) = 0
mmap2(NULL, 133044, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2ab64000
mprotect(0x2ab71000, 65536, PROT_NONE)  = 0
mmap2(0x2ab81000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x2ab81000
mmap2(0x2ab83000, 6068, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ab83000
close(3)                                = 0
open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\3\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\234g\1\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1289388, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacc000
mmap2(NULL, 1357192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2ab85000
mprotect(0x2acbc000, 61440, PROT_NONE)  = 0
mmap2(0x2accb000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x136000) = 0x2accb000
mmap2(0x2acce000, 9608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2acce000
close(3)                                = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aacd000
set_tls(0x2aaccb40)                     = 0
mprotect(0x2accb000, 8192, PROT_READ)   = 0
mprotect(0x2ab81000, 4096, PROT_READ)   = 0
mprotect(0x2ab62000, 4096, PROT_READ)   = 0
mprotect(0x2aada000, 4096, PROT_READ)   = 0
getuid32()                              = 0
brk(NULL)                               = 0xb5000
brk(0xd6000)                            = 0xd6000
getuid32()                              = 0
geteuid32()                             = 0
stat64("/dev/loop1", {st_mode=S_IFBLK|0660, st_rdev=makedev(0x7, 0x1), ...}) = 0
open("/etc/filesystems", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("/proc/filesystems", O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aace000
read(3, "nodev\tsysfs\nnodev\trootfs\nnodev\tb"..., 1024) = 160
read(3, "", 1024)                       = 0
mount("/dev/loop1", "/mnt/user", "ext2", MS_SILENT, NULL) = -1 EINVAL (Invalid argument)
mount("/dev/loop1", "/mnt/user", "ext3", MS_SILENT, NULL) = -1 EINVAL (Invalid argument)
mount("/dev/loop1", "/mnt/user", "ext4", MS_SILENT, NULL) = -1 EINVAL (Invalid argument)
mount("/dev/loop1", "/mnt/user", "vfat", MS_SILENT, NULL) = -1 EIO (Input/output error)
mount("/dev/loop1", "/mnt/user", "msdos", MS_SILENT, NULL) = -1 EIO (Input/output error)
write(2, "mount: mounting /dev/loop1 on /m"..., 67mount: mounting /dev/loop1 on /mnt/user failed: Input/output error
) = 67
exit_group(255)                         = ?
+++ exited with 255 +++
[admin@pixie ]#
@NiMa: Apparently the Stuff's strace works fine. Here's the output.

Last edited by Elektron; 01-26-2021 at 01:51 PM. Reason: typo
Elektron is offline   Reply With Quote
Old 01-26-2021, 12:30 PM   #89
Elektron
Banned
Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.Elektron ought to be getting tired of karma fortunes by now.
 
Posts: 2,296
Karma: 5300240
Join Date: Jun 2020
Location: Edmonton, AB
Device: Kobo Aura H2O Edition 2 (mark 7), Kobo Mini
Quote:
Originally Posted by chech View Post
hello i m very happy to your work i search install a recent browser for a web application
i test your chroot to h20 v1 and aura both are the same problem than the other tread i test the last solution but the touch is broken can you help me
How weird? @NiMa needs some specs, not "touch is broken" or they won't be able to fix it
Elektron is offline   Reply With Quote
Old 01-26-2021, 12:39 PM   #90
chech
Enthusiast
chech began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Oct 2018
Device: kobo aura h2o
in first the h2o feel good but the hight where are the app don t have touch but keyboard yes
chech is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[HOWTO][WIP] Run Xorg on your Kobo + full-blown Firefox NiMa Kobo Developer's Corner 57 07-27-2023 05:33 PM
Archive.org book on Kobo question cpl625 Kobo Reader 4 10-28-2011 06:41 AM
Portable Firefox (Run it off a USB Drive) Colin Dunstan Lounge 3 11-22-2004 07:42 PM


All times are GMT -4. The time now is 06:57 PM.


MobileRead.com is a privately owned, operated and funded community.