User:Stuart

From Openmoko

Revision as of 09:19, 17 August 2009 by Stuart (Talk | contribs)

Jump to: navigation, search

The entry in /etc/network/interfaces. I use /30 as my home network is 192.168.0.0/24. I have a local nameserver.

iptables -A FORWARD --in-interface eth7 -j ACCEPT
allow-hotplug eth7
iface eth7 inet static
	address 192.168.0.200
	netmask 255.255.255.252
	up iptables -A POSTROUTING -t nat -s 192.168.0.200/30 -j MASQUERADE
	up echo 1 > /proc/sys/net/ipv4/ip_forward
	down iptables -D POSTROUTING -t nat -s 192.168.0.200/30  -j MASQUERADE
iptables -A FORWARD --out-interface eth7 -j ACCEPT

Installing Debian

I partitioned by hand because of a problem with fdisk. Changing the type of a partition seems to block with the fdisk from Om 2007.

Disk /dev/mmcblk0: 2032 MB, 2032664576 bytes
4 heads, 16 sectors/track, 62032 cylinders
Units = cylinders of 64 * 512 = 32768 bytes

        Device Boot      Start         End      Blocks  Id System
/dev/mmcblk0p1               1       57984     1855480  83 Linux
/dev/mmcblk0p2           57985       62032      129536  82 Linux swap


Well, install.sh - v3.0, fails.

HOSTNAME=stuart INST_MIRROR=http://ftp.fr.debian.org/debian QI=true LOCALEPURGE=true ./install.sh --no-partitioning --swap-size 128 --part1-fs ext3 --with-tasks GAMES,NET,WEB,WIFI,COM all

P: Configuring package apt
P: Configuring helper cdebootstrap-helper-apt
E: Internal error: install

http://www.mail-archive.com/smartphones-userland@linuxtogo.org/msg01544.html explains that you have to download install-info_4.13a.dfsg.1-4_armel.deb in the middle of the installation.

HOSTNAME=stuart QI=true  INST_MIRROR=http://ftp.fr.debian.org/debian LOCALEPURGE=true /home/root//install.sh  --no-partitioning --swap-size  128 --part1-fs ext3  format mount
mkdir /mnt/debian/var /mnt/debian/var/cache  /mnt/debian/var/cache/bootstrap/
wget http://ftp.debian.org/debian/pool/main/t/texinfo/install-info_4.13a.dfsg.1-4_armel.deb
mv install-info_4.13a.dfsg.1-4_armel.deb  /mnt/debian/var/cache/bootstrap/
HOSTNAME=stuart QI=true  INST_MIRROR=http://ftp.fr.debian.org/debian LOCALEPURGE=true /home/root//install.sh  --no-partitioning --swap-size  128 --part1-fs ext3  debian apt fso tasks configuration kernel cleanup unmount

Now I have debian on my SD card but the touchscreen doesn't work. http://neil.brown.name/blog/20090212205404 says that it might just be a calibration problem.

Personal tools

The entry in /etc/network/interfaces. I use /30 as my home network is 192.168.0.0/24. I have a local nameserver.

iptables -A FORWARD --in-interface eth7 -j ACCEPT
allow-hotplug eth7
iface eth7 inet static
	address 192.168.0.200
	netmask 255.255.255.252
	up iptables -A POSTROUTING -t nat -s 192.168.0.200/30 -j MASQUERADE
	up echo 1 > /proc/sys/net/ipv4/ip_forward
	down iptables -D POSTROUTING -t nat -s 192.168.0.200/30  -j MASQUERADE
iptables -A FORWARD --out-interface eth7 -j ACCEPT

Installing Debian

I partitioned by hand because of a problem with fdisk. Changing the type of a partition seems to block with the fdisk from Om 2007.

Disk /dev/mmcblk0: 2032 MB, 2032664576 bytes
4 heads, 16 sectors/track, 62032 cylinders
Units = cylinders of 64 * 512 = 32768 bytes

        Device Boot      Start         End      Blocks  Id System
/dev/mmcblk0p1               1       57984     1855480  83 Linux
/dev/mmcblk0p2           57985       62032      129536  82 Linux swap


Well, install.sh - v3.0, fails.

HOSTNAME=stuart INST_MIRROR=http://ftp.fr.debian.org/debian QI=true LOCALEPURGE=true ./install.sh --no-partitioning --swap-size 128 --part1-fs ext3 --with-tasks GAMES,NET,WEB,WIFI,COM all

P: Configuring package apt
P: Configuring helper cdebootstrap-helper-apt
E: Internal error: install

http://www.mail-archive.com/smartphones-userland@linuxtogo.org/msg01544.html explains that you have to download install-info_4.13a.dfsg.1-4_armel.deb in the middle of the installation.

HOSTNAME=stuart QI=true  INST_MIRROR=http://ftp.fr.debian.org/debian LOCALEPURGE=true /home/root//install.sh  --no-partitioning --swap-size  128 --part1-fs ext3  format mount
mkdir /mnt/debian/var /mnt/debian/var/cache  /mnt/debian/var/cache/bootstrap/
wget http://ftp.debian.org/debian/pool/main/t/texinfo/install-info_4.13a.dfsg.1-4_armel.deb
mv install-info_4.13a.dfsg.1-4_armel.deb  /mnt/debian/var/cache/bootstrap/
HOSTNAME=stuart QI=true  INST_MIRROR=http://ftp.fr.debian.org/debian LOCALEPURGE=true /home/root//install.sh  --no-partitioning --swap-size  128 --part1-fs ext3  debian apt fso tasks configuration kernel cleanup unmount

Now I have debian on my SD card but the touchscreen doesn't work. http://neil.brown.name/blog/20090212205404 says that it might just be a calibration problem.