SVN installation problem

2006-10-04 Thread Tahir Abdul Rauf Butt
hi,     As you might know that we are working to translate Debian-installer in urdu for DEBIAN UBUNTU 5.10 (Breezy).     To Take the source of Installer we need to install SVN on our system, but we are getting some problems.     We have downloaded both the DEB and the Source packages, but they are all showing some dependency problems.     Is there any easy way to install SVN on this system, or some Authentic Procedure to install it.     Also, if u have SVN installed on your system, as we are having some problems on our system, Could you send me the Source Code after checking it out from SVN with the following command,           svn co svn://svn.debian.org/svn/d-i/trunk
 \      debian-installer  ---     Hoping For Best Response   Tahir Rauf Butt Bsc(Hons). CS PU College of ITwww.geocities.com\linux_kernel_worm Send instant messages to your online friends http://uk.messenger.yahoo.com 

Customization-modules: working version

2006-10-04 Thread Nathanael Nerode
OK, after much work I have a functional version of customization-modules,
at 
http://home.twcny.rr.com/nerode/neroden/debian/customization-modules_0.7.tar.gz 
.

http//home.twcny.rr.com/nerode/neroden/debian/dummy-udeb_0.2_all.udeb contains
a mostly-empty udeb which I use as a test case: this is the udeb I attempt to
install as a "customization module".  Look for /lib/firmware/dummy-file.txt.

Loading from CD-ROM is disabled because of unforeseen problems -- loading
cdrom-retriever causes the CD-ROM to be checked for validity, and of course the 
netboot
CD isn't a valid Debian apt source.  I suspect that the best solution will be 
tweaks
of a similar scale to the tweaks I made to net-retriever (small tweaks, that 
is).

Loading from the network is untested, mainly because I haven't set up a network 
site
to load from.

Loading from floppy, however, *works* as of now.

One minor issue: upon configuring anna, which happens when I invoke the
customization-modules main menu item, anna asks about kernel module loading.  I 
have
simply been saying "no".  Is there some way to avoid this -- to tell anna 'do 
that
later, not now'?  Under the expected use case, we may well want to load the
customization modules specifically *before* loading kernel modules.

Future plans: I think I'll have to break this into four binary packages.  One
for the main menu item, and one for each of the possible sources.  This is due
to dependencies: I don't want choose-mirror to configure when the user didn't 
choose
net, for instance.

All in all, this is going pretty well.

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

Bush admitted to violating FISA and said he was proud of it.
So why isn't he in prison yet?...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#391021: debian-installer: [amd64] main-menu segfaults : loop for "kbd-mode: setting console mode to Unicode"

2006-10-04 Thread Pierre Machard
Package: debian-installer
Version: AMD64 daily-build 29 sept 2006
Severity: normal


Hi,

I downloaded the lastest version of debian-installer on :

http://people.debian.org/~kroeckx/d-i/images/daily/hd-media/vmlinuz
http://people.debian.org/~kroeckx/d-i/images/daily/hd-media/initrd.gz

And a business-card iso on :

http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-businesscard.iso
(debian-testing-amd64-businesscard.iso  04-Oct-2006 03:30   34M )


The booting process is ok. However right after choosing the language, It
ended in an infinite loop. main-menu segfaults and indefinitely I have
kbd-mode: setting console mode to Unicode


Can you please fix this issue ?

Thanks,

Pierre Machard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Debian Installer Artwork

2006-10-04 Thread André Luiz Rodrigues Ferreira
Hi!I'm working in an artwork[1] for Debian Installer GUI on Etch release.About the icons, how many icons can I use?Please, send ideas and opinions...Thanks!Links: [1] - 
http://wiki.debian.org/DebianDesktopArtwork/DebianInstallerEtch-- Andre Luiz Rodrigues Ferreira (si0ux) <[EMAIL PROTECTED]> ***
Orlandia - SP - Brazil"O que mais preocupa não é nem o grito dos violentos, dos corruptos, dos desonestos, dos sem-caráter, dos sem-ética.O que mais preocupa é o silêncio dos bons" - Martin Lutter King


partman-auto bug for multiple disks

2006-10-04 Thread Simon Huggins
partman-auto has been changed now to deal with multiple disks for other
methods but it's broken:

case "$method" in
regular)
for disk in $disks; do
id=$(dev_to_partman "$disk") || true
if [ -n "$id" ]; then
autopartition "$id"
exit 0
fi
done
exit 1
;;

The exit 0 should be outside the for loop I think.  In fact I would
propose the following patch but I'd like David/Frans to comment on it
before I just apply it.


--- initial_auto.orig   2006-10-04 12:31:18.0 +0100
+++ initial_auto2006-10-04 12:31:39.0 +0100
@@ -55,10 +55,9 @@
id=$(dev_to_partman "$disk") || true
if [ -n "$id" ]; then
autopartition "$id"
-   exit 0
fi
done
-   exit 1
+   exit 0
;;
lvm)
search-path autopartition-lvm || exit 1
@@ -66,10 +65,9 @@
id=$(dev_to_partman "$disk") || true
if [ -n "$id" ]; then
autopartition-lvm "$id"
-   exit 0
fi
done
-   exit 1
+   exit 0
;;
crypto)
search-path autopartition-crypto || exit 1
@@ -77,10 +75,9 @@
id=$(dev_to_partman "$disk") || true
if [ -n "$id" ]; then
autopartition-crypto "$id"
-   exit 0
fi
done
-   exit 1
+   exit 0
;;
*)
# Unsupported method

-- 
 _[EMAIL PROTECTED]  -+*+- fou, con et anglais  _
(_)  "No problem is too big it can't be run away from" -- Linus  (_)
(_)  (_)
  \______/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: SVN installation problem

2006-10-04 Thread Eddy Petrișor
Tahir Abdul Rauf Butt wrote:
> hi,
>
>   As you might know that we are working to translate Debian-installer in urdu 
> for DEBIAN UBUNTU 5.10 (Breezy).
>
>   To Take the source of Installer we need to install SVN on our system, but 
> we are getting some problems.
>
>   We have downloaded both the DEB and the Source packages, but they are all 
> showing some dependency problems.

Please address your question on the Ubuntu forums, this is a user issue.

>   Hoping For Best Response

You will get that in the Ubuntu forums / mailing lists.

-- 
Regards,
EddyP
=
"Imagination is more important than knowledge" A.Einstein


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: partman-auto bug for multiple disks

2006-10-04 Thread Simon Huggins
On Wed, Oct 04, 2006 at 02:01:44PM +0200, David Härdeman wrote:
> On Wed, October 4, 2006 13:33, Simon Huggins said:
> > partman-auto has been changed now to deal with multiple disks for other
> > methods but it's broken:
> >
> > case "$method" in
> > regular)
> > for disk in $disks; do
> > id=$(dev_to_partman "$disk") || true
> > if [ -n "$id" ]; then
> > autopartition "$id"
> > exit 0
> > fi
> > done
> > exit 1
> > ;;
> >
> > The exit 0 should be outside the for loop I think.  In fact I would
> > propose the following patch but I'd like David/Frans to comment on it
> > before I just apply it.
> I just added support for *specifying* multiple disks. All partman-auto
> methods still need to be changed to actually take advantage of
> multiple disks.

> So I don't think (from a very quick reading) that the code is currently
> incorrect (or I'm daft and you need to provide more detail).

Since partman-auto version 55, multiple disks have been supported so
that partman-auto-raid would work.

> Currently, the code will go trough the specified disk(s), use the
> first one which is found and considered valid (by dev_to_partman) and
> partition it. If you did the partitioning on multiple disks right now,
> you'd get several independently partitioned disks (each with /boot
> etc).

Or you'd get multiple raid partitions created on multiple disks which
something like partman-auto-raid could turn into real raid devices.

> If no disk is found, an error will be generated (hence the exit 1 outside
> the loop).

Right ok.

I would still like this to go back to the way it was in version 55
(revision 39879 e.g.).

Otherwise I guess I can add a method = "raid" that does this.

-- 
 _[EMAIL PROTECTED]  -+*+- fou, con et anglais  _
(_)  "Ahh.. Very passable, this, very passable." - Monty Python  (_)
(_)  (_)
  \______/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer Artwork

2006-10-04 Thread Eddy Petrișor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

[Not sure if you are subscribed, so -boot is kept in CC]

André Luiz Rodrigues Ferreira wrote:
> Hi!
> I'm working in an artwork[1] for Debian Installer GUI on Etch release.
> About the icons, how many icons can I use?
> 
> Please, send ideas and opinions...

Your proposal looks really nice.

I have added some hints on both the wiki page with artwork and also on
the Debian Installer artwork.

Hint: you can subscribe to a wiki page and receive notification mails
when somebody changes the page in question.

- --
Regards,
EddyP
=
"Imagination is more important than knowledge" A.Einstein
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFI6fJY8Chqv3NRNoRAqUdAKCe1mOsQDvcfLhuQaPzQAbJ5ogMqACgwqE5
aS5WeEkAfhL2O9zV3FDRgCY=
=YfQX
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer Artwork

2006-10-04 Thread Otavio Salvador
"André Luiz Rodrigues Ferreira" <[EMAIL PROTECTED]> writes:

>Hi!
>I'm working in an artwork[1] for Debian Installer GUI on Etch release.
>About the icons, how many icons can I use?
>Please, send ideas and opinions...

Congrats. I liked your proposal.

I'm also glad to see you working on it to Debian :-D

See you

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://www.freedom.ind.br/otavio
-
"Microsoft gives you Windows ... Linux gives
 you the whole house."



Re: Debian Installer Artwork

2006-10-04 Thread Attilio Fiandrotti

André Luiz Rodrigues Ferreira wrote:

Hi!
I'm working in an artwork[1] for Debian Installer GUI on Etch release.
About the icons, how many icons can I use?

Please, send ideas and opinions...

Thanks!

Links:
[1] - http://wiki.debian.org/DebianDesktopArtwork/DebianInstallerEtch



Nice banner, i like it!
but, shouldn't it be redish instead of bluish?
Apart from the GTK theme, we need the following graphics

-a banner with the debian logo (like the one you provided)
-an icon thet means "note"
-an icon that means "error"

look also here

http://svn.debian.org/wsvn/d-i/trunk/packages/rootskel-gtk/src/usr/share/graphics/?rev=0&sc=0

cheers

Attilio


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: partman-auto bug for multiple disks

2006-10-04 Thread David Härdeman
On Wed, October 4, 2006 13:33, Simon Huggins said:
> partman-auto has been changed now to deal with multiple disks for other
> methods but it's broken:
>
>   case "$method" in
>   regular)
>   for disk in $disks; do
>   id=$(dev_to_partman "$disk") || true
>   if [ -n "$id" ]; then
>   autopartition "$id"
>   exit 0
>   fi
>   done
>   exit 1
>   ;;
>
> The exit 0 should be outside the for loop I think.  In fact I would
> propose the following patch but I'd like David/Frans to comment on it
> before I just apply it.

I just added support for *specifying* multiple disks. All partman-auto
methods still need to be changed to actually take advantage of multiple
disks.

So I don't think (from a very quick reading) that the code is currently
incorrect (or I'm daft and you need to provide more detail).

Currently, the code will go trough the specified disk(s), use the first
one which is found and considered valid (by dev_to_partman) and partition
it. If you did the partitioning on multiple disks right now, you'd get
several independently partitioned disks (each with /boot etc).

If no disk is found, an error will be generated (hence the exit 1 outside
the loop).

On a related note, the method that would be easiest to change would
probably be partman-auto-lvm since it only needs to do the pvcreate dance
on each disk, then lvcreate with all used disks and after that it can
proceed as usual without any further code changes.

-- 
David Härdeman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer Artwork

2006-10-04 Thread André Luiz Rodrigues Ferreira
2006/10/4, Attilio Fiandrotti <[EMAIL PROTECTED]>:
André Luiz Rodrigues Ferreira wrote:> Hi!> I'm working in an artwork[1] for Debian Installer GUI on Etch release.> About the icons, how many icons can I use?>> Please, send ideas and opinions...
>> Thanks!>> Links:> [1] - http://wiki.debian.org/DebianDesktopArtwork/DebianInstallerEtch>Nice banner, i like it!
:)but, shouldn't it be redish instead of bluish?
Hmmm... Probably the default desktops (GNOME and KDE) will to use blueish themes[1] and would be very nice if we use similar colors, with same look styles.
Apart from the GTK theme, we need the following graphics-a banner with the debian logo (like the one you provided)-an icon thet means "note"-an icon that means "error"look also here
http://svn.debian.org/wsvn/d-i/trunk/packages/rootskel-gtk/src/usr/share/graphics/?rev=0&sc=0
Certain! I will go to draw.Thanks!Link:[1] - http://wiki.debian.org/DebianDesktopArtwork/EtchRC1
-- Andre Luiz Rodrigues Ferreira (si0ux) <[EMAIL PROTECTED]> ***Orlandia - SP - Brazil"O que mais preocupa não é nem o grito dos violentos, dos corruptos, dos desonestos, dos sem-caráter, dos 
sem-ética.O que mais preocupa é o silêncio dos bons" - Martin Lutter King


Re: partman-auto bug for multiple disks

2006-10-04 Thread Simon Huggins
On Wed, Oct 04, 2006 at 02:30:48PM +0200, David Härdeman wrote:
> On Wed, October 4, 2006 14:17, Simon Huggins said:
> > I would still like this to go back to the way it was in version 55
> > (revision 39879 e.g.).
> >
> > Otherwise I guess I can add a method = "raid" that does this.
> Yes, the idea was that every partman-auto-* package should have it's own
> entry under the "case "$method"" clause.

> Right now it limits it to one disk for the other partman-auto methods (as
> they don't support multiple disks), so feel free to add one for raid which
> doesn't.

> It should mean that the raid stuff will tie in correctly with the
> preseeding stuff as well (since users can specify partman-auto/method
> string raid, partman-auto/disks string /dev/hda,/dev/hdb).

Fair enough.  I've committed something that brings back that
functionality as the raid method now.

Simon.

-- 
Black Cat Networks-(  Documentation is worth it just to  )-
UK domain, email and web hosting  -(   be able to answer all your mail   )-
http://www.blackcatnetworks.co.uk -(   with 'RTFM' - Alan Cox)-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer Artwork

2006-10-04 Thread André Luiz Rodrigues Ferreira
2006/10/4, Otavio Salvador <[EMAIL PROTECTED]>:
"André Luiz Rodrigues Ferreira" <[EMAIL PROTECTED]> writes:>Hi!>I'm working in an artwork[1] for Debian Installer GUI on Etch release.
>About the icons, how many icons can I use?>Please, send ideas and opinions...Congrats. I liked your proposal.I'm also glad to see you working on it to Debian :-D:)
Thanks for the incentive.See you--O T A V I OS A L V A D O R
- E-mail: [EMAIL PROTECTED]  UIN: 5906116 GNU/Linux User: 239058 GPG ID: 49A5F855 Home Page: 
http://www.freedom.ind.br/otavio-"Microsoft gives you Windows ... Linux gives you the whole house."-- 
Andre Luiz Rodrigues Ferreira (si0ux) <[EMAIL PROTECTED]> ***Orlandia - SP - Brazil"O que mais preocupa não é nem o grito dos violentos, dos corruptos, dos desonestos, dos sem-caráter, dos 
sem-ética.O que mais preocupa é o silêncio dos bons" - Martin Lutter King


Re: partman-auto bug for multiple disks

2006-10-04 Thread David Härdeman
On Wed, October 4, 2006 14:17, Simon Huggins said:
> I would still like this to go back to the way it was in version 55
> (revision 39879 e.g.).
>
> Otherwise I guess I can add a method = "raid" that does this.

Yes, the idea was that every partman-auto-* package should have it's own
entry under the "case "$method"" clause.

Right now it limits it to one disk for the other partman-auto methods (as
they don't support multiple disks), so feel free to add one for raid which
doesn't.

It should mean that the raid stuff will tie in correctly with the
preseeding stuff as well (since users can specify partman-auto/method
string raid, partman-auto/disks string /dev/hda,/dev/hdb).

-- 
David Härdeman


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: call for testers: powerpc graphical debian installer

2006-10-04 Thread Eddy Petrișor
Diego Biurrun wrote:
> On Mon, Oct 02, 2006 at 01:40:13AM +0200, Sven Luther wrote:
>> It seems we finally got most issues with the graphical installer on powerpc
>> sorted out, thanks to all those who tested, and to Attilio who provided the
>> patch. I have done a build which you can find at :
>>
>>   http://people.debian.org/~luther/g-i/
>>
>> (Well, in an hour or so, once i finish uploading it).
>>
>> We would like people to test the gtk-miniiso images, both on 32bit and 64bit
>> machines, and would probably be most interested in tests from those not using
>> radeon graphic cards, like those having nvidia based powermacs.
> 
> I have a February 2005 G4 PowerBook with nVidia graphics chipset.  The
> installer fails completely.
> 
> If I just type 'install' at the boot prompt the screen goes black after
> the kernel messages and remains black with a small line prompt appearing
> in the upper left corner at regular intervals.
> 
> With 'install video=ofonly' (or whatever the suggested alternative boot
> command was) I get a ton of DirectFB error messages that loop quickly.
> If it's helpful I can attempt to jot them down.
> 
> Here is my hardware info:
> 
> cerebus:~$ cat /proc/cpuinfo | grep motherboard
> motherboard : PowerBook6,8 MacRISC3 Power Macintosh 
> 
> cerebus:~$ cat /proc/fb
> 0 NV32
> 
> cerebus:~$ lspci | grep VGA
> :00:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX 
> Go5200] (rev a1)

I haev just added a wiki page on
http://wiki.debian.org/DebianInstaller/GUIPowerPCTesting that details
how the G-I should be tested for PowerPC architecture.

-- 
Regards,
EddyP
=
"Imagination is more important than knowledge" A.Einstein


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer Artwork

2006-10-04 Thread André Luiz Rodrigues Ferreira
I added some icons.Please look now:http://wiki.debian.org/DebianDesktopArtwork/DebianInstallerEtchThanks!
2006/10/4, Attilio Fiandrotti <[EMAIL PROTECTED]>:
André Luiz Rodrigues Ferreira wrote:> Hi!> I'm working in an artwork[1] for Debian Installer GUI on Etch release.> About the icons, how many icons can I use?>> Please, send ideas and opinions...
>> Thanks!>> Links:> [1] - http://wiki.debian.org/DebianDesktopArtwork/DebianInstallerEtch>Nice banner, i like it!
but, shouldn't it be redish instead of bluish?Apart from the GTK theme, we need the following graphics-a banner with the debian logo (like the one you provided)-an icon thet means "note"-an icon that means "error"
look also herehttp://svn.debian.org/wsvn/d-i/trunk/packages/rootskel-gtk/src/usr/share/graphics/?rev=0&sc=0
cheersAttilio-- Andre Luiz Rodrigues Ferreira (si0ux) <[EMAIL PROTECTED]> ***
Orlandia - SP - Brazil"O que mais preocupa não é nem o grito dos violentos, dos corruptos, dos desonestos, dos sem-caráter, dos sem-ética.O que mais preocupa é o silêncio dos bons" - Martin Lutter King


Re: call for testers: powerpc graphical debian installer

2006-10-04 Thread Diego Biurrun
On Mon, Oct 02, 2006 at 01:40:13AM +0200, Sven Luther wrote:
> 
> It seems we finally got most issues with the graphical installer on powerpc
> sorted out, thanks to all those who tested, and to Attilio who provided the
> patch. I have done a build which you can find at :
> 
>   http://people.debian.org/~luther/g-i/
> 
> (Well, in an hour or so, once i finish uploading it).
> 
> We would like people to test the gtk-miniiso images, both on 32bit and 64bit
> machines, and would probably be most interested in tests from those not using
> radeon graphic cards, like those having nvidia based powermacs.

I have a February 2005 G4 PowerBook with nVidia graphics chipset.  The
installer fails completely.

If I just type 'install' at the boot prompt the screen goes black after
the kernel messages and remains black with a small line prompt appearing
in the upper left corner at regular intervals.

With 'install video=ofonly' (or whatever the suggested alternative boot
command was) I get a ton of DirectFB error messages that loop quickly.
If it's helpful I can attempt to jot them down.

Here is my hardware info:

cerebus:~$ cat /proc/cpuinfo | grep motherboard
motherboard : PowerBook6,8 MacRISC3 Power Macintosh 

cerebus:~$ cat /proc/fb
0 NV32

cerebus:~$ lspci | grep VGA
:00:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX 
Go5200] (rev a1)

best regards

Diego


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#391047: [debian-installer amd64 20060929] no /var/log/debian-installer/ when /var/log is on another partition

2006-10-04 Thread Pierre Machard
Package: debian-installer
Severity: normal

Hi,

I installed /var/log on a dedicated partition. Once the system installed
I did not find the directory /var/log/debian-installer/ nor any 
debian-installer log file.

Cheers,
-- 
Pierre Machard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: call for testers: powerpc graphical debian installer

2006-10-04 Thread Sven Luther
On Wed, Oct 04, 2006 at 03:42:31PM +0200, Diego Biurrun wrote:
> On Mon, Oct 02, 2006 at 01:40:13AM +0200, Sven Luther wrote:
> > 
> > It seems we finally got most issues with the graphical installer on powerpc
> > sorted out, thanks to all those who tested, and to Attilio who provided the
> > patch. I have done a build which you can find at :
> > 
> >   http://people.debian.org/~luther/g-i/
> > 
> > (Well, in an hour or so, once i finish uploading it).
> > 
> > We would like people to test the gtk-miniiso images, both on 32bit and 64bit
> > machines, and would probably be most interested in tests from those not 
> > using
> > radeon graphic cards, like those having nvidia based powermacs.
> 
> I have a February 2005 G4 PowerBook with nVidia graphics chipset.  The
> installer fails completely.
> 
> If I just type 'install' at the boot prompt the screen goes black after
> the kernel messages and remains black with a small line prompt appearing
> in the upper left corner at regular intervals.
> 
> With 'install video=ofonly' (or whatever the suggested alternative boot
> command was) I get a ton of DirectFB error messages that loop quickly.
> If it's helpful I can attempt to jot them down.
> 
> Here is my hardware info:
> 
> cerebus:~$ cat /proc/cpuinfo | grep motherboard
> motherboard : PowerBook6,8 MacRISC3 Power Macintosh 
> 
> cerebus:~$ cat /proc/fb
> 0 NV32
> 
> cerebus:~$ lspci | grep VGA
> :00:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX 
> Go5200] (rev a1)

Thanks diego, this is great.

Would you be able to do the testing as suggested by Eddy, disabling the nvidia
module as well as the linux_input one, and see if any of these make things
better for you ? 

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: install on new computer; no cd available

2006-10-04 Thread dtutty
On Mon, Oct 02, 2006 at 11:43:18PM -0400, Nathanael Nerode wrote:
> >Any other ideas?  I would really like floppy booting to work since I can
> >make those on my 486.
> 
> Floppy booting is suffering from the size of recent Linux kernels.  I believe
> that it works for Debian 3.1, but don't quote me on that.

No, the kernel size issue was an issue then too.

> 
> I think your best move at this point is to order a official CD or DVD set for
> Debian 3.1, by snail mail.  Probably cheaper, and likely quicker, than 
> 
> http://www.debian.org/distrib/
> 
I have sent an email to the Canadian vendor listed on debian's page, 
but it hasn't been able to go through (they must have changed their
address if they're still in businsess.

> (If you have a dedicated phone line for your modem and have no per-minute 
> charges for your dialup access, then maybe it's more convenient to download 
> everything, but otherwise)
No per-minute charges, and can interrupt and resume using wget -c
> 
> But If you don't want to do that, here's a possible scheme:
Thanks,
Its another possible way, I'll consider trying it.

The problem from a download perspective is that I want (since its
bleeding edge hardware) Etch and don't want to wait for the December
release.  This means that all downloads have to be completed in the week
that they are valid.

Is there a sub-project that allows for a tiny initial kernel boot with
later download of the proper kernel to install?  I've never needed to
compile a kernel and I can't now given the small memory and disk
available on the 486.  Surely I'm not the only one on the planet who has
need of a fresh install without a CD burner.  Some sytem with just
enough smarts to recognize a keyboard (PS/2 or USB), VGA text screen (or
serial console?), a modem for PPP, and basic networking.  Given an
initial floppy image and an empty USB stick, it could do the download of
the USB stick install images and set up the stick for the standard USB
install.  

I'll look into this further; I may be able to do this:
-   on the 486, download the USB install images to zip
-   boot the new computer using 3.0 install
-   from the shell, install the USB files to the USB stick
-   do a normal USB install.

If this works, then it becomes a flexible way to make the USB install
when only the target computer supports USB.  The same method can be
used, using any transport to get the data from the old computer to the
new one: zip, network (NFS, scp), split files on floppy, etc; whatever
media the two computers have in common.  For me, right now, it requires
that the 3.0 install CD (or floppy) recognized a USB stick; I'll have to
see.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: install on new computer; no cd available

2006-10-04 Thread dtutty
On Tue, Oct 03, 2006 at 03:28:10PM -0400, Joey Hess wrote:
> [EMAIL PROTECTED] wrote:
> > 1.  Download and make floppies.  Is there any forcast when Etch
> > will have floppy-install working?  With woody, I tested that
> > I could boot from floppy then install base off the zip.
> 
> I don't anticipate etch shipping with floppy images, since the changes
> needed for that have been blocked by 6 months or so by klibc changes,
> with little apparent progress.
> 
> Sarge can be installed from floppies.
> 
Can the sarge installer recognize SATA drives via the SATA controller
on the nVidia nForce 570 chipset?  If so, I don't need to worry about
installing Etch at all, just stick with 'stable' and get Etch when it
becomes stable.






-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#282308: Listar command results: -- Binary/unsupported file stripped by Listar --

2006-10-04 Thread Listar
Request received for list 'revuesim' via request address.

>> I hope you accept the result!
Unknown command.

---
Gestionnaire de liste Listar/0.42 - fin de traitement/job execution complete.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: SVN installation problem

2006-10-04 Thread Christian Perrier
Quoting Tahir Abdul Rauf Butt ([EMAIL PROTECTED]):
> hi,
>
>   As you might know that we are working to translate Debian-installer in urdu 
> for DEBIAN UBUNTU 5.10 (Breezy).


I'm afraid that there is no such thing as Debian Ubuntu..:-)

What I of course suspect is that you plan to work on the translation
of the Ubuntu installer...which happens to be the Debian Installer.

Therefore, as I wrote you, getting through the formalized New Language
Process is a pre-requirement. This process is exactly designed to sort
out all issues you might have to be able to do some productive work.

The Debian Installer team welcomes new l10n teams, without
restriction. However, we request them to go through this process.

I already pointed you to the appropriate documentation in
debian-l10n-arabic, IIRC.

BTW, have you considered working from the Hindi translations, get
through an automated process and then correct the result of it? From
my understanding of relations betwee the Hindi and Urdu languages,
that could be a great way to have some fast progress.



signature.asc
Description: Digital signature


Re: Debian Installer Artwork

2006-10-04 Thread Christian Perrier

> Hmmm... Probably the default desktops (GNOME and KDE) will to use blueish
> themes[1] and would be very nice if we use similar colors, with same look
> styles.


BTW, from my understanding, Gnome, or at least GDM, was seeking for
some sepcific "Debian" theme to solve the issue of the default GDM
theme on Debian desktop systems.

See the gdm bug log (I haven't look there for a while) and possibly
discuss with Ryan Murray, its maintainer, as well as the Debian Gnome
team.




signature.asc
Description: Digital signature


Processed: Re: Bug#391047: [debian-installer amd64 20060929] no /var/log/debian-installer/ when /var/log is on another partition

2006-10-04 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 391047 save-logs
Bug#391047: [debian-installer amd64 20060929] no /var/log/debian-installer/ 
when /var/log is on another partition
Bug reassigned from package `debian-installer' to `save-logs'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread Jérémy Bobbio
Package: partman-auto-crypto
Severity: critical
Justification: causes serious data loss

Hi!

I have tried to use partman-auto-crypto by selecting
"Automatically set up encrypted LVM" in the partman menu.

I initially thought that it was going to use the free space which was
available on the hard-drive.

But, while it was wiping the partition, I had a doubt.  So one "Alt+F2 +
fdisk -l" later, I had the bad surprise to discover that it had actually
repartioned the whole drive asking me if it was what I really wanted...

I definetly think that a confirmation screen would be needed here. :D

Regards,
-- 
Jérémy


signature.asc
Description: Digital signature


Bug#391047: [debian-installer amd64 20060929] no /var/log/debian-installer/ when /var/log is on another partition

2006-10-04 Thread Frans Pop
reassign 391047 save-logs
thanks

On Wednesday 04 October 2006 16:37, Pierre Machard wrote:
> I installed /var/log on a dedicated partition. Once the system
> installed I did not find the directory /var/log/debian-installer/ nor
> any debian-installer log file.

Which exact version of the installer were you using (please provide full 
URL of the image you downloaded)?

The directory is called /var/log/installer.
I seriously doubt that /target/var/log/ being on a separate partition 
affects the saving of the installer logs, unless the partition was not 
mounted correctly during the installation.

Please check if the installer directory is there if you unmount /var/log.

Please check the syslog from the installation for possible causes if you 
manage to find it.

Cheers,
FJP


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Bug#390760: debian-installer: Support targeted SELinux in the installer

2006-10-04 Thread Joey Hess
Frans Pop wrote:
> Are we talking about the same thing here?
> 
> I thought the consensus was that selinux should be added as a separate 
> standard (enabled by default) task to tasksel for Etch and not the 
> packages promoted to priority standard.

No, we've been talking about making the packages priority standard.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: Dictionaries-common prompts users FIVE times during a default French desktop install

2006-10-04 Thread Joey Hess
Agustin Martin wrote:
> I suppose this also means that all packages not having special
> pre-dependencies are configured at the end. Otherwise if all ispell dicts are
> configured and a reasonable default selected, if another dict is configured
> before the good option is unpacked, things will fail because postinst cannot
> set default ispell dict symlink. Same problem might appear with other shared
> questions.

The debconf manual documents how to use config scripts for shared
questions to ensure that only one is asked, which happens before any
packages are installed. I don't know if dict currently uses this method
although IIRC it used to.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread Frans Pop
On Wednesday 04 October 2006 19:19, Jérémy Bobbio wrote:
> I have tried to use partman-auto-crypto by selecting
> "Automatically set up encrypted LVM" in the partman menu.

> I initially thought that it was going to use the free space which was
> available on the hard-drive.

David:
Where has the "Erase entire disk and ..." part of this menu entry (and the 
one for auto-lvm disappeared to? IIRC that was in the original 
discussion.


pgpY2l1gIiEMD.pgp
Description: PGP signature


Re: Debian Installer Artwork

2006-10-04 Thread Luis Matos
Please see debian artwork wiki[1], and debian-desktop discussion about
artwork[2][3]

[1] http://wiki.debian.org/DebianDesktopArtwork/
[2] http://lists.debian.org/debian-desktop/2006/09/msg00042.html
[3] http://lists.debian.org/debian-desktop/2006/10/msg3.html

Qua, 2006-10-04 às 18:23 +0200, Christian Perrier escreveu:
> > Hmmm... Probably the default desktops (GNOME and KDE) will to use blueish
> > themes[1] and would be very nice if we use similar colors, with same look
> > styles.
> 
> 
> BTW, from my understanding, Gnome, or at least GDM, was seeking for
> some sepcific "Debian" theme to solve the issue of the default GDM
> theme on Debian desktop systems.
> 
> See the gdm bug log (I haven't look there for a while) and possibly
> discuss with Ryan Murray, its maintainer, as well as the Debian Gnome
> team.
> 
> 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread David Härdeman

On Wed, Oct 04, 2006 at 08:23:29PM +0200, Frans Pop wrote:

On Wednesday 04 October 2006 19:19, Jérémy Bobbio wrote:

I have tried to use partman-auto-crypto by selecting
"Automatically set up encrypted LVM" in the partman menu.



I initially thought that it was going to use the free space which was
available on the hard-drive.


David:
Where has the "Erase entire disk and ..." part of this menu entry (and the 
one for auto-lvm disappeared to? IIRC that was in the original 
discussion.


It is currently only used on the first menu for the regular partitioning 
method. I understand the confusion this may cause...so perhaps the best 
solution would be to expand the partman-auto/select_disk and 
partman-auto/select_disks templates.


They currently say:

"Select disk to partition:"


How about changing them to:
"Select disk to partition (please note that the entire disk will 
be erased):"


--
David Härdeman



Re: Netinst.iso with Kernel 2.6.18-1-486

2006-10-04 Thread Matthias Popp
Am Montag 02 Oktober 2006 18:29 schrieb Frans Pop:
> On Monday 02 October 2006 18:23, Matthias Popp wrote:
> > Am Montag 02 Oktober 2006 15:50 schrieb Frans Pop:
> > > (Please reply only to the mailing list. We read it.)
>
> Why are you ignoring this request?
>
> > > On Monday 02 October 2006 00:41, Matthias Popp wrote:
> > > > Am Samstag 30 September 2006 18:17 schrieb Frans Pop:
> > > > > On Saturday 30 September 2006 17:39, Matthias Popp wrote:
> > > > > > I have build a netinst.iso with kernel 2.6.18-1-k7. It seems
> > > > > > the cd

> > No , I haven't pcmcia . Two  Boards are MSI Delta 6  one with a AMD
> > Athlon XP and one with AMD Duron 1300   and one Board is an Asus  P5AB
> > wit AMD K6 processor.
>
> That probably makes it even more a kernel bug...
> Did you file one yet?

I filed a bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=390809
Please read the answer from Bastian Blank.   And its comes from Udev. > 0.090   

 
-- 
with best regards from Dortmund
                                                     Matthias Popp (KBDCALLS)


pgpu75duc0e4j.pgp
Description: PGP signature


Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread Frans Pop
On Wednesday 04 October 2006 22:06, David Härdeman wrote:
> >Where has the "Erase entire disk and ..." part of this menu entry (and
> > the one for auto-lvm disappeared to? IIRC that was in the original
> > discussion.
>
> It is currently only used on the first menu for the regular
> partitioning method. I understand the confusion this may cause...so
> perhaps the best solution would be to expand the
> partman-auto/select_disk and
> partman-auto/select_disks templates.
[...]
> How about changing them to:
> "Select disk to partition (please note that the entire disk will
> be erased):"

What's against bringing it back in the method dialog?



Bug#390180: marked as done (partman-crypto fails due to incompatible libdevmapper)

2006-10-04 Thread Debian Bug Tracking System
Your message dated Wed, 4 Oct 2006 23:18:13 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Fixed in version 14
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
package: partman-crypto


Hi,

partman-crypto on current daily images (netinst 20060914, 20060927)
fails to setup encrypted volumes with the following error:

  Configuration of encrypted volumes failed
  An error occured while configuring encrypted volumes.

The log on the fourth console says:

  partman-crypto: Command failed
  partman-crypto: : Incompatible libdevmapper 1.02.08 (2006-07-17)
  (compat) and kernel driver
  _

in /var/log/parman the last line reads:

  /lib/partman/choose_partition/35crypto/do_option: cryptserup failed

-- 
Miroslav Kure

--- End Message ---
--- Begin Message ---

Version: 14

This was fixed in the above mentioned version. If you still see the 
problem in a recent d-i daily iso image, please reopen the bug report.


--
David Härdeman
--- End Message ---


Bug#390568: Bug #390568 fixed in SVN

2006-10-04 Thread David Härdeman

Sebastian wrote:

When doing manual partitioning, configuring a partition as "physical
volume for encryption" and then executing the mainmenu-entry "configure
encrypted volumes", the system will produce an error.


Thanks for the bug report, I've committed a fix to the SVN repo which 
will be included in the next partman-crypto upload.


--
David Härdeman



Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread David Härdeman

On Wed, Oct 04, 2006 at 11:05:51PM +0200, Frans Pop wrote:

On Wednesday 04 October 2006 22:06, David Härdeman wrote:

Where has the "Erase entire disk and ..." part of this menu entry (and
the one for auto-lvm disappeared to? IIRC that was in the original
discussion.


How about changing them to:
"Select disk to partition (please note that the entire disk will
be erased):"


What's against bringing it back in the method dialog?


Nothing, it's a matter of taste (meaning it's up to you to decide) :)

But I think it might be a bit confusing to see the "regular" entries on 
the method dialog and a similar entry for the other methods but without 
the disk:


"Erase entire disk: IDE1 Master (hda) - 1.1Gb Qemu harddisk"
"Erase entire disk: IDE2 Master (hdb) - 1.1Gb Qemu harddisk"
...
"Erase entire disk and automatically set up encrypted lvm"

The user would probably be left wondering which disk the last option 
refers to...not knowing that the disk choice will be the subject of the 
next dialogue?


--
David Härdeman



Processed: tagging 390568

2006-10-04 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.21
> tags 390568 + pending
Bug#390568: crypto-modules not loaded when needed
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: d-i beta3, raid, loop-aes and lvm

2006-10-04 Thread Philipp Engel

Hello David and Max,

thank you for your replies.

Am 03.10.2006 um 15:32 schrieb David Härdeman:

On Tue, October 3, 2006 15:16, Philipp Engel said:

Is that a bug, or is it just not possible?


If memory serves me right, the loop-AES utils do not have support  
(yet)
for automatically setting up the LVM volume after the encrypted  
module has
been setup. In addition the loop-AES tools lack the initramfs  
integration

to do the work (in the initramfs) for setting up the root partition.


Max talks about only having to tell partman-lvm that it may consider  
loop devices as valid backing devices. Your description of the  
solution in contrast  sounds far more time consuming and difficult...:)


So, can you tell me what's to do? I have checked out the source code  
of the debian installer and am currently reading the documentation,  
which is a good amount of text. I will see if I can manage to create  
my own boot disk, that will be an adventure already :)


For now, your alternatives are to use dm-crypt or to implement the  
missing

pieces in the loop-AES packages.


I installed using dm-crypt now, but I really would like to try loop- 
aes. I hope I will find the time to take a look at partman-crypt :)


Philipp
--
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."  Benjamin Franklin
http://www.filzip.com






PGP.sig
Description: Signierter Teil der Nachricht


Processing of linux-modules-di-alpha-2.6_1.00_alpha.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-alpha-2.6_1.00_alpha.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-alpha-2.6_1.00.dsc
  linux-modules-di-alpha-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-alpha-generic-di_1.00_alpha.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-arm-2.6_1.00_arm.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-arm-2.6_1.00_arm.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-arm-2.6_1.00.dsc
  linux-modules-di-arm-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-footbridge-di_1.00_arm.udeb
  loop-aes-modules-2.6.16-2-ixp4xx-di_1.00_arm.udeb
  loop-aes-modules-2.6.16-2-nslu2-di_1.00_arm.udeb
  loop-aes-modules-2.6.16-2-rpc-di_1.00_arm.udeb
  loop-aes-modules-2.6.16-2-s3c2410-di_1.00_arm.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-hppa-2.6_1.00_hppa.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-hppa-2.6_1.00_hppa.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-hppa-2.6_1.00.dsc
  linux-modules-di-hppa-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-parisc-di_1.00_hppa.udeb
  loop-aes-modules-2.6.16-2-parisc64-di_1.00_hppa.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-i386-2.6_1.00_i386.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-i386-2.6_1.00_i386.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-i386-2.6_1.00.dsc
  linux-modules-di-i386-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-486-di_1.00_i386.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-amd64-2.6_1.00_amd64.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-amd64-2.6_1.00_amd64.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-amd64-2.6_1.00.dsc
  linux-modules-di-amd64-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-amd64-generic-di_1.00_amd64.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-powerpc-2.6_1.00_powerpc.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-powerpc-2.6_1.00_powerpc.changes uploaded successfully to 
localhost
along with the files:
  linux-modules-di-powerpc-2.6_1.00.dsc
  linux-modules-di-powerpc-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-powerpc-di_1.00_powerpc.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-sparc-2.6_1.00_sparc.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-sparc-2.6_1.00_sparc.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-sparc-2.6_1.00.dsc
  linux-modules-di-sparc-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-sparc64-di_1.00_sparc.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-mipsel-2.6_1.00_mipsel.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-mipsel-2.6_1.00_mipsel.changes uploaded successfully to 
localhost
along with the files:
  linux-modules-di-mipsel-2.6_1.00.dsc
  linux-modules-di-mipsel-2.6_1.00.tar.gz
  loop-aes-modules-2.6.16-2-sb1-bcm91250a-di_1.00_mipsel.udeb
  loop-aes-modules-2.6.16-2-sb1a-bcm91480b-di_1.00_mipsel.udeb
  loop-aes-modules-2.6.16-2-r5k-cobalt-di_1.00_mipsel.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-powerpc-2.6_1.00_powerpc.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-powerpc-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-powerpc-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-powerpc-di_1.00_powerpc.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-powerpc-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-hppa-2.6_1.00_hppa.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-hppa-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-hppa-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-parisc-di_1.00_hppa.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-parisc64-di_1.00_hppa.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-hppa-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-sparc-2.6_1.00_sparc.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-sparc-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-sparc-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-sparc64-di_1.00_sparc.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-sparc-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-arm-2.6_1.00_arm.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-arm-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-arm-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-footbridge-di_1.00_arm.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-ixp4xx-di_1.00_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-nslu2-di_1.00_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-rpc-di_1.00_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-s3c2410-di_1.00_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-arm-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-i386-2.6_1.00_i386.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-i386-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-i386-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-486-di_1.00_i386.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-i386-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release based on linux-kernel-di-i386-2.6
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-amd64-2.6_1.00_amd64.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-amd64-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-amd64-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-amd64-generic-di_1.00_amd64.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-amd64-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-mipsel-2.6_1.00_mipsel.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-mipsel-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-mipsel-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-r5k-cobalt-di_1.00_mipsel.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-sb1-bcm91250a-di_1.00_mipsel.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-sb1a-bcm91480b-di_1.00_mipsel.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-mipsel-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-modules-di-alpha-2.6_1.00_alpha.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-alpha-2.6_1.00.dsc optional debian-installer
(new) linux-modules-di-alpha-2.6_1.00.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-alpha-generic-di_1.00_alpha.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-alpha-2.6 (1.00) unstable; urgency=low
 .
  [ Max Vozeler ]
  * First release
  * Add loop-aes-modules
 .
  [ Frans Pop ]
  * Built against loop-aes version 3.1d+3+3.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-modules-di-arm-2.6_1.01_arm.changes

2006-10-04 Thread Archive Administrator
linux-modules-di-arm-2.6_1.01_arm.changes uploaded successfully to localhost
along with the files:
  linux-modules-di-arm-2.6_1.01.dsc
  linux-modules-di-arm-2.6_1.01.tar.gz
  loop-aes-modules-2.6.16-2-footbridge-di_1.01_arm.udeb
  loop-aes-modules-2.6.16-2-nslu2-di_1.01_arm.udeb
  loop-aes-modules-2.6.16-2-rpc-di_1.01_arm.udeb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#391071: partman-auto-crypto: No confirmation before hard-drive wiping

2006-10-04 Thread Frans Pop
On Thursday 05 October 2006 00:03, David Härdeman wrote:
> >What's against bringing it back in the method dialog?
>
> Nothing, it's a matter of taste (meaning it's up to you to decide) :)
>
> The user would probably be left wondering which disk the last option
> refers to...not knowing that the disk choice will be the subject of the
> next dialogue?

I see what you mean, but I don't think it should be delayed.

To be honest, I've never been really happy with the inconsistency that was 
decided on in that menu: having individual disks listed for the normal 
method, but not for the others. But I had kind of decided to let that 
pass for Etch. This issue brings it back though.

I personally would prefer to consistently delay disk selection to a second 
level in _all_ cases and explain what the next step will be in the 
description; something like:


The installation system allows you to either automatically partition a 
disk for the new system (using different standard recipes), or set up 
partitions manually.

If you choose to automatically partition an entire disk, you will next be 
asked which disk should be used.

Partitioning method:

 Automatic - use the largest continuous free space
 Automatic - erase entire disk
 Automatic - erase entire disk and set up LVM
 Automatic - erase entire disk and set up encrypted LVM
 Manual


This may need to be revised again when we can offer RAID1, but that 
depends on the implementation and could probably be solved by mentioning 
that option in the description.

It would probably be a could idea to repeat the fact that existing data 
will be erased after selecting a method that does and we need to add an 
extra confirmation dialog before the partition table is written when 
using LVM anyway (see #368633).

BTW. I also noticed that with "Use the largest continuous free space" 
there is currently no indication of what disk will actually be used or 
how big the free space is. It is of course kind of implied (whichever 
disk has the largest free space), but IMO it would be kind of nice to 
tell the user before it is done.


pgpCbmut5mS5q.pgp
Description: PGP signature


linux-modules-di-arm-2.6_1.01_arm.changes is NEW

2006-10-04 Thread Debian Installer
(new) linux-modules-di-arm-2.6_1.01.dsc optional debian-installer
(new) linux-modules-di-arm-2.6_1.01.tar.gz optional debian-installer
(new) loop-aes-modules-2.6.16-2-footbridge-di_1.01_arm.udeb extra 
debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-nslu2-di_1.01_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
(new) loop-aes-modules-2.6.16-2-rpc-di_1.01_arm.udeb extra debian-installer
loop-AES crypto modules
 This package contains loop-AES crypto modules.
Changes: linux-modules-di-arm-2.6 (1.01) unstable; urgency=low
 .
  * Don't build for subarches not supported in d-i with 2.6.16.


Override entries for your package:

Announcing to debian-devel-changes@lists.debian.org


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Installer omits dir_index feature when creating ext3 filesystems

2006-10-04 Thread Frans Pop
On Sunday 01 October 2006 16:39, Hans Kratz wrote:
> I installed Debian Testing using the "Debian Installer etch beta 3"
> netinst i386 image. The install went fine but ext3 filesystems created
> by the installer did not have the same features as partitions created
> with mke2fs -j afterwards. In particular the created filesystems were
> missing dir_index.

I've just committed a patch that changes the way partman formats ext3 
partitions. It will now honour the defaults in /etc/mke2fs.conf.

Note that the new version needs to be uploaded before this will actually 
take effect.

Cheers,
FJP


pgp3tyAvfVDkr.pgp
Description: PGP signature


Processed: Will a reassign close them then?

2006-10-04 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 375491 partman-auto
Bug#375491: partman-auto-lvm: should automatically delete existing LVM
Bug#381693: Should automatically delete pre-existing LVM from selected disk
Bug#382315: partman-auto-lvm wont overwrite a lvm volume group on disk. 
breaking preseeded installations
Bug reassigned from package `partman-auto-lvm' to `partman-auto'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: call for testers: powerpc graphical debian installer

2006-10-04 Thread Diego Biurrun
On Wed, Oct 04, 2006 at 05:29:47PM +0200, Sven Luther wrote:
> On Wed, Oct 04, 2006 at 03:42:31PM +0200, Diego Biurrun wrote:
> > On Mon, Oct 02, 2006 at 01:40:13AM +0200, Sven Luther wrote:
> > > 
> > > It seems we finally got most issues with the graphical installer on 
> > > powerpc
> > > sorted out, thanks to all those who tested, and to Attilio who provided 
> > > the
> > > patch. I have done a build which you can find at :
> > > 
> > >   http://people.debian.org/~luther/g-i/
> > > 
> > > (Well, in an hour or so, once i finish uploading it).
> > > 
> > > We would like people to test the gtk-miniiso images, both on 32bit and 
> > > 64bit
> > > machines, and would probably be most interested in tests from those not 
> > > using
> > > radeon graphic cards, like those having nvidia based powermacs.
> > 
> > I have a February 2005 G4 PowerBook with nVidia graphics chipset.  The
> > installer fails completely.
> > 
> > If I just type 'install' at the boot prompt the screen goes black after
> > the kernel messages and remains black with a small line prompt appearing
> > in the upper left corner at regular intervals.
> > 
> > With 'install video=ofonly' (or whatever the suggested alternative boot
> > command was) I get a ton of DirectFB error messages that loop quickly.
> > If it's helpful I can attempt to jot them down.
> > 
> > Here is my hardware info:
> > 
> > cerebus:~$ cat /proc/cpuinfo | grep motherboard
> > motherboard : PowerBook6,8 MacRISC3 Power Macintosh 
> > 
> > cerebus:~$ cat /proc/fb
> > 0 NV32
> > 
> > cerebus:~$ lspci | grep VGA
> > :00:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce 
> > FX Go5200] (rev a1)
> 
> Thanks diego, this is great.
> 
> Would you be able to do the testing as suggested by Eddy, disabling the nvidia
> module as well as the linux_input one, and see if any of these make things
> better for you ? 

I tried all combinations of enabling/disabling things in /etc/directfbrc
but unfortunately none helped ...

Diego


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#358001: partman: please create ext3 file systems with online resize support

2006-10-04 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 358001 pending
Bug#358001: partman: please create ext3 file systems with online resize support
Tags were: patch
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: call for testers: powerpc graphical debian installer

2006-10-04 Thread Sven Luther
On Thu, Oct 05, 2006 at 02:14:22AM +0200, Diego Biurrun wrote:
> On Wed, Oct 04, 2006 at 05:29:47PM +0200, Sven Luther wrote:
> > On Wed, Oct 04, 2006 at 03:42:31PM +0200, Diego Biurrun wrote:
> > > On Mon, Oct 02, 2006 at 01:40:13AM +0200, Sven Luther wrote:
> > > > 
> > > > It seems we finally got most issues with the graphical installer on 
> > > > powerpc
> > > > sorted out, thanks to all those who tested, and to Attilio who provided 
> > > > the
> > > > patch. I have done a build which you can find at :
> > > > 
> > > >   http://people.debian.org/~luther/g-i/
> > > > 
> > > > (Well, in an hour or so, once i finish uploading it).
> > > > 
> > > > We would like people to test the gtk-miniiso images, both on 32bit and 
> > > > 64bit
> > > > machines, and would probably be most interested in tests from those not 
> > > > using
> > > > radeon graphic cards, like those having nvidia based powermacs.
> > > 
> > > I have a February 2005 G4 PowerBook with nVidia graphics chipset.  The
> > > installer fails completely.
> > > 
> > > If I just type 'install' at the boot prompt the screen goes black after
> > > the kernel messages and remains black with a small line prompt appearing
> > > in the upper left corner at regular intervals.
> > > 
> > > With 'install video=ofonly' (or whatever the suggested alternative boot
> > > command was) I get a ton of DirectFB error messages that loop quickly.
> > > If it's helpful I can attempt to jot them down.
> > > 
> > > Here is my hardware info:
> > > 
> > > cerebus:~$ cat /proc/cpuinfo | grep motherboard
> > > motherboard : PowerBook6,8 MacRISC3 Power Macintosh 
> > > 
> > > cerebus:~$ cat /proc/fb
> > > 0 NV32
> > > 
> > > cerebus:~$ lspci | grep VGA
> > > :00:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce 
> > > FX Go5200] (rev a1)
> > 
> > Thanks diego, this is great.
> > 
> > Would you be able to do the testing as suggested by Eddy, disabling the 
> > nvidia
> > module as well as the linux_input one, and see if any of these make things
> > better for you ? 
> 
> I tried all combinations of enabling/disabling things in /etc/directfbrc
> but unfortunately none helped ...

Thanks, Eddy, will you add it to the wiki too ? 

Friendly,

Sven Luther


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]