![]() |
2009-05-26
, 20:49
|
Posts: 33 |
Thanked: 5 times |
Joined on Feb 2009
|
#681
|
![]() |
2009-05-27
, 01:34
|
Posts: 132 |
Thanked: 40 times |
Joined on Jun 2008
|
#682
|
So to update the step-by-step by Maxoueb with the suggestions from Qole
We are assuming you are using (as in: installed and working) Qole's Debian image (debian.img.ext2, that can be downloaded from here: http://qole.maemobox.org/easy-deb-ch....6-2_armel.deb ).
1 --------
First step: create a new partition/format your memory card.
(easiest way: mount your card on a linux box, use GParted to resize/create the new ext2 partition)
Put back the card in your device, boot it up.
2 --------
Mount the current Debian image:
With this command (as root):
Code:
mount -o loop /path/to/currentimgfile /debian
Mount the new formatted partition:
Code:
mount /dev/mmcblkxxx /opt
4 --------
Copy the whole content of /debian to your freshly formatted partition.
In the present case:
Code:
cd /debian
/home/user/img-install/tar cf - . | (cd /opt/; tar xvf -)
5 --------
Restart device
6 --------
Edit /home/user/.chroot (as root: "vi /home/user/.chroot" ). Note that "IMGFILE=/dev/mmcblk1p1" needs to be modified to meet your needs (ie. replace "mmcblk1p1" to the ext2 partition you created)
# Sample config for chroot
# Device or image containing Debian filesystem.
# Default: first in /media/mmc[12]/debian*.img*
IMGFILE=/dev/mmcblk1p1
# Filesystem used; must always be set when using a partition.
# Default: from extension of IMGFILE, or ext2.
IMGFS=ext2
# Mount point for Debian.
# Default: /debian
CHROOT=/debian
# New /tmp dir size for printing / PDF creation
# Default: 2M
TMPSIZE=2M
# Debian user to drop privileges
# Default: user
DEBUSER=user
7 --------
You can remove the debian.img.ext2, as it's no longer needed)
8 --------
Tap on the "Debian chroot" menu item. If everything went well, you should see it mount the Debian image from: /dev/mmcblk1p1 (or whatever partition you have chosen)
I found that there was no need to edit the /sbin/debian only the chroot.
The Following User Says Thank You to D'ohboy For This Useful Post: | ||
![]() |
2009-05-27
, 18:23
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#683
|
sudo su -
qmount /media/mmc2/debian-squeeze.img.ext2 /floppy
qmount /dev/mmcblk1p2 /opt
tar cf - -C /floppy . | tar xvf - -C /opt
qumount /floppy qumount /opt
![]() |
2009-05-30
, 17:04
|
Posts: 28 |
Thanked: 8 times |
Joined on Mar 2008
|
#684
|
The Following User Says Thank You to elschemm For This Useful Post: | ||
![]() |
2009-05-31
, 02:29
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#685
|
![]() |
2009-06-01
, 18:37
|
Posts: 28 |
Thanked: 8 times |
Joined on Mar 2008
|
#686
|
Qole,
This may have come up already... upon installing the latest easy-debian scripts and launching debian chroot library libuuid is reported as missing. No big deal to install it... should you add that as a dependency for installation?
--denis
The Following User Says Thank You to elschemm For This Useful Post: | ||
![]() |
2009-06-01
, 18:41
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#687
|
I tried a simple apt-get install libuuid, but it doesn't know libuuid. Anybody know what package to install to fix this small annoyance?
apt-get install libuuid1
The Following User Says Thank You to qole For This Useful Post: | ||
![]() |
2009-06-01
, 18:54
|
Posts: 28 |
Thanked: 8 times |
Joined on Mar 2008
|
#688
|
![]() |
2009-06-01
, 19:10
|
Posts: 28 |
Thanked: 8 times |
Joined on Mar 2008
|
#689
|
Could you please try:
Yes, I don't know why it isn't installed for everyone... It should have installed automatically...Code:apt-get install libuuid1
UPDATE:
Yikes, maybe the fact that I'm using the newer version in my repository rather than the broken version in the diablo repository (conflicts with e2fsprogs) is the problem...
UPDATE2:
Where the heck is e2fsprogs for Diablo?
apt-get install e2fsprogs
![]() |
2009-06-01
, 19:18
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#690
|