kikadisa wrote:
But i can't install Debian on the SSD because there's no tools for that ?
Do you have a serial dongle just in case something goes wrong?
You can basically mount internal disk into a directory and tranfer SD card contents into internal memory, i.e.
Code:
$ sudo su
# mkdir -p /mnt/{mmc,sda}
# mount /dev/sda2 /mnt/sda # sda2 should have internal rootfs
# mount /dev/mmcblk0p1 /mnt/mmc
# ls /mnt/{mmc,sda}
# rm -rf /mnt/sda/*
# cp -a /mnt/mmc/* /mnt/sda
# sync
# umount /mnt/mmc
# umount /mnt/sda
# reboot
kikadisa wrote:
But is there a release date for this awesome tool ?
For something more advanced, we'll have to wait for armhf to get into official Debian archive, then we'll be able to use debian-installer. Which should happen soon... see
http://bugs.debian.org/615513#40
Best regards
-- Hector Oron <zumbi>