added kobo related aliases and notes on how to bypass kobo registration
This commit is contained in:
parent
cbe1d2758c
commit
4634e54868
2 changed files with 35 additions and 0 deletions
|
|
@ -209,6 +209,8 @@ alias mnt="doas mount /dev/sda1 /mnt/media/usb-drive"
|
|||
alias umnt="doas umount /mnt/media/usb-drive"
|
||||
alias imnt="ifuse /home/brian/iphone"
|
||||
alias iumnt="doas umount /home/brian/iphone"
|
||||
alias kmnt="doas mount /dev/sda /mnt/media/kobo"
|
||||
alias kumnt="doas umount /dev/sda /mnt/media/kobo"
|
||||
alias rm="newrm -vi"
|
||||
alias {rcrm,rrm}="doas xargs -d\\n rm -v" # when piped after locate or find command, recursively removes outputted files
|
||||
alias mv="mv -v"
|
||||
|
|
|
|||
33
kobo_notes.txt
Normal file
33
kobo_notes.txt
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# BYPASSING REGISTRATION AND LOGIN ON NEW DEVICE
|
||||
|
||||
Plug in new Kobo Device via USB to Linux Computer.
|
||||
|
||||
Mount the device:
|
||||
|
||||
doas mount /dev/sda /mnt/media/kobo
|
||||
|
||||
Navigate to the device folder and then enter the .kobo subdirectory:
|
||||
|
||||
cd .kobo
|
||||
|
||||
As root, open up the KoboReader.sqlite database:
|
||||
|
||||
sqlite3 KoboReader.sqlite
|
||||
|
||||
And then enter the following SQL command:
|
||||
|
||||
INSERT INTO user(UserId,UserKey) VALUES('1','');
|
||||
|
||||
Then Quit:
|
||||
|
||||
.q
|
||||
|
||||
Exit Root:
|
||||
|
||||
exit
|
||||
|
||||
And then navigate to your home directory and unmount the kobo:
|
||||
|
||||
doas umount /mnt/media/kobo
|
||||
|
||||
Now you should be able to access the Kobo interface without having to register your Kobo.
|
||||
Loading…
Add table
Add a link
Reference in a new issue