Re: how to NFS mount /home ?

2007-11-14 Thread Michael Creel
On Nov 13, 2007 10:50 PM, Daniel Baumann [EMAIL PROTECTED] wrote: Michael Creel wrote: I need to figure out how to have the live CD image nfs mount /home. To be exact, I need to execute mount 192.168.0.1:/home /home in a way so that this is not subsequently undone by the normal creation

Re: USB creation problem with snapshot 1.0~a36-1

2007-11-14 Thread Daniel Baumann
i fixed most of the issues. the only remaining problem is, that /proc seems to be unmounted before lh_binary_usb-hdd is executed. -- Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: [EMAIL PROTECTED] Internet:

Re: USB creation problem with snapshot 1.0~a36-1

2007-11-14 Thread Daniel Baumann
Daniel Baumann wrote: i fixed most of the issues. the only remaining problem is, that /proc seems to be unmounted before lh_binary_usb-hdd is executed. that was actually due to an unclean build; now it works. -- Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email:

Re: failed etch live image but sid works

2007-11-14 Thread Hideki Yamane
On Mon, 12 Nov 2007 01:08:35 +0900 Hideki Yamane [EMAIL PROTECTED] wrote: I tried it with qemu (and kqemu) but got exactly same error ;-( I don't know why I cannot build image correctly, but I'll try to do that with another PC. I got same error with

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Tony Godshall
Um, your problem is here... # parted mkpartfs primary fat16 0.0 100% FAT16 is limited to 2 gibibytes ( ;-) ) On Nov 13, 2007 12:01 AM, Peter Skogström [EMAIL PROTECTED] wrote: Hi I have done some tests with doing a customized partitiontable in lh_binary_usb-hdd, but I got trouble when

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Daniel Baumann
Tony Godshall wrote: Um, your problem is here... # parted mkpartfs primary fat16 0.0 100% FAT16 is limited to 2 gibibytes ( ;-) ) well.. that's just broken.. one shall not use parted to format partitions, but the dedicated tools for that (mkfs.*). not really related, but anyway: for the

Is it possible to have the Debian Installer install the build?

2007-11-14 Thread Lance
I was wondering if it possible to make debian-installer install the custom build (extracted squashfs) rather than fetch the packages to install? If so, how? Any information that would point me in the right direction?___ debian-live-devel mailing list

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Peter Skogström
Tony Godshall wrote: Um, your problem is here... # parted mkpartfs primary fat16 0.0 100% FAT16 is limited to 2 gibibytes ( ;-) ) The 100% stuff is from the orginal lh_binary_usb-hdd I used 101 as in MiB in my parted case. But I did a check again now and found the error. Because I use an

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Daniel Baumann
Peter Skogström wrote: mkfs.vfat -F 16 -n DEBIAN_LIVE ${FREELO} yep; since mkfs.vfat can't use automatically fat32 on his own, we need to force -F 32 for partitions bigger than 2gb. but for that, i was too tired now, will do tomorrow. additionally, it would be nice if one could specify a custom

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Peter Skogström
Daniel Baumann wrote: Tony Godshall wrote: Um, your problem is here... # parted mkpartfs primary fat16 0.0 100% FAT16 is limited to 2 gibibytes ( ;-) ) well.. that's just broken.. one shall not use parted to format partitions, but the dedicated tools for that (mkfs.*). not really

Re: If usb-hdd image larger than 2000MB aufs gets trouble (for me)

2007-11-14 Thread Peter Skogström
Daniel Baumann wrote: Peter Skogström wrote: mkfs.vfat -F 16 -n DEBIAN_LIVE ${FREELO} yep; since mkfs.vfat can't use automatically fat32 on his own, we need to force -F 32 for partitions bigger than 2gb. but for that, i was too tired now, will do tomorrow. additionally, it would be nice

A speedup for lh_binary_usb-hdd

2007-11-14 Thread Peter Skogström
Hi I have replaced dd if=/dev/zero of=chroot/binary.img bs=1024k count=${REAL_DIM} With this dd if=/dev/zero of=chroot/binary.img bs=1024k count=0 seek=${REAL_DIM} This created the file in an instant. A sparse file with the right size filled with zeroes. When going up in size for the image,