-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:tylpk1216/kobofileserver into main
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# kobofileserver | ||
Run it on Kobo device, then use browser to transfer file to device. | ||
|
||
# Installation | ||
01. Install NickelMenu, I use it to launch application. | ||
02. Put KoboFileServer folder in /mnt/onboard/.adds | ||
03. Modify NickelMenu config file. | ||
``` | ||
menu_item :main :Force Wi-Fi On (toggle) :nickel_setting :toggle:force_wifi | ||
menu_item :main :IP Address :cmd_output :500:/sbin/ifconfig | /usr/bin/awk '/inet addr/{print substr($2,6)}' | ||
menu_item :main :KoboFileServer (toggle) :cmd_output :500:quiet :/usr/bin/pkill -f "^/mnt/onboard/.adds/KoboFileServer/kobofileserver" | ||
chain_success:skip:3 | ||
chain_failure :cmd_spawn :/mnt/onboard/.adds/KoboFileServer/kobofileserver | ||
chain_failure :dbg_toast :Error starting KoboFileServer | ||
chain_always:skip:-1 | ||
chain_success :dbg_toast :Stopped KoboFileServer | ||
``` | ||
04. Adjust your sleep settings of device for transfering large file. The processing speed is 0.52MB/second on Kobo Elipsa when I use HyRead Gaze Pocket to uploading file. If you use cell phone, I think the speed is better. | ||
|
||
# How to use it | ||
01. Click "Force Wi-Fi On (toggle)" of NickelMenu. | ||
02. Turn-on Wi-Fi of device. | ||
03. Click "KoboFileServer (toggle)" of NickelMenu. | ||
04. Click "IP Address" of NickelMenu to get your device IP. | ||
05. Open browser on any device, then type "http://IP/". | ||
06. Select a file. | ||
07. Click "Click to upload file" to upload file. | ||
|
||
# License | ||
MIT |