Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Martin Michlmayr
* Per Andersson [EMAIL PROTECTED] [2008-08-17 14:39]:
 Most users of headless devices would probobly want it.
 
 So I'll create an udeb for rescue-initramfs which installs it
 during d-i and then put rescue-initramfs-udeb in
 installer/build/pkg-lists/network-console. Is that a good
 solution?!

Alternatively, you could put the code into packages/network-console.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Re: r54682 - in trunk/packages/rootskel: debian src/lib/debian-installer

2008-08-18 Thread Colin Watson
On Fri, Aug 15, 2008 at 08:39:33PM +0200, Jérémy Bobbio wrote:
 (CCing cjwatson to attract his attention)
 
 On Tue, Jul 29, 2008 at 04:25:23PM +, Colin Watson wrote:
  Add debian-installer/exit/poweroff to run poweroff rather than reboot or
  halt at the end of the installation. Requested by Crispin Flowerday.
  
  Modified:
 trunk/packages/rootskel/debian/changelog
 trunk/packages/rootskel/src/lib/debian-installer/exit
 trunk/packages/rootskel/src/lib/debian-installer/exit-command
 
 This patch makes the exit menu item stop working as the
 debian-installer/exit/poweroff template does not exist.

I swear I had it in my working tree. Sorry about that!

-- 
Colin Watson   [EMAIL PROTECTED]


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



Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Per Andersson
On Sun, Aug 17, 2008 at 10:37 PM, David Härdeman [EMAIL PROTECTED] wrote:
 Where does the SSH server get the passwords/keyfiles from?

On the ramdisk Dropbear SSH server is used, to preserve
space. For the host files there are three options:
1) OpenSSH is used on the host machine, OpenSSH's host
   keys are converted to Dropbear format and copied to the
   ramdisk.
2) Dropbear is used on the host machine, Dropbear's host
   keys are copied to the ramdisk.
3) Neither OpenSSH or Dropbear is used on the host
   machine and no host keys exist, Dropbear host keys are
   generated and copied to the ramdisk.

Concerning key files, root's authorized_keys are copied to
ramdisk if they exist. Riku Voipio has verified that both
OpenSSH and Dropbear use the same key format for RSA
keys.


 Does it put /etc/shadow in the initramfs?

Only if root doesn't have any authorized_keys, and in that
case only root's entry(!) is put on the ramdisk.


-- Per


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



Bug#493865: cttyhack does not handle other serial devices than ttySn (was: Bug booting from console)

2008-08-18 Thread Jérémy Bobbio
On Tue, Aug 05, 2008 at 06:56:19PM +0200, Jérémy Bobbio wrote:
 The attached patch makes cttyhack scan the kernel command line in
 order to get the correct serial device.  This is another hack in the
 hack, but it should fixes the issue for d-i.

Just for the recorde, here is Bastian's comments on this patch:

  asm/setup.h is a no
  magic constants, console= handling in the kernel is a
  mess currently and the two variants don't match,
  coding style (NULL ==, != 0, bufferoverflow

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Frans Pop
On Sunday 17 August 2008, Martin Michlmayr wrote:
 * Per Andersson [EMAIL PROTECTED] [2008-08-17 14:39]:
  Most users of headless devices would probobly want it.
 
  So I'll create an udeb for rescue-initramfs which installs it
  during d-i and then put rescue-initramfs-udeb in
  installer/build/pkg-lists/network-console. Is that a good
  solution?!

 Alternatively, you could put the code into packages/network-console.

network-console is *not* only used for headless devices so I'm not in 
favor of linking these two.

I have no idea if a udeb for rescue-initramfs is needed. If all it would 
do is install the regular package then a separate udeb would be serious 
overkill.

What is needed here is a proper analysis of when exactly rescue-initramfs 
is wanted and at what stage of the installation it should be installed 
(pkgsel or finish-install I would say). The first question should provide 
an answer to how its installation should be triggered.


signature.asc
Description: This is a digitally signed message part.


Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread David Härdeman
On Sun, August 17, 2008 23:02, Per Andersson wrote:
 On Sun, Aug 17, 2008 at 10:37 PM, David Härdeman wrote:
 Where does the SSH server get the passwords/keyfiles from?
...
 Concerning key files, root's authorized_keys are copied to
 ramdisk if they exist. Riku Voipio has verified that both
 OpenSSH and Dropbear use the same key format for RSA
 keys.

Cool...would it be possible to support a separate file, say
/root/.ssh/authorized_boot_keys so that root can specify one or more keys
that are *only* used for boot ssh access?

And on a related note, did you know that we've added support to cryptsetup
for getting a passphrase from an external source? Basically, if the
machine is waiting at the cryptsetup passphrase prompt, you could (using
your ssh-in-initramfs solution) log in and pipe the passphrase to
/lib/cryptsetup/passfifo which would allow the boot to continue. Very
useful on servers or embedded machines :)

-- 
David Härdeman


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



Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Per Andersson
On Mon, Aug 18, 2008 at 1:12 PM, David Härdeman [EMAIL PROTECTED] wrote:
 On Sun, August 17, 2008 23:02, Per Andersson wrote:
 On Sun, Aug 17, 2008 at 10:37 PM, David Härdeman wrote:
 Where does the SSH server get the passwords/keyfiles from?
 ...
 Concerning key files, root's authorized_keys are copied to
 ramdisk if they exist. Riku Voipio has verified that both
 OpenSSH and Dropbear use the same key format for RSA
 keys.

 Cool...would it be possible to support a separate file, say
 /root/.ssh/authorized_boot_keys so that root can specify one or more keys
 that are *only* used for boot ssh access?

It would be very easy to add such functionality AFAICS.
Although from a user perspective it might be easier to just
use root's authorized keys for both.


 And on a related note, did you know that we've added support to cryptsetup
 for getting a passphrase from an external source? Basically, if the
 machine is waiting at the cryptsetup passphrase prompt, you could (using
 your ssh-in-initramfs solution) log in and pipe the passphrase to
 /lib/cryptsetup/passfifo which would allow the boot to continue. Very
 useful on servers or embedded machines :)

No, I didn't know that but that's very useful indeed. I actually
have use for it even here at home. Great. :)


-- Per


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



Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Per Andersson
On Mon, Aug 18, 2008 at 1:11 PM, Frans Pop [EMAIL PROTECTED] wrote:
 On Sunday 17 August 2008, Martin Michlmayr wrote:
 * Per Andersson [EMAIL PROTECTED] [2008-08-17 14:39]:
  Most users of headless devices would probobly want it.
 
  So I'll create an udeb for rescue-initramfs which installs it
  during d-i and then put rescue-initramfs-udeb in
  installer/build/pkg-lists/network-console. Is that a good
  solution?!

 Alternatively, you could put the code into packages/network-console.

 network-console is *not* only used for headless devices so I'm not in
 favor of linking these two.

Yeah, I remember that we discussed this on IRC and I
agree with you.


 I have no idea if a udeb for rescue-initramfs is needed. If all it would
 do is install the regular package then a separate udeb would be serious
 overkill.

It is indeed.


 What is needed here is a proper analysis of when exactly rescue-initramfs
 is wanted and at what stage of the installation it should be installed
 (pkgsel or finish-install I would say). The first question should provide
 an answer to how its installation should be triggered.

I took a brief look at pkgsel yesterday. I'll probably roll with
that.

Concerning use cases, when it is usable and should be
installed, I see at least two use cases:
- NAS devices, which I have been working with this summer.
  Even simple things like kernel upgrade or automatic fsck
  of filesystems could render the box unbootable if you don't
  have a serial console. Add encrypted root filesystem and
  you have to have some way to interact during the boot
  process.
- Headless servers, for, probably, the same reasons
  mentioned above.

At first I thought of adding something similar to
pkgsel/pre-pkgsel.d/10laptop-detect for NAS devices that
d-i support. But maybe it would be a good thing to have
a dialog asking the user about installing rescue-initramfs
if encrypted root filesystem is selected.


-- Per


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



Re: [PATCH] network-console, micro-evtd-udeb

2008-08-18 Thread Martin Michlmayr
* Per Andersson [EMAIL PROTECTED] [2008-08-16 19:41]:
 On Sat, Aug 16, 2008 at 7:19 PM, Martin Michlmayr [EMAIL PROTECTED] wrote:
  The network-console patch you attached depends on a patch to
  network-console that is not in SVN yet.  Can you send a new patch?
 Correct patch attached, sorry for not catching this.

Applied.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



etch-n-half netboot problems

2008-08-18 Thread Eugeny Zadevalov
Hello!

I'm using preseeding over network(PXE). Recently I've upgraded my
environment to etch-n-half in order to get benefits of recent kernel
packages in etch-n-half(2.6.24).

I've downloaded images following the link at this page:
http://www.debian.org/releases/etch/debian-installer/etchnhalf

I've i386 initrd.gz/linux from
http://ftp.nl.debian.org/debian/dists/lenny/main/installer-i386/current/images/netboot/debian-installer/i386/
I've amd64 initrd.gz/linux from
http://ftp.nl.debian.org/debian/dists/lenny/main/installer-amd64/current/images/netboot/debian-installer/amd64/

In order to install etch I've added suite=etch to my pxelinux's APPEND option.

I believe that the images I've used are latest available netboot
images for etch-n-half, is this correct?

The problem is that thing tries to grab lenny/Release file over
network each time I install etch-n-half. And that is actually a
problem since what I'm trying to do is to use either
debian-40r4a-etchnhalf-amd64-netinst.iso or
debian-40r4a-amd64-DVD-1.iso to provide my netboot environment with
packages. I'm mounting those isos on a host machine with PXE stack and
share them through Apache. But installation can't proceed because
those isos actually doesn't have those dists/lenny/Release and
dists/lenny/Release.gpg. I've tried installing from a regular CD using
debian-40r4a-etchnhalf-amd64-netinst.iso and that doesn't seem to try
to grab those files and installation can proceed without any network
connections.

Is there a way to fix it?


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



Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread David Härdeman

On Fri, Aug 15, 2008 at 02:00:04PM +0200, Per Andersson wrote:

As a part of my GSoC project I am currently working on a
piece of software that is called rescue-initramfs. If installed it
installs dropbear (SSH), some filesystem tools, micro-evtd
and uboot-envtools to the ramdisk. This enables people to
login to their box even if the rootfs didn't come up properly.
A typical use case is for users that have installed Debian on
their NAS device and don't have a serial console attached.


Where does the SSH server get the passwords/keyfiles from?

Does it put /etc/shadow in the initramfs?

--
David Härdeman


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



Re: etch-n-half netboot problems

2008-08-18 Thread Frans Pop
On Monday 18 August 2008, Eugeny Zadevalov wrote:
 The problem is that thing tries to grab lenny/Release file over
 network each time I install etch-n-half.

It needs to load additional installer components, and those are lenny.

 And that is actually a 
 problem since what I'm trying to do is to use either
 debian-40r4a-etchnhalf-amd64-netinst.iso or
 debian-40r4a-amd64-DVD-1.iso to provide my netboot environment with
 packages.

That's an unsupported installation method. It can be made to work, but 
fixing it is up to you.

Cheers,
FJP


signature.asc
Description: This is a digitally signed message part.


Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Frans Pop
On Monday 18 August 2008, Per Andersson wrote:
 But maybe it would be a good thing to have
 a dialog asking the user about installing rescue-initramfs
 if encrypted root filesystem is selected.

Why would you want to do that for e.g. normal laptops?

Basic rule for the installer: don't add new dialogs unless they really add 
value. In this case I really do not (yet) see why it should be up to D-I 
to install rescue-initramfs for other use-cases than embedded systems.

We also do not automatically install any of the 1.000.000 other useful 
packages that Debian has to offer.


signature.asc
Description: This is a digitally signed message part.


[D-I Manual] Build log for en (16 Aug 2008)

2008-08-18 Thread Felipe Augusto van de Wiel
A build of the Debian Installer Manual was triggered by an update to SVN.

There were no errors during the build process.
The new version of the manual has been uploaded successfully.

A log of the build is available at:
- http://d-i.alioth.debian.org/manual/logs/en.log

===
It is possible to use RSS to track changes to the manual.
For more information, see:
http://d-i.alioth.debian.org/manual/translators.html
===
Note: PDF output is not yet supported for some languages; help
with this would be appreciated.
===
If you have any questions about the build or this message, feel
free to contact me at faw AT funlabs DOT org.
===

Updated files ('svn up')

Uen/appendix/preseed.xml
Updated to revision 55054.


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



SEX Confessions4u.com Auction On Sedo : No Reserve

2008-08-18 Thread Confessions4u.com

Hi

I'am the owner of a website Confessions4u.com. I have decided to sell this 
confessions community website on sedo and it can be found here:

http://www.sedo.co.uk/auction/auction_detail.php?language=eauction_id=39181tracked=partnerid=

Stats About The Site Exact As It Reads On Sedo:

Confessions4u.com received over 51000 visitors in May for more detailed stats 
please visit:
http://matrixstats.confessions4u.co.uk/
Username: sedo
Password: sedo123

On average this month it gets 1600 visitors a day, and is growing ever month!

Top Referring Keywords This Month:

1) sex confessions
2) confessions
3) online confessions
4) sex chat
5) masterbation
6) free sex chat
7) adult chat
8) love confessions
9) sexual confessions

Their are many more keywords this site ranks for and can be seen within the 
stats as mention above.

Confession type websites are becoming very popular now, so why not buy this 
ready set up with a good community of members worldwide.

Kind Regards

Confessions4u.com


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



SEX Confessions4u.com Auction On Sedo : No Reserve

2008-08-18 Thread Confessions4u.com

Hi

I'am the owner of a website Confessions4u.com. I have decided to sell this 
confessions community website on sedo and it can be found here:

http://www.sedo.co.uk/auction/auction_detail.php?language=eauction_id=39181tracked=partnerid=

Stats About The Site Exact As It Reads On Sedo:

Confessions4u.com received over 51000 visitors in May for more detailed stats 
please visit:
http://matrixstats.confessions4u.co.uk/
Username: sedo
Password: sedo123

On average this month it gets 1600 visitors a day, and is growing ever month!

Top Referring Keywords This Month:

1) sex confessions
2) confessions
3) online confessions
4) sex chat
5) masterbation
6) free sex chat
7) adult chat
8) love confessions
9) sexual confessions

Their are many more keywords this site ranks for and can be seen within the 
stats as mention above.

Confession type websites are becoming very popular now, so why not buy this 
ready set up with a good community of members worldwide.

Kind Regards

Confessions4u.com


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



Re: Update of the installation-guide with RAID 6 and 10

2008-08-18 Thread Ryan Niebur
On Sat, Aug 16, 2008 at 09:19:54PM +0200, =?ISO-8859-1?Q?J=E9r=E9my_Bobbio_ 
wrote:
 Hi!
 
 Thanks for your patches which enabled support for RAID levels 6 and 10
 in the debian-installer.
 
 Unfortunately, these changes are currently not documented in the
 installation manual.  It would be great if you could try to add the
 missing part and generally update those two files of the d-i repository:
 
   manual/en/appendix/preesed.xml
   manual/en/using-d-i/modules/mdcfg.xml
 
 Thanks in advance for any help in keeping the manual up to date…
 
 Cheers,
 -- 
 Jérémy Bobbio.''`. 
 [EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
 `. `'` 
   `-   

ya, I can work on that.

-- 
_
Ryan Niebur
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


D-I and local repositories issues. Installation hangs

2008-08-18 Thread Juan Luis Belmonte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all.


The best solution for my developing tests is having my own repository
due to some packages as base-files or libpam-runtime are modified. So I
need the installer to use my repo for installing the base system.

I've already set up the Debian mirror on my machine to install from,
normal debs could be accessed OK.

I push in to the mirror in other directory the  udebs and created
Packages.gz with dpkg-scanpackages -u

debian/dists/unstable/main +
   |
   - binary-i386 +
   | |
   |-archives
   |-Packages.gz
   |-Release
   |
   -debian-installer+
archives/
Packages.gz
Release

But the installer doesn't gets anything from  debian-installer/
directory so, it complains about that the Packages.gz he gets is a bad
d-i Packages file.

How can I solve this? or is any possibility to use official repositories
for the udebs, and make the installer to download the base-system from
my repo?

Thaks a lot.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkio4hUACgkQpTp1aPLE1VuRdwCfedYQV4VGoCS2Wt+vn5qaF3t/
JaQAoIfkIvFuSqNmm/Qd+OwcE0nWzG4h
=NbiL
-END PGP SIGNATURE-


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



Re: [RFC]: Install rescue-initramfs dialog

2008-08-18 Thread Per Andersson
On Mon, Aug 18, 2008 at 2:08 PM, Frans Pop [EMAIL PROTECTED] wrote:
 On Monday 18 August 2008, Per Andersson wrote:
 But maybe it would be a good thing to have
 a dialog asking the user about installing rescue-initramfs
 if encrypted root filesystem is selected.

 Why would you want to do that for e.g. normal laptops?

 Basic rule for the installer: don't add new dialogs unless they really add
 value. In this case I really do not (yet) see why it should be up to D-I
 to install rescue-initramfs for other use-cases than embedded systems.

 We also do not automatically install any of the 1.000.000 other useful
 packages that Debian has to offer.

Noted. So, I'll go with detecting embedded systems in pkgsel then.


-- Per


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



Freeze exception request for directfb 1.0.1-11

2008-08-18 Thread Fathi Boudra
Hi,

Could you please unfreeze libdirectfb 1.0.1-11 ?

It fixes 2 bugs:
- unicode key handling (bug #401296) usefull for Debian graphical installer.
- DirectFb fails to start in usual case (RC bug #493899).

You can found attached the full diff between 1.0.1-9 and 1.0.1-11.

cheers,

Fathi

+directfb (1.0.1-11) unstable; urgency=low
+
+  * Remove 92_reopen_console.patch: it fails in the usual case,
+but works when run through strace. (Closes: #493899)
+
+ -- Fathi Boudra [EMAIL PROTECTED]  Sun, 17 Aug 2008 16:42:54 +0200
+
+directfb (1.0.1-10) unstable; urgency=low
+
+  * Add 93_fix_unicode_key_handling.patch: when the library asks the kernel
+for the key symbols, the result are truncated for unicode symbols if the
+keyboard is not in K_UNICODE mode. So, a temporary switch is needed,
+as well as applying the right bitmask in order to retrieve the full
+unicode symbol. Thanks to Jérémy Bobbio. (Closes: #401296)
+  * Now using Standards-Version 3.8.0 (no changes needed).
+
+ -- Fathi Boudra [EMAIL PROTECTED]  Tue, 22 Jul 2008 18:49:17 +0200
diff -Nur --exclude=.svn 1.0.1-9/debian/changelog 1.0.1-11/debian/changelog
--- 1.0.1-9/debian/changelog	2008-07-22 18:48:31.0 +0200
+++ 1.0.1-11/debian/changelog	2008-08-18 14:21:43.0 +0200
@@ -1,3 +1,21 @@
+directfb (1.0.1-11) unstable; urgency=low
+
+  * Remove 92_reopen_console.patch: it fails in the usual case,
+but works when run through strace. (Closes: #493899)
+
+ -- Fathi Boudra [EMAIL PROTECTED]  Sun, 17 Aug 2008 16:42:54 +0200
+
+directfb (1.0.1-10) unstable; urgency=low
+
+  * Add 93_fix_unicode_key_handling.patch: when the library asks the kernel
+for the key symbols, the result are truncated for unicode symbols if the
+keyboard is not in K_UNICODE mode. So, a temporary switch is needed,
+as well as applying the right bitmask in order to retrieve the full
+unicode symbol. Thanks to Jérémy Bobbio. (Closes: #401296)
+  * Now using Standards-Version 3.8.0 (no changes needed).
+
+ -- Fathi Boudra [EMAIL PROTECTED]  Tue, 22 Jul 2008 18:49:17 +0200
+
 directfb (1.0.1-9) unstable; urgency=low
 
   * Add cross build support. Thanks to Neil Williams. (Closes: #480933)
diff -Nur --exclude=.svn 1.0.1-9/debian/control 1.0.1-11/debian/control
--- 1.0.1-9/debian/control	2008-07-22 18:48:31.0 +0200
+++ 1.0.1-11/debian/control	2008-08-18 14:21:43.0 +0200
@@ -11,7 +11,7 @@
  libts-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
  libmpeg3-dev, zlib1g-dev, x11proto-core-dev, libx11-dev, libxext-dev,
  libsysfs-dev [alpha amd64 arm armel hppa i386 ia64 m68k mips mipsel powerpc ppc64 s390]
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: libdirectfb-1.0-0
 Section: libs
diff -Nur --exclude=.svn 1.0.1-9/debian/patches/92_reopen_console.patch 1.0.1-11/debian/patches/92_reopen_console.patch
--- 1.0.1-9/debian/patches/92_reopen_console.patch	2008-07-22 18:48:31.0 +0200
+++ 1.0.1-11/debian/patches/92_reopen_console.patch	1970-01-01 00:00:00.0 +
@@ -1,167 +0,0 @@
-author: John Hughes [EMAIL PROTECTED]
-
-when libdirectfb detects zero length reads,
-it attempts to reopen the console
-(possibly from a newly mounted root tree)
-See Debian bug #462626
-
 a/systems/fbdev/vt.h
-+++ b/systems/fbdev/vt.h
-@@ -34,7 +34,7 @@
- 
- #include directfb.h
- 
--typedef struct {
-+typedef struct VirtualTerminal {
-  int fd0;  /* file descriptor of /dev/tty0 */
-  int fd;   /* file descriptor of /dev/ttyN
-   where N is the number of the allocated VT,
-@@ -56,6 +56,8 @@
-  pthread_cond_t   wait;
- 
-  int  vt_sig;
-+
-+ DFBResult	 (*method_open) (struct VirtualTerminal *);
- } VirtualTerminal;
- 
- /*
 a/systems/fbdev/vt.c
-+++ b/systems/fbdev/vt.c
-@@ -96,6 +96,8 @@
- static void  vt_set_fb( int vt, int fb );
- static void *vt_thread( DirectThread *thread, void *arg );
- 
-+static DFBResult vt_open (VirtualTerminal *vt);
-+
- DFBResult
- dfb_vt_initialize()
- {
-@@ -219,6 +221,8 @@
-   return ret;
-  }
- 
-+ dfb_vt-method_open = vt_open;
-+
-  dfb_fbdev-vt = dfb_vt;
- 
-  return DFB_OK;
-@@ -439,27 +443,23 @@
- }
- 
- static DFBResult
--vt_init_switching()
--{
-- const char cursoroff_str[] = \033[?1;0;0c;
-- const char blankoff_str[] = \033[9;0];
-+vt_open (VirtualTerminal *vt) {
-+
-  char buf[32];
- 
-  D_DEBUG_AT( VT, %s()\n, __FUNCTION__ );
- 
-- /* FIXME: Opening the device should be moved out of this function. */
--
-- snprintf(buf, 32, /dev/tty%d, dfb_vt-num);
-- dfb_vt-fd = open( buf, O_RDWR | O_NOCTTY );
-- if (dfb_vt-fd  0) {
-+ snprintf(buf, 32, /dev/tty%d, vt-num);
-+ vt-fd = open( buf, O_RDWR | O_NOCTTY );
-+ if (vt-fd  0) {
-   if (errno == ENOENT) {
--   snprintf(buf, 32, /dev/vc/%d, dfb_vt-num);
--   dfb_vt-fd = open( buf, O_RDWR | O_NOCTTY );
--  

Re: etch-n-half netboot problems

2008-08-18 Thread Eugeny Zadevalov
Hi Frans,

 The problem is that thing tries to grab lenny/Release file over
 network each time I install etch-n-half.
 It needs to load additional installer components, and those are lenny.

Does that happens when etch-n-half CD (-netinst.iso) is using to
install machine?

 And that is actually a
 problem since what I'm trying to do is to use either
 debian-40r4a-etchnhalf-amd64-netinst.iso or
 debian-40r4a-amd64-DVD-1.iso to provide my netboot environment with
 packages.
 That's an unsupported installation method. It can be made to work, but
 fixing it is up to you.

Alright. Thank you for your answers though.


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



Re: Freeze exception request for directfb 1.0.1-11

2008-08-18 Thread Pierre Habouzit
On Mon, Aug 18, 2008 at 12:38:20PM +, Fathi Boudra wrote:
 Hi,
 
 Could you please unfreeze libdirectfb 1.0.1-11 ?
 
 It fixes 2 bugs:
 - unicode key handling (bug #401296) usefull for Debian graphical installer.
 - DirectFb fails to start in usual case (RC bug #493899).

unblocked.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpJ6IwkOP1xp.pgp
Description: PGP signature


Re: Freeze exception request for directfb 1.0.1-11

2008-08-18 Thread Pierre Habouzit
On lun, aoû 18, 2008 at 12:57:14 +, Pierre Habouzit wrote:
 On Mon, Aug 18, 2008 at 12:38:20PM +, Fathi Boudra wrote:
  Hi,
  
  Could you please unfreeze libdirectfb 1.0.1-11 ?
  
  It fixes 2 bugs:
  - unicode key handling (bug #401296) usefull for Debian graphical installer.
  - DirectFb fails to start in usual case (RC bug #493899).
 
 unblocked.

  err no not yet, if debian-boot agrees, there is a udeb.



-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgp7vgBfxtGhn.pgp
Description: PGP signature


Re: etch-n-half netboot problems

2008-08-18 Thread Frans Pop
On Monday 18 August 2008, Eugeny Zadevalov wrote:
  The problem is that thing tries to grab lenny/Release file over
  network each time I install etch-n-half.
 
  It needs to load additional installer components, and those are
  lenny.

 Does that happens when etch-n-half CD (-netinst.iso) is using to
 install machine?

The etchnhalf netinst contains the needed components (udebs).


signature.asc
Description: This is a digitally signed message part.


Re: Unblocks for l10n NMUs (one needing D-I team approval)

2008-08-18 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Christian Perrier [EMAIL PROTECTED] writes:

 I think I went over all l10n NMUs I uploaded during last weeks and
 found the following:

 With udebs, needing D-I team approval:

 console-setup/1.27:
* Add a template for the main menu item name.
* Translation updates

No objection 

- -- 
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://otavio.ossystems.com.br
- -
Microsoft sells you Windows ... Linux gives
 you the whole house.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkipjzQACgkQLqiZQEml+FVDjgCdFVQkidgNG5Xof/Uf+TKo3H7X
fdQAmweimpT7Fu8/Z4ruXugG+Jy+RYiD
=16eR
-END PGP SIGNATURE-


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



Re: Please unblock beep (udeb), translation updates

2008-08-18 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Pierre Habouzit [EMAIL PROTECTED] writes:

 On Sat, Aug 16, 2008 at 04:48:42PM +, Gerfried Fuchs wrote:
 Hi!
 
  Please unbock beep, the update contains mostly of translation
 additions/updates due to some rewrite suggestion I received. Futhermore
 it also contains some lintian cleanups, but no other changes.

   fine with me if d-i people agree.

No objection

- -- 
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://otavio.ossystems.com.br
- -
Microsoft sells you Windows ... Linux gives
 you the whole house.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkipj8MACgkQLqiZQEml+FVTugCfc0IDt9XN8db52QBXa1P5IY5h
WT4AoIa1fMlkPAiWCHYdNBtAQ4k2ZhXY
=K1pL
-END PGP SIGNATURE-


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



Re: Update of the installation-guide with RAID 6 and 10

2008-08-18 Thread Ryan Niebur
On Sat, Aug 16, 2008 at 09:19:54PM +0200, =?ISO-8859-1?Q?J=E9r=E9my_Bobbio_ 
wrote:
 Hi!
 
 Thanks for your patches which enabled support for RAID levels 6 and 10
 in the debian-installer.
 
 Unfortunately, these changes are currently not documented in the
 installation manual.  It would be great if you could try to add the
 missing part and generally update those two files of the d-i repository:
 
   manual/en/appendix/preesed.xml
   manual/en/using-d-i/modules/mdcfg.xml
 
 Thanks in advance for any help in keeping the manual up to date…
 
 Cheers,
 -- 
 Jérémy Bobbio.''`. 
 [EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
 `. `'` 
   `-   

ya, I can work on that.

-- 
_
Ryan Niebur
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re: debian-installer artwork for Lenny

2008-08-18 Thread Otavio Salvador
Jérémy Bobbio [EMAIL PROTECTED] writes:

 On Sun, Aug 17, 2008 at 06:47:40PM +0200, Frans Pop wrote:
 On Sunday 17 August 2008, Jérémy Bobbio wrote:
  Any proposals should be submitted really soon, eventually now.  We are
  going to prepare the first release candidate next week and it will be
  too late after that.
 
 Personally I would say that it _is_ already too late.
 
 In addition to the links you already provided, I would say that this 
 message is actually the most relevant:
 http://lists.debian.org/debian-desktop/2007/06/msg00010.html

 Thanks for pointing that out, I had completely missed that message.

I agree with Frans, it is too late for that. Let's work on that on lenny+1.

-- 
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://otavio.ossystems.com.br
-
Microsoft sells you Windows ... Linux gives
 you the whole house.


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



Re: D-I and local repositories issues. Installation hangs

2008-08-18 Thread Bernhard R. Link
 debian/dists/unstable/main +
|
[...]
|
-debian-installer+
[...]
 Packages.gz
[...]

 But the installer doesn't gets anything from  debian-installer/
 directory so, it complains about that the Packages.gz he gets is a bad
 d-i Packages file.

Does it actually get a file? I think it is
debian/dists/unstable/main/debian-installer/binary-i386/Packages.gz
and not
debian/dists/unstable/main/debian-installer/Packages.gz
as your image above suggests.

Hochachtungsvoll,
Bernhard R. Link


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



Re: etch-n-half netboot problems

2008-08-18 Thread Eugeny Zadevalov
Frans,

On Mon, Aug 18, 2008 at 4:09 PM, Frans Pop [EMAIL PROTECTED] wrote:
 On Monday 18 August 2008, Eugeny Zadevalov wrote:
  The problem is that thing tries to grab lenny/Release file over
  network each time I install etch-n-half.
 
  It needs to load additional installer components, and those are
  lenny.

 Does that happens when etch-n-half CD (-netinst.iso) is using to
 install machine?

 The etchnhalf netinst contains the needed components (udebs).

That's really strange, since that iso doesn't contain /dists/lenny.
So, I guess netboot and cdrom targeted d-i initrd images are
completely different.
Is that the case?

I guess the side effect of the way how netboot images are build is
what we saw with recent bug #494532
I suffered the same issue and wasn't able to install new machines over
PXE until package was re-added to the repository, that's why I thought
to stick with .iso based (consistent) image.


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



Re: etch-n-half netboot problems

2008-08-18 Thread Frans Pop
On Monday 18 August 2008, Eugeny Zadevalov wrote:
  The etchnhalf netinst contains the needed components (udebs).

 That's really strange, since that iso doesn't contain /dists/lenny.

Blame the way debian-cd puts a CD image together...

 So, I guess netboot and cdrom targeted d-i initrd images are
 completely different. Is that the case?

Yes. Although from another PoV they are also basically identical. It's 
just how you look at it. [1] has a table that shows the essential 
differences between images. etchnhalf is a bit more complicated because 
it is a cross between stable and testing.

 I guess the side effect of the way how netboot images are build is
 what we saw with recent bug #494532.

Not really. That was just a major inconsistency on the mirrors for 
testing. Nothing to do with what's already included in the image itself.

 I suffered the same issue and wasn't able to install new machines over
 PXE until package was re-added to the repository, that's why I thought
 to stick with .iso based (consistent) image.

The iso is consistent, as long as you use it as an iso...

[1] http://d-i.alioth.debian.org/doc/internals/index.html#id474596


signature.asc
Description: This is a digitally signed message part.


Re: Freeze exception request for directfb 1.0.1-11

2008-08-18 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Pierre Habouzit [EMAIL PROTECTED] writes:

 On lun, aoû 18, 2008 at 12:57:14 +, Pierre Habouzit wrote:
 On Mon, Aug 18, 2008 at 12:38:20PM +, Fathi Boudra wrote:
  Hi,
  
  Could you please unfreeze libdirectfb 1.0.1-11 ?
  
  It fixes 2 bugs:
  - unicode key handling (bug #401296) usefull for Debian graphical 
  installer.
  - DirectFb fails to start in usual case (RC bug #493899).
 
 unblocked.

   err no not yet, if debian-boot agrees, there is a udeb.

No objection

- -- 
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://otavio.ossystems.com.br
- -
Microsoft sells you Windows ... Linux gives
 you the whole house.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEUEARECAAYFAkipuJ8ACgkQLqiZQEml+FUaGQCfVteKrFxkWjCbfaaLggJ4P3PH
5FIAmOkV3oSxKTORKKD3P3/REcC5yC8=
=1nWX
-END PGP SIGNATURE-


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



Bug#495596: cdebconf-terminal: [INTL:de] initial German debconf translation

2008-08-18 Thread Helge Kreutzmann
Package: cdebconf-terminal
Version: 0.1
Severity: wishlist
Tags: patch l10n

Please find the initial German debconf translation for cdebconf-terminal
attached.

Please place this file in debian/po/ as de.po for your next upload.

If you update your template, please use 
'msgfmt --statistics pofile.po'
to check the po-files for fuzzy or untranslated strings.

If there are such strings, please contact me so I can update the 
German translation.

Greetings
Helge
# Translation of cdebconf-terminal debconf templates to German
# Copyright (C) Helge Kreutzmann [EMAIL PROTECTED], 2008.
# This file is distributed under the same license as the cdebconf-terminal 
package.
#
msgid 
msgstr 
Project-Id-Version: cdebconf-terminal 0.1\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-07-31 13:04+0200\n
PO-Revision-Date: 2008-02-14 20:32+0100\n
Last-Translator: Helge Kreutzmann [EMAIL PROTECTED]\n
Language-Team: de [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../cdebconf-gtk-terminal.templates:1001
msgid Resume installation
msgstr Installation fortfahren

#. Type: text
#. Description
#: ../cdebconf-gtk-terminal.templates:2001
msgid 
Choose \Continue\ to really exit the shell and resume the installation; 
any processes still running in the shell will be aborted.
msgstr 
Wählen Sie »Fortfahren«, um die Shell wirklich zu beenden und die 
Installation fortzufahren; alle in der Shell laufenden Prozesse werden 
abgebrochen.


Processed: (kein Betreff)

2008-08-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 495603 critical
Bug#495603: daily netinst CD installation fails on a FSC Primergy RX300 with a 
level 5 RAID
Severity set to `critical' from `normal'

 retitle 495603 grub-installer fails on a FSC Primergy RX300 with a level 5 
 RAID
Bug#495603: daily netinst CD installation fails on a FSC Primergy RX300 with a 
level 5 RAID
Changed Bug title to `grub-installer fails on a FSC Primergy RX300 with a level 
5 RAID' from `daily netinst CD installation fails on a FSC Primergy RX300 with 
a level 5 RAID'.


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]



etch-n-half netboot problems

2008-08-18 Thread Eugeny Zadevalov

Hello!

I'm using preseeding over network(PXE). Recently I've upgraded my 
environment to etch-n-half in order to get benefits of recent kernel 
packages in etch-n-half(2.6.24).


I've downloaded images following the link at this page:
http://www.debian.org/releases/etch/debian-installer/etchnhalf

I've i386 initrd.gz/linux from 
http://ftp.nl.debian.org/debian/dists/lenny/main/installer-i386/current/images/netboot/debian-installer/i386/
I've amd64 initrd.gz/linux from 
http://ftp.nl.debian.org/debian/dists/lenny/main/installer-amd64/current/images/netboot/debian-installer/amd64/


In order to install etch I've added suite=etch to my pxelinux's APPEND 
option.


I believe that the images I've used are latest available netboot images 
for etch-n-half, is this correct?


The problem is that thing tries to grab lenny/Release file over 
network each time I install etch-n-half. And that is actually a problem 
since what I'm trying to do is to use either 
debian-40r4a-etchnhalf-amd64-netinst.iso or debian-40r4a-amd64-DVD-1.iso 
to provide my netboot environment with packages. I'm mounting those isos 
on a host machine with PXE stack and share them through Apache. But 
installation can't proceed because those isos actually doesn't have 
those dists/lenny/Release and dists/lenny/Release.gpg. I've tried 
installing from a regular CD using 
debian-40r4a-etchnhalf-amd64-netinst.iso and that doesn't seem to try to 
grab those files and installation can proceed without any network 
connections.


Is there a way to fix it?


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



Re: D-I and local repositories issues. Installation hangs

2008-08-18 Thread Jérémy Bobbio
On Mon, Aug 18, 2008 at 04:44:42AM +0200, Juan Luis Belmonte wrote:
 The best solution for my developing tests is having my own repository
 due to some packages as base-files or libpam-runtime are modified. So I
 need the installer to use my repo for installing the base system.
 […] 
 How can I solve this? or is any possibility to use official repositories
 for the udebs, and make the installer to download the base-system from
 my repo?

You should have a look at simple-cdd.  It will provide you an easy way
to build CDs mixing official and custom packages (both normal and d-i
ones).

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#495596: marked as done (cdebconf-terminal: [INTL:de] initial German debconf translation)

2008-08-18 Thread Debian Bug Tracking System

Your message dated Tue, 19 Aug 2008 06:56:41 +0200
with message-id [EMAIL PROTECTED]
and subject line Re: Bug#495596: cdebconf-terminal: [INTL:de] initial German 
debconf translation
has caused the Debian Bug report #495596,
regarding cdebconf-terminal: [INTL:de] initial German debconf translation
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
495596: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=495596
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: cdebconf-terminal
Version: 0.1
Severity: wishlist
Tags: patch l10n

Please find the initial German debconf translation for cdebconf-terminal
attached.

Please place this file in debian/po/ as de.po for your next upload.

If you update your template, please use 
'msgfmt --statistics pofile.po'
to check the po-files for fuzzy or untranslated strings.

If there are such strings, please contact me so I can update the 
German translation.

Greetings
Helge
# Translation of cdebconf-terminal debconf templates to German
# Copyright (C) Helge Kreutzmann [EMAIL PROTECTED], 2008.
# This file is distributed under the same license as the cdebconf-terminal 
package.
#
msgid 
msgstr 
Project-Id-Version: cdebconf-terminal 0.1\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-07-31 13:04+0200\n
PO-Revision-Date: 2008-02-14 20:32+0100\n
Last-Translator: Helge Kreutzmann [EMAIL PROTECTED]\n
Language-Team: de [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../cdebconf-gtk-terminal.templates:1001
msgid Resume installation
msgstr Installation fortfahren

#. Type: text
#. Description
#: ../cdebconf-gtk-terminal.templates:2001
msgid 
Choose \Continue\ to really exit the shell and resume the installation; 
any processes still running in the shell will be aborted.
msgstr 
Wählen Sie »Fortfahren«, um die Shell wirklich zu beenden und die 
Installation fortzufahren; alle in der Shell laufenden Prozesse werden 
abgebrochen.
---End Message---
---BeginMessage---
Quoting Helge Kreutzmann ([EMAIL PROTECTED]):
 Package: cdebconf-terminal
 Version: 0.1
 Severity: wishlist
 Tags: patch l10n
 
 Please find the initial German debconf translation for cdebconf-terminal
 attached.
 
 Please place this file in debian/po/ as de.po for your next upload.

cdebconf-terminal is part of D-I and this translation should be made
inside D-I framework.

I merged it into German sublevel1 file of D-I.




signature.asc
Description: Digital signature
---End Message---


Bug#495627: installation-report

2008-08-18 Thread debian . 4 . h_anand
Package: installation-reports

Boot method: CD
Image version: Debian GNU/Linux testing Lenny - Official Snapshot i386 NETINST
  Binary-1 20080814-19:49
Date: Friday Aug 15, 2008

Machine: Dell Dimension 4100
Processor: Pentium PIII
Memory: 384 Mb
Partitions:
/dev/hda1 ext3  264445115543135249  47% /
tmpfstmpfs  193096 0193096   0% /lib/init/rw
udev tmpfs   10240   112 10128   2% /dev
tmpfstmpfs  193096 0193096   0% /dev/shm
/dev/hda9 ext3 9780144547100   8736236   6% /home
/dev/hda8 ext3  381138 10301351159   3% /tmp
/dev/hda5 ext3 4806904   2097716   2465004  46% /usr
/dev/hda6 ext3 2885780   1117536   1621656  41% /var
(used guided partitioning)

Output of lspci -knn (or lspci -nn):

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [E]
Partition hard drives:  [O]
Install base system:[E]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [E]
Install boot loader:[E]
Overall install:[O]

Comments/Problems:

* Pick a mirror that is down (or whatever reason), the setup just
hangs.  There is NO timeout, and no way to return to re-select another
mirror.  FWIW, my first (unsuccessful) attempt was gatech.edu.  Only
way to get past was to do a hard-reboot.

* Perhaps because the above step required a hard-reboot (or some other
reason?), the partitions and the file types were correctly identified,
but not their NAMES.

* Three deb packages (one of them being bsdmainutils) were identified
as corrupt in the downloaded ISO image.  The second (unsuccessful)
attempt would never get past the bsdmainutils being corrupt.  The
three packages were identified as faulty ONLY by the md5sum bundled
within the netinst CD.  Running md5sum now (just to be able to give
you the three packages that failed) resulted in all OK.  Am at a
complete loss to explain how the Message Digest 5 algorithm can
indicate the same file as 'OK' or 'FAILED' against the same computed
hash.

* After umpteen Try Again (which appeared to do nothing), for
whatever reason, the installation magically proceeded to work.  I
accidentally hit Enter against the boot loader option.  Hitting Go
back had no effect.  It went ahead and installed GRUB anyway.

* As such, I didn't have critical data on my Debian Etch, despite all
the misgivings above, I consider the installation to be overall okay.

* Lenny bundles SWF decoder library with GNOME.  However, its
performance is quite bad compared to the non-free download from Adobe.
 As I figure it, the only way to get rid of the plugin is to uninstall
ALL of Gnome!  Surely the dependency tracking between packages could
use some tweaking here.


ALL SAID, I APPRECIATE THE EFFORT TAKEN BY VOLUNTEERS TO COME UP WITH
THE BEST LINUX DISTRO OUT THERE.



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