Bug#601174: installation-reports: Mostly success with XFCE netinst 2010-10-19-5

2010-10-24 Thread Christian PERRIER
Quoting Daniel Dickinson (dan...@cshore.neomailbox.net):

 The first issue is that the console-setup(?) asked what do do with the keymap 
 (keep, set, leave as it, etc) which was confusing since I had set the 
 language an keyboard earlier

We should document this in the errata, maybe. There are apparently
situations where a second uestion is asked about keyboard

 The second issue was that SAMBA requested a WORKGROUP name.
 

Well, that's expected behaviour. You did choose the File server
task, right?




signature.asc
Description: Digital signature


Grub2 fails to boot from menu entry

2010-10-24 Thread Diederik de Haas
Hello,

I have grub2 as my bootloader with 2 entries for debian (normal + rescue), some 
entries for memtest 
and an entry for windows.
If I boot and select one of the debian entries, it fails saying File not 
found (the kernel) and 
initrd also fails since it needs a kernel.
When I go to the grub prompt and enter the following lines it works:
linux   /vmlinuz-2.6.32-5-686-bigmem 
root=UUID=14104ecd-4242-45b6-a02f-b2326ec34c54
initrd /initrd-2.6.32-5-686-bigmem
boot

But the menu entry in grub.cfg is essentially the same except the path to 
vmlinuz and initrd start 
with /boot/vmlinuz and /boot/initrd respectively.
My boot partition is /dev/sda1 and my root partition is /dev/sda5.
I've reinstalled grub-pc, grub-common and linux-image-2.6.32-5-686-bigmem and 
rebooted ... fail.

How come that if I enter the commands at the grub prompt it works, but if I 
select it from the menu 
it fails?
And more importantly, what to do about it?

Thanks in advance,
  Diederik

PS: Please CC me as I'm not subscribed to this list.
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd1,msdos5)'
search --no-floppy --fs-uuid --set 14104ecd-4242-45b6-a02f-b2326ec34c54
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
set locale_dir=($root)/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686-bigmem' --class debian 
--class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
echo'Loading Linux 2.6.32-5-686-bigmem ...'
linux   /boot/vmlinuz-2.6.32-5-686-bigmem 
root=UUID=14104ecd-4242-45b6-a02f-b2326ec34c54 ro  quiet
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-686-bigmem
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686-bigmem (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
echo'Loading Linux 2.6.32-5-686-bigmem ...'
linux   /boot/vmlinuz-2.6.32-5-686-bigmem 
root=UUID=14104ecd-4242-45b6-a02f-b2326ec34c54 ro single 
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-2.6.32-5-686-bigmem
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry Memory test (memtest86+) {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
linux16 /memtest86+.bin
}
menuentry Memory test (memtest86+, serial console 115200) {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
linux16 /memtest86+.bin console=ttyS0,115200n8
}
menuentry Memory test (memtest86+, experimental multiboot) {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
multiboot   /memtest86+_multiboot.bin
}
menuentry Memory test (memtest86+, serial console 115200, experimental 
multiboot) {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 41cb92ee-b9c7-4299-8cec-6470dc46bc8c
multiboot   /memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry Microsoft Windows XP Professional (on /dev/sda2) {
insmod part_msdos
insmod ntfs
set root='(hd1,msdos2)'
search --no-floppy --fs-uuid --set 128cd8de8cd8bd83
drivemap -s (hd0) ${root}

Re: Grub2 fails to boot from menu entry

2010-10-24 Thread Diederik de Haas
It looks like I was hit with bug #601073, removing /boot from the linux and 
initrd lines fixed it :)

Regards,
  Diederik

On Sunday 24 October 2010 08:41:02 Diederik de Haas wrote:
 Hello,
 
 I have grub2 as my bootloader with 2 entries for debian (normal + rescue),
 some entries for memtest and an entry for windows.
 If I boot and select one of the debian entries, it fails saying File not
 found (the kernel) and initrd also fails since it needs a kernel.
 When I go to the grub prompt and enter the following lines it works:
 linux /vmlinuz-2.6.32-5-686-bigmem
 root=UUID=14104ecd-4242-45b6-a02f-b2326ec34c54 initrd
 /initrd-2.6.32-5-686-bigmem
 boot
 
 But the menu entry in grub.cfg is essentially the same except the path to
 vmlinuz and initrd start with /boot/vmlinuz and /boot/initrd respectively.
 My boot partition is /dev/sda1 and my root partition is /dev/sda5.
 I've reinstalled grub-pc, grub-common and linux-image-2.6.32-5-686-bigmem
 and rebooted ... fail.
 
 How come that if I enter the commands at the grub prompt it works, but if I
 select it from the menu it fails?
 And more importantly, what to do about it?
 
 Thanks in advance,
   Diederik
 
 PS: Please CC me as I'm not subscribed to this list.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201010240937.23243.didi.deb...@cknow.org



busybox: pushing patches upstream (was: debian (lenny) installer via serial console does not support hardware flow control (for serial over lan))

2010-10-24 Thread Cristian Ionescu-Idbohrn
Package: busybox-static
Version: 1:1.17.1-6
Severity: normal

Noticed some of the patches were not pushed upstream and I can't find
enough info motivating why they're needed.

On Sun, 24 Oct 2010, Denys Vlasenko wrote:

 On Saturday 23 October 2010 16:55, Cristian Ionescu-Idbohrn wrote:
  Or, enable CRTSCTS, if available:
 
  http://bugs.debian.org/528560
 
  Now, this is only _one_ of the numerous debian busybox patches.  This
  tar-ball:
 
  http://ftp.debian.org/debian/pool/main/b/busybox/busybox_1.17.1-6.debian.tar.gz
 
  (part of debian/patches/series) shows:
 
  ---8---
  doc-man-name.patch
  shell-ash-export-HOME.patch
  applets-fallback.patch
  version.patch
  init-console.patch
  strip.patch
  make_gen_build_files_skip_quilt.patch
 
  # The following patches have been merged upstream and will be in version 
  1.18
  [...]
 
  # The following patches will likely be merged soon
  u-mount-FreeBSD-support.patch
  swaponoff-FreeBSD-support.patch
 
  # not sent upstream
  init-console-CRTSCTS.patch
  ---8---
 
  I didn't check, but from what I gather _not all_ those patches are
  applied upstream.  Would be interesting to know which one(s) are
  acceptable/arguable/inacceptable.

 applets-fallback.patch - needs explaining what it achieves

 init-console.patch - needs explaining why this is necessary

 make_gen_build_files_skip_quilt.patch
   - needs to add comment and use less mind-bending escaping (.\?\* - ???)

 shell-ash-export-HOME.patch - exports PATH. bash doesn't do it. Why?

 strip.patch - why? it seems to work fine as-is

 swaponoff-FreeBSD-support.patch, u-mount-FreeBSD-support.patch - big, needs 
 review

 version.patch - why?


 The rest was already in git, or has been pushed to git.

Thanks.  Digged up some names from the debian package changelog and added
them to the Cc: list.  I was not able to find relevant info about the
commented patches, but I hope something will happen soon, as this message
will go to the debian BTS.


Cheers,

-- 
Cristian


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1010241018520.23...@somehost



Re: busybox: pushing patches upstream (was: debian (lenny) installer via serial console does not support hardware flow control (for serial over lan))

2010-10-24 Thread Samuel Thibault
Package: busybox-static
Version: 1:1.17.1-6
Severity: normal

 On Sun, 24 Oct 2010, Denys Vlasenko wrote:
  applets-fallback.patch - needs explaining what it achieves

It's apparently related to http://bugs.debian.org/472653 and
http://bugs.debian.org/498029

  shell-ash-export-HOME.patch - exports PATH. bash doesn't do it. Why?

My best guess is to save a few bytes in the startup scripts.

  strip.patch - why? it seems to work fine as-is

Probably, but then the Debian scripts can't control whether to strip or
not, which is needed for debugging etc. Also the strip may not exactly
fit the Debian needs.

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101024094511.gj24...@const.famille.thibault.fr



Re: Copy of installer into squeeze

2010-10-24 Thread Joerg Jaspert
On 12276 March 1977, Otavio Salvador wrote:
 Please copy installer 20101020 into squeeze.

The squeeze installer current is a symlink going to sid/current which
points at whatever you uploaded last.
Do you want me to change that in preparation of the upcoming release, so
that squeeze gets a direct copy of the installer and the current symlink
is local to that, or do you want to wait with this?

-- 
bye, Joerg
buxy I wish mrvn stopped supporting 3.0 (quilt), it's a recipe for failure


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87bp6jyjfk@gkar.ganneff.de



Bug#601174: installation-reports: Mostly success with XFCE netinst 2010-10-19-5

2010-10-24 Thread Miguel Figueiredo
A Domingo 24 Outubro 2010 02:36:10 Daniel Dickinson você escreveu:

[...]

 The first issue is that the console-setup(?) asked what do do with the
 keymap (keep, set, leave as it, etc) which was confusing since I had set
 the language an keyboard earlier

I believe this was fixed very recently. 
On the several tests i have done with very recent images the issue seems to be 
fixed.

Care to try with the latest image so we can be sure:
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/


 The second issue was that SAMBA requested
 a WORKGROUP name.

AFAIK this is expected behavior.

[...]

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201010241139.26535.el...@debianpt.org



Re: Debian Installer Errata

2010-10-24 Thread Miguel Figueiredo
A Domingo 24 Outubro 2010 00:27:22 Miguel Figueiredo você escreveu:
 I forgot to point the URL of the existing errata.
 Here it goes:
 
 1 - http://www.debian.org/devel/debian-installer/errata

Fixed BR number on the usb keyboard issue.
I suspect the inclusion of the hid-monterey module [2] may solved the reported 
issue. 

2 - http://lists.debian.org/debian-boot/2010/10/msg00532.html

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org

--- errata.wml	2010-10-23 22:44:13.692020062 +0100
+++ 20101024_errata.wml	2010-10-24 12:07:06.451639000 +0100
@@ -1,23 +1,45 @@
 #use wml::debian::template title=Debian-Installer errata
 #use wml::debian::recent_list
 
-h1 id=squeeze-alpha1Errata for squeeze release alpha 1/h1
+h1 id=squeeze-beta1Errata for squeeze release beta 1/h1
 
 p
-This is a list of known problems in the squeeze alpha 1 release of
+This is a list of known problems in the squeeze beta 1 release of
 Debian Installer. If you do not see your problem listed here,
 please send us an a href=report-templateinstallation report/a
 describing the problem.
 /p
 
 dl class=gloss
-	dtAuto-assembly of RAID arrays in rescue mode can corrupt data/dt
+	dtzipl installation problem that makes s390 uninstalable/dt
 	dd
-		Rescue mode should be used with great care when software RAID
-		arrays were in use on the system to rescue. The rescue mode scripts
-		automatically assemble arrays, which could lead to data corruption in
-		the presence of invalid or obsolete RAID superblocks.
-		Fixed in daily built images.
+	If created a dedicated partition for the /boot directory system-boot 
+	fails after installation./br 
+	See a href=http://bugs.debian.org/519254;#519254/a.
+	/dd
+	dtos-prober causes data corruption on a SAN setup/dt
+	dd
+	os-prober causes data corruption on a SAN setup; 
+	Mounts SAN volumes that are already mounted on a different host.
+	See a href=http://bugs.debian.org/599203;#599203/a.
+	/dd
+	dtFailed to install on powerpc NewWorld with added disk controller/dt
+	dd
+	yaboot: failed to install boot loader with addon Promise card
+	as disk controller on powerpc NewWorld.
+	See a href=http://bugs.debian.org/589701;#589701/a.
+	/dd
+	dtSpeakup doesn't get automatically configured/dt
+	dd
+	When installing with speakup enabled, speakup doesn't get 
+	automatically configured on the installed system. Workaround:br /
+	When the installation is done at the I'm finished, will reboot 
+	prompt swith to VT2 and type:
+	br /
+	ttecho speakup_foobar  /target/etc/modules/tt
+	br /
+	where foobar is replaced by the name of the desired speakup driver. Then
+	come back to VT1 to let d-i finish and reboot.
 	/dd
 	dtBuggy routers may cause network problems/dt
 	dd
@@ -56,11 +78,9 @@
 
 	dtSome USB keyboards may not work/dt
 	dd
-	Some USB keyboards require specific kernel modules for proper
-	support. Those are missing in current installer. See 
-	a href=http://bugs.debian.org/561036;#561036/a, 
-	a href=http://bugs.debian.org/567431;#567431/a.
-	Fixed in daily built images.
+	Some USB keyboards, like the Genius Comfy KB 16e, don't work with 
+	current kernel.
+	See a href=http://bugs.debian.org/588742;#588742/a. 
 	/dd
 	dti386: few issues/dt
 	dd


Re: new udebs

2010-10-24 Thread Philipp Kern
On Wed, Oct 20, 2010 at 09:13:50PM +0100, Adam D. Barratt wrote:
 There are currently some udeb-producing packages which are neither on
 the needs approval from a d-i RM before migrating list, nor the
 explicit can migrate at will list; from a quick scan, many of them
 appear to be kfreebsd related.  I've listed these below; please could
 you confirm whether any of them should be added to the needs approval
 list?
 
 btrfs-tools
 debian-ports-archive-keyring
 espeak
 freebsd-libs
 freebsd-utils
 isc-dhcp
 kfreebsd-kernel-di-amd64
 kfreebsd-kernel-di-i386
 libbsd
 libfakekey
 libpciaccess
 libxrender
 matchbox-keyboard
 ufsutils
 zfsutils

Ping?

Kind regards,
Philipp Kern 


signature.asc
Description: Digital signature


Bug#601222: busybox: pushing patches upstream

2010-10-24 Thread Cristian Ionescu-Idbohrn
Package: busybox-static
Version: 1:1.17.1-6
Severity: normal

Have just realised I sent the bug report to the wrong list :(
Forwarding it to the wright list now.

-- Forwarded message --
Date: Sun, 24 Oct 2010 10:50:24
From: Cristian Ionescu-Idbohrn cristian.ionescu-idbo...@axis.com
Reply-To: busy...@busybox.net
To: b...@lists.debian.org
Cc: busy...@busybox.net, debian-boot@lists.debian.org,
Bastian Blank wa...@debian.org, Aurelien Jarno aure...@debian.org
Subject: busybox: pushing patches upstream (was: debian (lenny) installer via
serial console does not support hardware flow control (for serial over lan))

Noticed some of the patches were not pushed upstream and I can't find
enough info motivating why they're needed.

On Sun, 24 Oct 2010, Denys Vlasenko wrote:

 On Saturday 23 October 2010 16:55, Cristian Ionescu-Idbohrn wrote:
  Or, enable CRTSCTS, if available:
 
  http://bugs.debian.org/528560
 
  Now, this is only _one_ of the numerous debian busybox patches.  This
  tar-ball:
 
  http://ftp.debian.org/debian/pool/main/b/busybox/busybox_1.17.1-6.debian.tar.gz
 
  (part of debian/patches/series) shows:
 
  ---8---
  doc-man-name.patch
  shell-ash-export-HOME.patch
  applets-fallback.patch
  version.patch
  init-console.patch
  strip.patch
  make_gen_build_files_skip_quilt.patch
 
  # The following patches have been merged upstream and will be in version 
  1.18
  [...]
 
  # The following patches will likely be merged soon
  u-mount-FreeBSD-support.patch
  swaponoff-FreeBSD-support.patch
 
  # not sent upstream
  init-console-CRTSCTS.patch
  ---8---
 
  I didn't check, but from what I gather _not all_ those patches are
  applied upstream.  Would be interesting to know which one(s) are
  acceptable/arguable/inacceptable.

 applets-fallback.patch - needs explaining what it achieves

 init-console.patch - needs explaining why this is necessary

 make_gen_build_files_skip_quilt.patch
   - needs to add comment and use less mind-bending escaping (.\?\* - ???)

 shell-ash-export-HOME.patch - exports PATH. bash doesn't do it. Why?

 strip.patch - why? it seems to work fine as-is

 swaponoff-FreeBSD-support.patch, u-mount-FreeBSD-support.patch - big, needs 
 review

 version.patch - why?


 The rest was already in git, or has been pushed to git.

Thanks.  Digged up some names from the debian package changelog and added
them to the Cc: list.  I was not able to find relevant info about the
commented patches, but I hope something will happen soon, as this message
will go to the debian BTS.


Cheers,

-- 
Cristian



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1010241445240.23...@somehost



Bug#600280: keyboard-configuration: Setting a compose key with the debconf question does not set a compose key

2010-10-24 Thread Samuel Thibault
Hello,

Maik Zumstrull, le Fri 15 Oct 2010 15:24:47 +0200, a écrit :
 All I know is, I set Right Logo to be Compose with dpkg-reconfigure
 and it didn't work, set it again and it didn't work, and rebooted and
 it still does not work.

That works here. Please provide your /etc/default/keyboard, your
/etc/X11/xorg.conf if you have one, and the output of setxkbmap -print
in the X session.

Samuel



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20101024140518.gu24...@const.famille.thibault.fr



Bug#600280: keyboard-configuration: Setting a compose key with the debconf question does not set a compose key

2010-10-24 Thread Anton Zinoviev
On Sun, Oct 24, 2010 at 04:05:18PM +0200, Samuel Thibault wrote:
 
 Maik Zumstrull, le Fri 15 Oct 2010 15:24:47 +0200, a écrit :
  All I know is, I set Right Logo to be Compose with dpkg-reconfigure
  and it didn't work, set it again and it didn't work, and rebooted and
  it still does not work.
 
 That works here. Please provide your /etc/default/keyboard, your
 /etc/X11/xorg.conf if you have one, and the output of setxkbmap -print
 in the X session.

And please tell us what you think the Compose key should do.  I am sorry 
to ask this but sometimes the bugs of console-setup are due to the 
terminology (people select Compose but want AltGr or they select AltGr 
but want Compose).

Anton Zinoviev




-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20101024160046.ga17...@debian.lan



Bug#601249: usb3 support

2010-10-24 Thread Miguel Figueiredo
package: kernel-wedge
version: n/a
tags: patch
severity: wishlist

Please add support for usb3 activating xhci-hcd module available on linux 
kernel since 2.6.31.

Index: packages/kernel/kernel-wedge/modules/usb-modules
===
--- packages/kernel/kernel-wedge/modules/usb-modules(revision 65130)
+++ packages/kernel/kernel-wedge/modules/usb-modules(working copy)
@@ -1,4 +1,5 @@
 ehci-hcd ?
 ohci-hcd ?
 uhci-hcd ?
+xhci-hcd ?
 usbcore ?

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201010241734.26049.el...@debianpt.org



Bug#598119: Same behaviour with actual squeeze installer

2010-10-24 Thread Bernhard
Only for information:
The same behaviour with actual squeeze installer.



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4cc47020.8040...@online.de



Localization status for Debian Installer (October 24th update)

2010-10-24 Thread Christian PERRIER
Let's start a new spam session^W^W series of localization status
reports.

As written previously, the beta1 release of D-I is on its
way. Immediately after it, we will prepare at least an RC1 release,
which has great chances to be the final release for squeeze.

So, translators, *this is your last chance to complete things*.

Please note that we won't deactivate any language as of now. So,
completing your translation work is just a matter of making things
perfect..:-). Prospective language *can* be activated if they complete
sublevels 1 and 2. See at the end of this mail for the list of these
languages and what is missing for them

==
= 66 languages are activated =
==

38 complete for sublevels 1 to 5
-
ar ast be bg ca cs de el eo es
fi fr  ga gl gu he hi id is ja
kk ko  lt mr nb pa pl pt ro ru
sk sr  sv ta th tz vi zh_CN

5 complete for 4 sublevels
--
it (sublevel 4 incomplete)
fa (sublevel 4 incomplete)
te (sublevel 3 incomplete)
et (sublevel 2 incomplete)
eu (sublevel 2 incomplete)

2 complete for 3 sublevels
--
nl (sublevel 3 and 4 incomplete)
hu (sublevel 2 and 3 incomplete)

2 lcomplete for 2 sublevels
---
uk(sublevel 2, 3 and 4 incomplete)
zh_TW (sublevel 2, 3 and 4 incomplete)

11 complete for 1 sublevel
--
am (sublevel 1 complete)
bn (sublevel 5 complete)
bs (sublevel 5 complete)
da (sublevel 5 complete)
dz (sublevel 5 complete)
hr (sublevel 5 complete)
ka (sublevel 5 complete)
km (sublevel 5 complete)
lv (sublevel 5 complete)
pt_BR (sublevel 5 complete)
sl (sublevel 5 complete)

8 incomplete for all sublevels
--
ku mk ml ne nn se sq tl 

=

11 languages are prospective and therefore not activated

si (39   strings missing in sublevels 1 and 2)
wo (82   strings missing in sublevels 1 and 2)
cy (93   strings missing in sublevels 1 and 2)
ms (340  strings missing in sublevels 1 and 2)
kn (610  strings missing in sublevels 1 and 2)
br (612  strings missing in sublevels 1 and 2)
mg (821  strings missing in sublevels 1 and 2)
xh (904  strings missing in sublevels 1 and 2)
ur (1021 strings missing in sublevels 1 and 2)
hy (1026 strings missing in sublevels 1 and 2)
lo (1063 strings missing in sublevels 1 and 2)





signature.asc
Description: Digital signature


Re: Copy of installer into squeeze

2010-10-24 Thread Otavio Salvador
Hello,

On Sun, Oct 24, 2010 at 8:27 AM, Joerg Jaspert jo...@debian.org wrote:
 On 12276 March 1977, Otavio Salvador wrote:
 Please copy installer 20101020 into squeeze.

 The squeeze installer current is a symlink going to sid/current which
 points at whatever you uploaded last.
 Do you want me to change that in preparation of the upcoming release, so
 that squeeze gets a direct copy of the installer and the current symlink
 is local to that, or do you want to wait with this?

Yes, please copy to squeeze the current one and make current link to
it so we have it stable for weekly builds.

-- 
Otavio Salvador                  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854         http://projetos.ossystems.com.br


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktim-ry_6im7wbr_vjcjbrvtna4wsdoiu0ahjm...@mail.gmail.com



Bug#601273: installation-report: kfreebsd-i386 install: non-fatal ad0 cache flush issue.

2010-10-24 Thread Michael Dorrington
Package: installation-reports
Version: 2.42
Severity: important
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-CC: debian-...@lists.debian.org

-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/daily-builds/daily/20101016-7/kfreebsd-i386/iso-cd/debian-testing-kfreebsd-i386-netinst.iso
Date: 2010-10-24

Machine: PIII with 2 IDE hard drives and 2 IDE optical drives.
Partitions: df -Tl will do; the raw partition table is preferred

# df -Tl
FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/ad0s1 ufs16467790   2969336  12181032  20% /
devfsdevfs   1 1 0 100% /dev
linprocfs
 linprocfs   4 4 0 100% /proc
/sys sysfs   4 4 0 100% /sys
fdescfsfdescfs   1 1 0 100% /dev/fd
tmpfstmpfs  788444 4788440   1% /lib/init/rw

# sfdisk -l /dev/ad0

last_lba(): I don't know how to handle files with mode 20660
Disk /dev/ad0: cannot get geometry

Disk /dev/ad0: 2193 cylinders, 255 heads, 63 sectors/track
Warning: extended partition does not start at a cylinder boundary.
DOS and Linux will interpret the contents differently.
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start End   #cyls#blocks   Id  System
/dev/ad0p1   *  0+   2117-   2118-  17006592   a5  FreeBSD
/dev/ad0p2   2117+   2193- 76-6103055  Extended
/dev/ad0p3  0   -   0  00  Empty
/dev/ad0p4  0   -   0  00  Empty
/dev/ad0p5   2117+   2193- 76-610304   82  Linux swap / Solaris

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: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

During partitioning got lots of these pop-up alerts for /dev/ad0:

   -| [!] Partition disks |--
Warning!
   Could not flush cache of device /dev/ad0 - No such device.
   
 Go Back  Continue

And got one for /dev/ad1.

In the install menus the first character isn't highlighted when the item
is selected.

_Post-install_

Despite choosing UK keyboard on install still had to do
'dpkg-reconfigure kbdcontrol' and choose 'uk.iso.kbd' to get correct
keymap on console.

After booting, upowerd was running at 80+%, dramatically slowing down
the presentation of the GNOME login screen. 

After booting, there were ata1 error messages filling ttyv0
and /var/log/messages.
# grep -i ata1 /var/log/messages
Oct 24 12:59:24 kara kernel: ata1: ATA channel 1 on atapci0
Oct 24 12:59:24 kara kernel: ata1: [ITHREAD]
Oct 24 12:59:24 kara kernel: acd0: CDRW YAMAHA CRW2216E/1.0f at ata1-master 
PIO4 
Oct 24 12:59:24 kara kernel: acd1: CDROM LG CD-ROM CRD-8522B/2.00 at 
ata1-slave PIO4 
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: (probe1:ata1:0:1:0): TEST UNIT READY. CDB: 0 0 0 0 
0 0 
Oct 24 12:59:24 kara kernel: (probe1:ata1:0:1:0): CAM status: SCSI Status Error
Oct 24 12:59:24 kara kernel: (probe1:ata1:0:1:0): SCSI status: Check Condition
Oct 24 12:59:24 kara kernel: (probe1:ata1:0:1:0): SCSI sense: NOT READY 
asc:3a,0 (Medium not present)
Oct 24 12:59:24 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:24 kara kernel: (probe0:ata1:0:0:0): AutoSense failed
Oct 24 12:59:24 kara kernel: cd0 at ata1 bus 0 scbus1 target 1 lun 0
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 12:59:54 kara kernel: ata1: error issuing ATA PACKET command
Oct 24 

Bug#598119: Same behaviour with actual squeeze installer

2010-10-24 Thread Miguel Figueiredo
HI Bernhard,

A Domingo 24 Outubro 2010 18:42:56 Bernhard você escreveu:
 Only for information:
 The same behaviour with actual squeeze installer.

The error you are getting is a failure to download the Release file from the 
mirror you are using.

Are you able to check if the network is working? Any suspicious message on the 
2nd terminal window?

Please send gzipped syslog from installation.

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org




--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201010242205.06023.el...@debianpt.org



Bug#431296: marked as done (Default partitioning on LVM-LUKS provides too small /)

2010-10-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 Oct 2010 23:55:18 +0200
with message-id 20101024215518.ga12...@const.famille.thibault.fr
and subject line Re: Default partitioning on LVM-LUKS provides too small /
has caused the Debian Bug report #431296,
regarding Default partitioning on LVM-LUKS provides too small /
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 ow...@bugs.debian.org
immediately.)


-- 
431296: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=431296
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: partman-auto
Version: 68
Severity: normal

--- Please enter the report below this line. ---

The default debian-boot partitioning above LVM-LUKS provides too small / : it 
is not possible to have two kernels installed and to update one of them.

On the infos provided below, you'll see reiserfs, which is personal 
modification, but sizes have not been modified.

Best regards, 

Didier Raboud

---
# aptitude
(...)
Preparing to replace linux-image-2.6.22-rc6-amd64 
2.6.22~rc6-1~experimental.1~snapshot.9027 
(using 
.../linux-image-2.6.22-rc6-amd64_2.6.22~rc6-1~experimental.1~snapshot.9038_amd64.deb)
 ...
The directory /lib/modules/2.6.22-rc6-amd64 still exists. Continuing as 
directed.
Done.
Unpacking replacement linux-image-2.6.22-rc6-amd64 ...
dpkg: error 
processing 
/var/cache/apt/archives/linux-image-2.6.22-rc6-amd64_2.6.22~rc6-1~experimental.1~snapshot.9038_amd64.deb
 
(--unpack):
 failed in buffer_write(fd) (9, ret=-1): backend dpkg-deb during 
`./lib/modules/2.6.22-rc6-amd64/kernel/fs/gfs2/gfs2.ko': No space left on 
device
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Running postrm hook script /sbin/update-grub.
You shouldn't call /sbin/update-grub. Please call /usr/sbin/update-grub 
instead!
 
Searching for GRUB installation directory ... found: /boot/grub
Searching for default file ... found: /boot/grub/default
Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
Searching for splash image ... found: /boot/grub/splash.xpm.gz
Found kernel: /vmlinuz-2.6.22-rc6-amd64
Found kernel: /vmlinuz-2.6.21-2-amd64
Updating /boot/grub/menu.lst ... Updating the default booting kernel
done
 
Errors were encountered while processing:
 
/var/cache/apt/archives/linux-image-2.6.22-rc6-amd64_2.6.22~rc6-1~experimental.1~snapshot.9038_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Press return to continue.

$ df -h
Sys. de fich. Tail. Occ. Disp. %Occ. Monté sur
/dev/mapper/Tamino-root
  276M  218M   59M  79% /
tmpfs1004M 0 1004M   0% /lib/init/rw
udev   10M   72K   10M   1% /dev
tmpfs1004M 0 1004M   0% /dev/shm
/dev/sda1 236M   33M  192M  15% /boot
/dev/mapper/Tamino-home
   98G  2.1G   96G   3% /home
/dev/mapper/Tamino-tmp
  392M   33M  360M   9% /tmp
/dev/mapper/Tamino-usr
  4.8G  2.4G  2.5G  49% /usr
/dev/mapper/Tamino-var
  2.9G  1.5G  1.4G  53% /var

$ mount
/dev/mapper/Tamino-root on / type reiserfs (rw)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sda1 on /boot type ext3 (rw,commit=600)
/dev/mapper/Tamino-home on /home type reiserfs (rw)
/dev/mapper/Tamino-tmp on /tmp type reiserfs (rw)
/dev/mapper/Tamino-usr on /usr type reiserfs (rw)
/dev/mapper/Tamino-var on /var type reiserfs (rw)


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.22-rc6-amd64

Debian Release: 4.0
  700 stable  security.debian.org 
  700 stable  mirror.switch.ch 
  650 testing mirror.switch.ch 
  600 unstablemirror.switch.ch 
   50 unstablemirror.switch.ch 
   50 testing mirror.switch.ch 
   50 stable  mirror.switch.ch 
   50 stable  debian.netcologne.de 
   50 kernel-dists-trunk kernel-archive.buildserver.net 
   50 kernel-dists-sid kernel-archive.buildserver.net 
   50 kernel-dists-etch kernel-archive.buildserver.net 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 

---End Message---
---BeginMessage---
Version: 84

JFP had increased it to 350 in rev 84.

Samuel

---End Message---


Bug#588742: debian-installer: The netinstall iso image does not recognize the attached PS/2 keyboard.

2010-10-24 Thread Otavio Salvador
Hello,

On Sat, Oct 23, 2010 at 9:58 PM, Miguel Figueiredo el...@debianpt.org wrote:
 A Quinta 14 Outubro 2010 20:17:39 Moises Brenes você escreveu:

 Index: packages/kernel/kernel-wedge/modules/input-modules
 ===
 --- packages/kernel/kernel-wedge/modules/input-modules  (revision 65130)
 +++ packages/kernel/kernel-wedge/modules/input-modules  (working copy)
 @@ -3,3 +3,4 @@
  hid-belkin ?
  hid-microsoft ?
  hid-logitech ?
 +hid-monterey ?

 Can we get a image with this module enabled so you can test if your keyboard
 is detected (and works) ?

I queued it for inclusion in next kernel update. This will be in few days.

Once done, this can be checked using the dailyes.

-- 
Otavio Salvador                  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854         http://projetos.ossystems.com.br



--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikwy_akajhjvg3xptmwvlomdjc_lmzrw61nc...@mail.gmail.com



Bug#601308: installation-guide: Mandrake -- Mandriva

2010-10-24 Thread Yuri Kozlov
Package: installation-guide
Version: Mandrake-Mandriva.patch
Severity: minor

Hello.
Mandrake was rebranded to Mandriva.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- en/appendix/chroot-install.xml  2010-10-24 13:22:26.0 +0400
+++ /tmp/chroot-install.xml 2010-10-25 09:41:16.0 +0400
@@ -10,7 +10,7 @@
 Unix or Linux system, without using the menu-driven installer as
 explained in the rest of the manual. This quotecross-install/quote
 HOWTO has been requested by users switching to debian-gnu; from
-Red Hat, Mandrake, and SUSE. In this section some familiarity with
+Red Hat, Mandriva, and SUSE. In this section some familiarity with
 entering *nix commands and navigating the file system is assumed. In
 this section, prompt$/prompt symbolizes a command to be entered in
 the user's current system, while prompt#/prompt refers to a