Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Onyx Boox

Notices

Reply
 
Thread Tools Search this Thread
Old 01-30-2018, 03:00 AM   #226
mdp
Wizard
mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.
 
Posts: 1,481
Karma: 9010563
Join Date: Jul 2013
Device: none
Quote:
Originally Posted by bopsis View Post
how exactly are you transferring the files to Max2?
I have both WiFi File Transfer and FileZilla client installed. The connection is successful, I see Max2 in my PC, but there are tons of directories, none of them look like a Library folder or so where I could save my books.
Have you located the '/sdcard/' or '/mnt/sdcard/'?
The "sdcard" is the internal, embedded "external storage" (while the SD-Card slot would be an "External SD").

Transferring data from a fixed device, you are probably better set with a USB cable.
The wireless way is useful but possibly more of a potential asset to transfer data from other mobile devices - i.e. it's anyway less direct than a USB cable.

Last edited by mdp; 01-30-2018 at 03:49 AM.
mdp is offline   Reply With Quote
Old 01-30-2018, 03:33 AM   #227
bastelquastel
Junior Member
bastelquastel began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Jan 2018
Location: Germany
Device: Max2
Concerning file transfer to and from Max2 I made the observation that (at least on my linux computer using jmtpfs to mount Max2 into my local file system) there was a transfer limit of about 800Mbyte max per file. If I try to transfer a bigger file, I get the (not so informative) response that there is no space left on device (which is obviously not true). A workaround would be to initiate file transfer on the linux side by typing:

split -b 800M /path/to/source_file

and then, on Max2, using Termux or another terminal emulator to change to the directory the files were transfered to and then type:

cat x* > name_of_file_to_be_restituted

--------------

Obviously it would be a good idea to have another, secure, way of transfering big files, too. Above technique is secure (because of usb link cable used) but has the file size limit (at least on my machine), and other ways of doing it like using "Wifi File Manager" for example) have security issues, because other computers on the same net might log into your Max2, too. Also, some wifi file transfer apps seem to dial home quite a lot (I saw a lot of activities on tracking sites when testing them). I haven't tested an app that will set up a wifi network itself.

So here's a proposal for a wifi file transfer that is totally secure. It needs a wifi router so can only be used at home (or some other place where you trust the wifi system.) (I most often want to transfer files while at home and I find it inconvinient to use cable because I have to plug it in, it will always charge battery, which is also not so good if it happens too often).

This proposal is, again, for a linux PC on the other side, but should also work on other operating systems if you find appropriate commands to set up key generation and mounting / unmounting. I can only tell about linux.

---------->

I downloaded "simplesshd" from playstore and installed it on Max2. I changed settings to a different port than 2222 (just for fun, a little obscurity) and told it to start the server when starting the application). This will change its button from a "start" and "stop" behaviour to just displaying "quit" when running.

Max2 will display its IP address which can be used for logging in via ssh or for mounting Max2 on the local file system via sshfs (which I use for file transfer). In order to have a secure login and only allow registered PCs to login simplesshd forces you to set up key exchange as the method except for the very first login (which you only use for transfering keys from PC to Max2, then).
Needed only once on every PC that needs to be registered I type in a terminal shell:

ssh-keygen -t rsa

I will answer all question by just typing "Enter" key (nothing else).
This will, in a directory ~/.ssh, create a file id_rsa.pub which is this PC's key now. I should display this file now and mark its content for later pasting it into a command that I need to type on Max2 shell.

I login in into Max2 by typing (square brackets indicating something that needs to be replaced by actual values, square brackets not to be typed in):

ssh -p [my_chosen_port_number_2222_by_default] [IP_address_displayed_by_Max2]

Because this is the first time I log into Max2, the simplesshd app will display a password. I type this passwort at the PC's ssh shell's prompt and I will be logged into Max2, that is, I have a shell running on my PC, being logged into Max2. I should now, in this shell, be in directory ssh (which I can check by typing "pwd" and which I can change using "cd" command) and I will now type

echo "[pasted_content_marked_above]" > authorized_keys

That is, I will type echo and " and then press the middle mouse button which will include the content marked above and then I will type " again and space and > and then the rest of the command.

(If I want to set up more PCs for secure connection, I can use the PC already set up for logging into Max2 for copying over other PCs id_rsa.pub content -- not described here.)

Having done this I can log out of Max2 by typing "exit" in my shell and I can also destroy file ~/.ssh/id_rsa.pub on my PC and change some access rights. So, on the PC I type in its terminal shell:

cd
chmod 700 .ssh
rm .ssh/id_rsa.pub

Now I should install sshfs on my PC (which my package manager should provide) an I will create a directory for it to mount my Max2 to locally, e.g. by typing

sudo mkdir /mnt/max2
sudo chown [my_login_name] /mnt/max2

and then I will be able to mount my Max2 into my PC's local file system by typing on the PC side (if simplesshd is running on the Max2 side, of course) (one command line, no line breaks):

sshfs -p [port_defaults_to_2222] user@[IP_address_as_displayed_by_simplesshd_app_on_Max2]:/storage/emulated/0 /mnt/max2

I can now access Max2 via its mount point /mnt/max2 which I can, for example, open in pcmanfm or any other file explorer and copy files to or from. I might of course just use the command line for copying, though (see below for an example of syncing using rsync).

Once finished, I can (and must!) unmount Max2 by typing:

fusermount -u /mnt/max2

------------

A convenient way of copying/syncing directories to Max2 would be to use something like:

rsync -rlpgoDvc /from_path[/] /to_path[/]

See rsync's man page for details on when to use trailing slashes and when not. Be aware that it is no good idea to use rsync's -a option (which you would usually to for syncing), because it will include -t (changing sync time on directory) which Max2 does not support.)

So, for example, I could type something like:

rsync -rlpgoDvc /home/my_name/Documents/MagPi-Magazine/ /mnt/max2/

and it would copy all contents of this directory to an equally named directory on Max2. Et voilà!

----------

One last hint: In order to make access more convenient it might be a good idea to set aliasses for mount, unmount and sync command. This might be done by including, e.g. into ~/.bashrc, something like (assuming it's port 2345 and 192.168.2.103 is Max2's ip address it gets on the local network):

alias max2='sshfs -p 2345 user@192.168.2.103:/storage/emulated/0 /mnt/max2'

alias cdmax2='sshfs -p 2345 user@192.168.2.103:/storage/emulated/0 /mnt/max2 && cd /mnt/max2'

alias umax2='cd ; fusermount -u /mnt/max2'

alias max2shell='ssh -p 2345 user@192.168.2.103'

--------

Have fun!
bastelquastel is offline   Reply With Quote
Old 01-30-2018, 05:38 AM   #228
alcedo
Enthusiast
alcedo doesn't litteralcedo doesn't litter
 
Posts: 40
Karma: 148
Join Date: Jan 2018
Device: bug
TL;DR

Quote:
Originally Posted by bastelquastel View Post
I downloaded "simplesshd" from playstore and installed it on Max2.
I use ssh with scp and sftp or wget provided by termux.
Ofc you can use rsync too.
alcedo is offline   Reply With Quote
Old 01-30-2018, 09:55 AM   #229
inudaisho
Member
inudaisho began at the beginning.
 
Posts: 20
Karma: 24
Join Date: Jan 2018
Location: Japan
Device: Boox Max2 / Kobo glo HD
Library folder of NEO Reader2 (default Reader App of Max2) is "Books".
But I don't use "Books", I create new folder for myself.

some file manager App have ftp function, I use it for data transfar.
inudaisho is offline   Reply With Quote
Old 01-31-2018, 04:54 AM   #230
lvenan
Junior Member
lvenan began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jan 2018
Device: Onyx Boox Max2 pro
Ereader not even switching on

Hi all!
After some delays I got my Onyx Boox Max2 Pro yesterday. In a rush to test it I naively press the power button to switch it on : nothing.
I left it plugged to my computer for 24 hours hoping that may be it is a battery problem and tried again : nothing again.

There is absolutely no indications that the device battery is loading or unloaded.
Has anyone else experienced the same problem ?

Cheers.
lvenan is offline   Reply With Quote
Old 01-31-2018, 07:01 AM   #231
mdp
Wizard
mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.
 
Posts: 1,481
Karma: 9010563
Join Date: Jul 2013
Device: none
Quote:
Originally Posted by lvenan View Post
After some delays I got my Onyx Boox Max2 Pro yesterday. In a rush to test it I naively press the power button to switch it on : nothing.
I left it plugged to my computer for 24 hours hoping that may be it is a battery problem and tried again : nothing again.
Mine worked immediately after unboxing. There is a two seconds delay between press of the power button and light in the blue led nearby.

You should consult with Booxtor.

(Marginal note: I am not sure that computers' USB sockets are the best power source...)
mdp is offline   Reply With Quote
Old 01-31-2018, 07:14 AM   #232
bopsis
Member
bopsis began at the beginning.
 
Posts: 22
Karma: 10
Join Date: Apr 2012
Location: Germany
Device: POCKETBOOK PRO 903, Microsoft Surface Pro, Onyx BOOX Max2
I tried the "sdcard", but got "550 That path is inaccessible, Failed to retrieve directory listing" error message.

Every once in a while I have to transfer some files (usually relatively small .pdfs) on the fly, therefore didn't want to plug the USB all the time. The quickest thing so far has been Bluetooth, but it gets slow + sometimes crashes for multiple/large files.
Quote:
Originally Posted by mdp View Post
Have you located the '/sdcard/' or '/mnt/sdcard/'?
The "sdcard" is the internal, embedded "external storage" (while the SD-Card slot would be an "External SD").

Transferring data from a fixed device, you are probably better set with a USB cable.
The wireless way is useful but possibly more of a potential asset to transfer data from other mobile devices - i.e. it's anyway less direct than a USB cable.
bopsis is offline   Reply With Quote
Old 01-31-2018, 07:55 AM   #233
lvenan
Junior Member
lvenan began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jan 2018
Device: Onyx Boox Max2 pro
Quote:
Originally Posted by mdp View Post
Have you located the '/sdcard/' or '/mnt/sdcard/'?
The "sdcard" is the internal, embedded "external storage" (while the SD-Card slot would be an "External SD").

Transferring data from a fixed device, you are probably better set with a USB cable.
The wireless way is useful but possibly more of a potential asset to transfer data from other mobile devices - i.e. it's anyway less direct than a USB cable.
Good to know yours work.
I am returning the device and asking for a refund.
lvenan is offline   Reply With Quote
Old 01-31-2018, 08:17 AM   #234
mdp
Wizard
mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.
 
Posts: 1,481
Karma: 9010563
Join Date: Jul 2013
Device: none
Quote:
Originally Posted by lvenan View Post
Good to know yours work.
Yes, I meant to reassure you (to confirm) that those of the first batch did work immediately after unboxing (I am not sure I was clear).

EDIT: I think you are the first one who reported a factory fault...

Last edited by mdp; 01-31-2018 at 08:22 AM.
mdp is offline   Reply With Quote
Old 01-31-2018, 02:52 PM   #235
blackmam
Junior Member
blackmam began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jan 2018
Device: Max 2
My got,

I updated mine, after powering off it switched to Chinese.

I have no idea how to switch to EN.

What the...

Any ideas?
blackmam is offline   Reply With Quote
Old 01-31-2018, 03:14 PM   #236
blackmam
Junior Member
blackmam began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jan 2018
Device: Max 2
Quote:
Originally Posted by blackmam View Post
My got,

I updated mine, after powering off it switched to Chinese.

I have no idea how to switch to EN.

What the...

Any ideas?
Rebooted again and works in English.

Hope his is not a recurring thingies
blackmam is offline   Reply With Quote
Old 01-31-2018, 03:47 PM   #237
mdp
Wizard
mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.mdp ought to be getting tired of karma fortunes by now.
 
Posts: 1,481
Karma: 9010563
Join Date: Jul 2013
Device: none
Quote:
Originally Posted by blackmam View Post
Rebooted again and works in English.
Hope his is not a recurring thingies
In case,
(Onyx) Settings icon > Second icon from top ("People of the World") > First row
mdp is offline   Reply With Quote
Old 01-31-2018, 10:32 PM   #238
Drew22
Connoisseur
Drew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than momDrew22 loves his/her reader more than mom
 
Posts: 56
Karma: 78912
Join Date: May 2016
Device: Onyx Boox MAX
imac does not see Onyx Boox Max2

Hello everyone,

yesterday I received my Onyx Boox Max 2. The device works fine, but when connecting my imac (2015) with the e-reader via usb, the former does not see the internal memory of Max 2, although the e-reader's battery starts immediately charging. Is it a problem of drivers? What can I do? Did anyone experience the same problem?

My laptop with Windows OS does have no problems seeing the e-reader and transferring data poses no difficulties. However I do work mostly on the imac and transferring data via bluetooth (which works) to the device is very slow (44kb/sec !?). This is not an option for larger documents, anyway.
Drew22 is offline   Reply With Quote
Old 01-31-2018, 11:34 PM   #239
Monkeyrx
Junior Member
Monkeyrx began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jan 2018
Device: Onyx Boox Max 2
did the update and Google Play still does not recognize purchases

Quote:
Originally Posted by Booxtor View Post
Concerning installation of Play Services it will be fixed very soon. Tomorrow I am going to test the fixed version and afterwards you can update your device using OTA from our cloud (in settings ->about->update).

I have reported this issue with Play Services two weeks ago, but we didn't have enough time to provide fixes immediately because production and delivery already has started.

We also are working on other improvements, so please don't worry, if you see some polishing of the software is needed. We are going polish it to you complete satisfaction.
I did the update on my Max 2 and still not reconizing purchased applications. Restarted the device several times too just in case. Not sure what to do next. Hence me on the forums.
Monkeyrx is offline   Reply With Quote
Old 02-01-2018, 05:28 AM   #240
vbn
Junior Member
vbn began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Feb 2018
Device: Onyx Boox Max2
Max2 rooting

Quote:
Originally Posted by Booxtor View Post
@deb2016: Concerning rooting of Max2 - at the moment it is hard. I am working on it and hope to be able to provide soon either rooted firmware (developers version) or rooting tool (for geeks among us).
Any update on rooting? As mdp already mentioned RNDIS Ethernet option is not supported. A reader does not get an IP address, even though a network interface is created.

Quote:
Originally Posted by mdp View Post
I see (found) that the tethering can be set from the "developer options", "networking" section (see screenshot).
(I access the Android settings with `adb shell am start com.android.settings`, because this firmware only left the "dumbed down" settings interface.)
Unfortunately, although I see the device in the network connections of the desktop, I do not get an IP address (see screenshot).

Working on it, but if you get a solution sooner...
vbn is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Onyx Boox max VS onyx Boox n96 CML Jean-V Onyx Boox 5 01-26-2017 05:42 AM
ONYX BOOX N96 ML Front Light verse ONYX BOOX N96 Dual Touch teotjunk Onyx Boox 3 11-25-2016 04:36 AM
Onyx boox i62 or Onyx boox 92M for PDF reading? tidyboyd Which one should I buy? 16 04-02-2013 04:19 PM
Onyx Boox M92 - Issues with Firmware v1.7 20111228 Backi Onyx Boox 19 02-23-2012 01:20 PM


All times are GMT -4. The time now is 11:28 AM.


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