Last active
August 29, 2015 14:08
-
-
Save nasser/dee66c3c8847bb0c4ae2 to your computer and use it in GitHub Desktop.
Kindle Hacks
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
from http://www.mobileread.com/forums/showthread.php?t=195702&page=2 | |
[General] | |
unpack=true | |
debootstrap=Grip | |
aptsources=Debian | |
[Grip] | |
packages=ntpdate udev lrzsz netcat telnetd | |
source=http://www.emdebian.org/grip | |
keyring=emdebian-archive-keyring | |
suite=sid-grip | |
[Debian] | |
packages= | |
source=http://ftp.uk.debian.org/debian | |
keyring=debian-archive-keyring | |
suite=sid |
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
dd if=/dev/zero of=/tmp/debian.ext3 bs=1M count=1280 | |
mkfs.ext3 /tmp/debian.ext3 | |
tune2fs -i 0 -c 0 /tmp/debian.ext3 | |
#mkdir /mnt/debian ??? | |
mount -o loop -t ext3 /tmp/debian.ext3 /mnt/debian |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment