summaryrefslogtreecommitdiff
path: root/content/tech/kindle-as-screen.md
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2016-05-24 19:46:37 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2016-05-24 19:46:37 +0200
commitbd8464abb8deee0d31bb84cc47cd3335c0e688d5 (patch)
treecea507ae72e1b5fda03ae6dc5c6d3cae2436a7cc /content/tech/kindle-as-screen.md
parent55439cd6455232057c9c08202c853c1f5201d79f (diff)
downloadblog-bd8464abb8deee0d31bb84cc47cd3335c0e688d5.tar.gz
blog-bd8464abb8deee0d31bb84cc47cd3335c0e688d5.zip
move posts into 'tech' section
Diffstat (limited to 'content/tech/kindle-as-screen.md')
-rw-r--r--content/tech/kindle-as-screen.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/content/tech/kindle-as-screen.md b/content/tech/kindle-as-screen.md
new file mode 100644
index 0000000..130592c
--- /dev/null
+++ b/content/tech/kindle-as-screen.md
@@ -0,0 +1,27 @@
+---
+categories:
+- software
+date: 2013-10-26
+title: Use your Kindle as VNC viewer
+---
+
+I could mod my Kindle so I can now use it as screen for the RaspberryPi.
+
+This is what I did with my Kindle 4 NT:
+
+1. [Jailbreak](http://wiki.mobileread.com/wiki/Kindle4NTHacking#Jailbreak)
+2. [Install USBNetwork](http://wiki.mobileread.com/wiki/Kindle4NTHacking#SSH)
+3. [Get KindleVNC viewer](http://www.mobileread.com/forums/showthread.php?t=150434)
+4. Connect your Kindle via USB to a GNU/Linux computer. ssh into it like so (the root password doesn't exist, you can type in anything):
+`sudo ifconfig usb0 192.168.15.2` `ssh root@192.168.15.244`
+5. Start the vnc viewer with `/mnt/us/kindlevncviewer/kvncviewer.sh 192.168.15.2:0 &`
+6. Here is a script to autostart the viewer:
+
+``` bash
+sudo ifconfig usb0 192.168.15.2
+sudo x11vnc -scale 800x600 -display :0 &
+sleep 8
+sshpass -p asdf ssh root@192.168.15.244 /mnt/us/kindlevncviewer/kvncviewer.sh 192.168.15.2:0 &
+```
+
+Do not forget to enable USBNetworking, otherwise it won't work. You can do so with [KUAL](http://www.mobileread.com/forums/showthread.php?t=203326).