Partitions sur le Touch Book
http://www.alwaysinnovating.com/wiki/index.php/Reinstall_OS#On_Linux
Repartitionner en supprimant toutes les partitions et en faisant:
sudo -s
mydevice='sdb' gunzip -dc sd-card.gz | dd of=/dev/$mydevice bs=1m
Réinstaller tout
mypartition='mmcblk0'
sudo -s wget http://www.alwaysinnovating.com/release/install-sd.sh chmod a+x install-sd.sh ./install-sd.sh -d /dev/$mypartition
Pour installer a partir d'un autre répertoire:
Fichiers téléchargés de http://www.alwaysinnovating.com/release/latest/
ai-install.tbz2 ai-os.squashfs ai-ui.tbz2 android.squashfs install-sd.sh mlo u-boot.bin uImage ubuntu.squashfs
Ä partir de ce répertoire:
./install-sd.sh -o . -d /dev/$mypartition
(durée de 5 a 10 minutes)
Autres:
problème avec java5
http://osdir.com/ml/ubuntu-archive/2.../msg00004.html
So to get the repo for java5 add these lines to your /etc/apt/sources.list
deb http://us.archive.ubuntu.com/ubuntu/ jaunty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ jaunty-updates multiverse
Plus simple de travailler avec une machine virtuelle http://www.turnkeylinux.org/core sudo -s apt-get install git-core gnupg flex bison gperf libsdl-dev libesd0-dev \ libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev wget http://launchpadlibrarian.net/30371982/sun-java5-bin_1.5.0-20-1_i386.deb wget http://launchpadlibrarian.net/30371986/sun-java5-jre_1.5.0-20-1_all.deb wget http://launchpadlibrarian.net/30371986/sun-java5-demo_1.5.0-20-1_all.deb wget http://launchpadlibrarian.net/30371984/sun-java5-jdk_1.5.0-20-1_i386.deb dpkg --install sun-java5-* update-java-alternatives -s java-1.5.0-sun exit mkdir tbdroid2 cd tbdroid2 curl http://android.git.kernel.org/repo > repo chmod a+x repo ./repo init -u git://labs.embinux.org/embinux-android-build/android-omap3/repo/android/platform/manifest.git -b beagle-eclair ./repo sync make mkdir rfs sudo -s cp -a out/target/product/generic/root/* rfs/ cp -a out/target/product/generic/system/* rfs/system/ cd rfs chown -R root.root * chmod -R 777 data system mkdir -p dev mknod dev/console c 5 1 mkdir -p sbin ln -s /init sbin/init rm -f ../android.squashfs mksquashfs . ../android.squashfs -noappend cd .. exit
Then, you need to have the android.squashfs on the second partion in the .images folder.