Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Last active June 25, 2021 20:19

Revisions

  1. max-mapper revised this gist Feb 28, 2013. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -43,5 +43,6 @@ restart wifid
    ## open questions

    - can 3G be disabled without disabling wifi?
    -
    - can it run node?
    - can it be scripted to auto-start kterm, auto-join wifi, and auto connect to the raspberry pi?

  2. max-mapper revised this gist Feb 27, 2013. 1 changed file with 15 additions and 3 deletions.
    18 changes: 15 additions & 3 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -1,12 +1,18 @@
    ## outline

    - jailbreak
    - [jailbreak](http://www.mobileread.com/forums/showthread.php?t=198446)
    - enable usb networking (type `;un` into the search bar after jailbreak)
    - [configure your computer](http://wiki.mobileread.com/wiki/Kindle_Touch_Hacking#USB_Networking)
    - ssh in as root:mario
    - usb mount point is `/mnt/us`
    - install [kual](http://www.mobileread.com/forums/showthread.php?t=203326)
    - install [kterm](https://github.com/bfabiszewski/kterm)

    ### useful hacks

    - [kual](http://www.mobileread.com/forums/showthread.php?t=203326)
    - [kterm](https://github.com/bfabiszewski/kterm)
    - [backdoorlock](http://www.mobileread.com/forums/showthread.php?t=205666)
    - [backlight toggle](http://www.mobileread.com/forums/showpost.php?p=2413077&postcount=116)


    ### disable screensaver

    @@ -33,3 +39,9 @@ iwconfig wlan0 essid has_no_internet
    touch /mnt/us/WIFI_NO_NET_PROBE
    restart wifid
    ```

    ## open questions

    - can 3G be disabled without disabling wifi?
    -

  3. max-mapper revised this gist Feb 27, 2013. 1 changed file with 16 additions and 1 deletion.
    17 changes: 16 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -4,17 +4,32 @@
    - enable usb networking (type `;un` into the search bar after jailbreak)
    - [configure your computer](http://wiki.mobileread.com/wiki/Kindle_Touch_Hacking#USB_Networking)
    - ssh in as root:mario
    - usb mount point is /mnt/us
    - usb mount point is `/mnt/us`
    - install [kual](http://www.mobileread.com/forums/showthread.php?t=203326)
    - install [kterm](https://github.com/bfabiszewski/kterm)

    ### disable screensaver

    type `~ds` into search bar. this functionality is installed automatically with the jailbreak

    ### turn off and on wifi (apparently stops kindle OS from interfering)

    ```bash
    /etc/init.d/wifi stop
    /etc/init.d/wifi --mode std
    ```

    you can also put the wifi into host mode or ad-hoc mode

    ### join network

    ```bash
    iwconfig wlan0 essid has_no_internet
    ```

    ### allow kindle to connect to non-internet enabled wifi

    ```bash
    touch /mnt/us/WIFI_NO_NET_PROBE
    restart wifid
    ```
  4. max-mapper revised this gist Feb 27, 2013. 1 changed file with 13 additions and 3 deletions.
    16 changes: 13 additions & 3 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,20 @@
    # turn off and on wifi (apparently stops kindle OS from interfering)
    ## outline

    - jailbreak
    - enable usb networking (type `;un` into the search bar after jailbreak)
    - [configure your computer](http://wiki.mobileread.com/wiki/Kindle_Touch_Hacking#USB_Networking)
    - ssh in as root:mario
    - usb mount point is /mnt/us
    - install [kual](http://www.mobileread.com/forums/showthread.php?t=203326)
    - install [kterm](https://github.com/bfabiszewski/kterm)

    ### turn off and on wifi (apparently stops kindle OS from interfering)
    /etc/init.d/wifi stop
    /etc/init.d/wifi --mode std

    # join network
    ### join network
    iwconfig wlan0 essid has_no_internet

    # allow kindle to connect to non-internet enabled wifi
    ### allow kindle to connect to non-internet enabled wifi
    touch /mnt/us/WIFI_NO_NET_PROBE
    restart wifid
  5. max-mapper created this gist Feb 27, 2013.
    10 changes: 10 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    # turn off and on wifi (apparently stops kindle OS from interfering)
    /etc/init.d/wifi stop
    /etc/init.d/wifi --mode std

    # join network
    iwconfig wlan0 essid has_no_internet

    # allow kindle to connect to non-internet enabled wifi
    touch /mnt/us/WIFI_NO_NET_PROBE
    restart wifid