Bug#585103: debian-installer: [INTL:da] Danish translation update
Package: debian-installer Severity: wishlist Tags: patch l10n d-i Patch for Danish translation of level-1, sublevel-3 included. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-trunk-686 (SMP w/1 CPU core) Locale: LANG=fo_FO.ISO-8859-1, LC_CTYPE=fo_FO.ISO-8859-1 (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash --- debian-installer_packages_po_sublevel3_da.po 2010-06-09 04:57:06.0 +0200 +++ debian-installer_packages_po_sublevel3_da-new.po 2010-06-09 08:50:51.0 +0200 @@ -17,16 +17,16 @@ # Mads Bille Lundby , 2009. # Henrik Christian Grove , 2008. # Jesper Dahl Nyerup , 2008. -# Jacob Sparre Andersen , 2008. # Claus Hindsgaul , 2004-2007, 2010. +# Jacob Sparre Andersen , 2008, 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel3_da\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-06-01 22:47+\n" -"PO-Revision-Date: 2010-03-20 19:24+0100\n" -"Last-Translator: \n" -"Language-Team: American English \n" +"PO-Revision-Date: 2010-06-09 08:50+0200\n" +"Last-Translator: Jacob Sparre Andersen \n" +"Language-Team: Dansk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -264,15 +264,14 @@ #. :sl3: #: ../driver-injection-disk-detect.templates:1001 msgid "Detect virtual driver disks from hardware manufacturer" -msgstr "" +msgstr "Detektér virtuelle driver-diske fra hardwareproducent" #. Type: boolean #. Description #. :sl3: #: ../driver-injection-disk-detect.templates:2001 -#, fuzzy msgid "Load drivers from internal virtual driver disk?" -msgstr "Indlæs drivere fra endnu et flytbart medie?" +msgstr "Indlæs drivere fra intern virtuel driver-disk?" #. Type: boolean #. Description @@ -281,7 +280,7 @@ msgid "" "Installing on this hardware may require some drivers provided by the " "manufacturer to be loaded from the built-in driver injection disk." -msgstr "" +msgstr "Installation på denne hardware kan kræve at nogle drivere fra producenten indlæses fra en indbygget virtuel driver-disk." #. Type: error #. Description
Bug#580736: grub is not able to configure Fedora in a dual boot setup
I've an identical issue with an Ubuntu partition, downgrading os-prober to 1.35 but this problem persist. I think that os-prober is not the problem because running "update-grub2" in the stdout I can see the correct entries but the grub.cfg is wrongly generated.
Re: Getting d-i to find firmware on the CD generated by debian-cd
On Thu, May 27, 2010 at 03:17:08PM +0100, Steve McIntyre wrote: >On Sat, May 22, 2010 at 06:58:52PM +0200, Petter Reinholdtsen wrote: > >I've added code into debian-cd to generate images with firmware on the >first CD. Add "FORCE_FIRMWARE=1" in CONF.sh. I've also tweaked the >build scripts so that we'll start generating them. I can see that I've >got all the firmware debs in /firmware in the ISO, but I don't see any >feedback to suggest that the installer is picking up on them. Test >images available at > >http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/20100527-7/i386/iso-cd/firmware-testing-i386-netinst.iso >http://cdimage.debian.org/cdimage/daily-builds/sid_d-i/20100527-7/amd64/iso-cd/firmware-testing-amd64-netinst.iso > >in case anybody else wants to help testing them. I've still got a >couple more things to decide about these new firmware-included images >even once we've got these working: > > * where exactly to put them on cdimage (for now they're alongside the > normal images) > > * how to describe them in the README on the disc. For now I've added: > > "This disc includes non-free firmware files to make installation >easier on some systems. See http://wiki.debian.org/Firmware for >more details." > > but I'm open to suggestions for something better. No responses yet. Anyone??? -- Steve McIntyre, Cambridge, UK.st...@einval.com "...In the UNIX world, people tend to interpret `non-technical user' as meaning someone who's only ever written one device driver." -- Daniel Pead -- 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/20100609121627.gb6...@einval.com
Bug#585133: devices created by MAKEDEV during installation are lost due improper setup of /target/dev/.static/dev
Package: base-installer Version: 1.107 Severity: normal Tags: patch I have observed in lenny's debian-installer that devices created by MAKEDEV (called in a postinst of some package) are lost. In most cases this goes unnoticed because udev is used and devices are created automatically. After checking the code I believe the latest version to be affected as well so I'm filing this bug on it. The reason is that the code in setup_dev_linux() in library.sh is not doing what it's supposed to do. mount --bind does not transfer sub-mounts and as such /target/dev/.static/dev is not the same as /dev/.static/dev despite the bind mount of /dev on /target/dev. I first tried fixing this with mount --rbind (instead of --bind) but it did not help. I found a solution that achieves the same task in a more elegant way, see the attached patch. I first duplicate /target/dev on /target/mnt with mount --bind, then I replace /target/dev with /dev and finally I move the bind-mount on /target/mnt to /target/dev/.static/dev. This does not pollute /dev/.static/dev and still ensures what we want. Please consider applying the attached patch. BTW, it would be nice if the patch in #579645 could also be considered. It will conflict with this patch but it's easy to update if you need. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (150, 'experimental') Architecture: i386 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Index: library.sh === --- library.sh (révision 63398) +++ library.sh (copie de travail) @@ -107,15 +107,12 @@ fi # Undo dev bind mounts for idempotency. + if grep -qE '^[^ ]+ /target/dev/.static/dev' /proc/mounts; then + umount /target/dev/.static/dev + fi if grep -qE '^[^ ]+ /target/dev' /proc/mounts; then umount /target/dev fi - # Unmount /dev/.static/dev if mounted on same device as /target - mp_stdev=$(grep -E '^[^ ]+ /dev/\.static/dev' /proc/mounts | \ - cut -d" " -f1) - if [ "$mp_stdev" ] && grep -q "^$mp_stdev /target " /proc/mounts; then - umount /dev/.static/dev - fi } setup_dev_linux () { @@ -123,9 +120,11 @@ # Tests in MAKEDEV require this is done in the D-I environment mkdir -p /dev/.static/dev chmod 700 /dev/.static/ - mount --bind /target/dev /dev/.static/dev - # Mirror device nodes in D-I environment to target + # Mirror device nodes in D-I environment to target while still + # keeping original /target/dev as /target/dev/.static/dev + mount --bind /target/dev /target/mnt mount --bind /dev /target/dev/ + mount --move /target/mnt /target/dev/.static/dev } setup_dev_kfreebsd() {
Resizing partition in preseed (d-i) or any other automated way ?
Hello List, I an newbie and googled a lot; but I am not able to find a viable solution so far for my problem; please forgive me if I am addressing to a wrong list. I have 30 GB disk where I am having 3.0 GB ext3 partion as root-boot partition and 2.00 GB swap and rest space is partitioned into another partition and mounted in /mnt/test. I just want to know if it is possible to resize 3.0 GB partition into 10 GB partition without loosing data on 3.0 GB root-boot partition using preseeding or any other automated method? Thank you. Regards, -RR
Bug#584973: Acknowledgement (debian installer squeeze does not set up USB keyboard)
USB keyboard on that machine works with lenny 5.04 amd64 netinst and Ubuntu 10.04 amd64 live system. USB keyboard works on squeeze installed using deboostrap on mentioned Ubuntu live system (lenny installer misses support for NIC). Regards, Linus van Geuns -- 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/aanlktik67ilrcbusohkqi2octm1rnwlyvxsmxrwxd...@mail.gmail.com
Bug#585067: keyboard-configuration: No alt+gr keys working after some time
On Tue, Jun 08, 2010 at 10:09:04PM +0200, yellow wrote: > > I tried now to try to reconfigure but still no changes. > Altgr does not work. Please try again - according to the debconf information in this bug report to the question "Key to function as AltGr:" you have answered "No AltGr key". Please answer "Right Alt (AltGr)" and reboot the machine. Then report to us the result. 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/20100609171439.gb3...@debian.lan
Bug#585103: marked as done (debian-installer: [INTL:da] Danish translation update)
Your message dated Wed, 9 Jun 2010 22:21:59 +0200 with message-id <20100609202159.gl12...@mykerinos.kheops.frmug.org> and subject line Re: Bug#585103: debian-installer: [INTL:da] Danish translation update has caused the Debian Bug report #585103, regarding debian-installer: [INTL:da] Danish translation update 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.) -- 585103: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=585103 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: debian-installer Severity: wishlist Tags: patch l10n d-i Patch for Danish translation of level-1, sublevel-3 included. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-trunk-686 (SMP w/1 CPU core) Locale: LANG=fo_FO.ISO-8859-1, LC_CTYPE=fo_FO.ISO-8859-1 (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash --- debian-installer_packages_po_sublevel3_da.po 2010-06-09 04:57:06.0 +0200 +++ debian-installer_packages_po_sublevel3_da-new.po 2010-06-09 08:50:51.0 +0200 @@ -17,16 +17,16 @@ # Mads Bille Lundby , 2009. # Henrik Christian Grove , 2008. # Jesper Dahl Nyerup , 2008. -# Jacob Sparre Andersen , 2008. # Claus Hindsgaul , 2004-2007, 2010. +# Jacob Sparre Andersen , 2008, 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel3_da\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-06-01 22:47+\n" -"PO-Revision-Date: 2010-03-20 19:24+0100\n" -"Last-Translator: \n" -"Language-Team: American English \n" +"PO-Revision-Date: 2010-06-09 08:50+0200\n" +"Last-Translator: Jacob Sparre Andersen \n" +"Language-Team: Dansk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -264,15 +264,14 @@ #. :sl3: #: ../driver-injection-disk-detect.templates:1001 msgid "Detect virtual driver disks from hardware manufacturer" -msgstr "" +msgstr "Detektér virtuelle driver-diske fra hardwareproducent" #. Type: boolean #. Description #. :sl3: #: ../driver-injection-disk-detect.templates:2001 -#, fuzzy msgid "Load drivers from internal virtual driver disk?" -msgstr "Indlæs drivere fra endnu et flytbart medie?" +msgstr "Indlæs drivere fra intern virtuel driver-disk?" #. Type: boolean #. Description @@ -281,7 +280,7 @@ msgid "" "Installing on this hardware may require some drivers provided by the " "manufacturer to be loaded from the built-in driver injection disk." -msgstr "" +msgstr "Installation på denne hardware kan kræve at nogle drivere fra producenten indlæses fra en indbygget virtuel driver-disk." #. Type: error #. Description --- End Message --- --- Begin Message --- Quoting Jacob Sparre Andersen (spa...@nbi.dk): > Package: debian-installer > Severity: wishlist > Tags: patch l10n d-i > > > Patch for Danish translation of level-1, sublevel-3 included. Committed. Thanks for your work... signature.asc Description: Digital signature --- End Message ---
João Paulo & Eduardo - Volta pra curtição (Pra você nada valeu)
Olá , Este programa não permite a visualização de mensagens formatadas (com cores, imagens e links), portanto solicitamos que você copie o texto abaixo, e cole no campo "Endereço" do seu navegador. http://emkt.joaopauloeeduardo.com.br/emkt/tracer/?1,271079,ba610572,357c Para garantir que nossas mensagens cheguem em sua caixa de entrada, adicione o email m...@joaopauloeeduardo.com.br ao seu catálogo de endereços. Não deseja mais receber nossas mensagens? Cancele sua inscrição aqui: http://emkt.joaopauloeeduardo.com.br/emkt/tracer/?9,271079,ba610572,357c
Bug#585254: mklibs: Python string exceptions no more allowed in Python 2.6
Package: mklibs Version: 0.1.30 Severity: minor User: debian-pyt...@lists.debian.org Usertags: python2.6 Hello, One of the changes brought by Python 2.6 is the removal of string exceptions, so they won't work in Python 2.6 (just a side note: they were also buggy before, since they were not guaranteed to work reliable even in <2.6); as an example: $ python2.5 -c "raise 'eggs'" -c:1: DeprecationWarning: raising a string exception is deprecated Traceback (most recent call last): File "", line 1, in eggs $ python2.6 -c "raise 'eggs'" Traceback (most recent call last): File "", line 1, in TypeError: exceptions must be old-style classes or derived from BaseException, not str Since 2.6 is the planned default version for the upcoming new Debian stable release, there are chances your package may be affected by this change. We are not sure your package is impacted, since the exception raise can be in a dead or very rare branch of the code, and so simply never being executed. We would like to leverage your package maintainer status and the relationship with upstream authors to inspect more deeply the issue and act accordingly (that includes: making this bug release critical, closing it as irrelevant, tagging it 'wontfix', or whatever is appropriate). Jakub Wilk made the discovery of the problem and kindly prepared a list [1] of all identified packages (downloaded on 2010-06-09) along with files & lines that triggered the pattern search. [1] http://people.debian.org/~morph/strexp/string-exceptions.lintian This mass-bug filing was announced at 2010-06-06 on [2] (see the thread and the references there). [2] http://lists.debian.org/debian-devel/2010/06/msg00097.html We do not consider the whole situation a stopper for the Python transition to 2.6, except (of course) for those single bugs where severity will be increased. Thanks in advance for your attention, Sandro on behalf of debian-python -- 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/e1omtcx-yk...@ravel.debian.org
Bug#585257: mklibs-copy: Python string exceptions no more allowed in Python 2.6
Package: mklibs-copy Version: 0.1.30 Severity: minor User: debian-pyt...@lists.debian.org Usertags: python2.6 Hello, One of the changes brought by Python 2.6 is the removal of string exceptions, so they won't work in Python 2.6 (just a side note: they were also buggy before, since they were not guaranteed to work reliable even in <2.6); as an example: $ python2.5 -c "raise 'eggs'" -c:1: DeprecationWarning: raising a string exception is deprecated Traceback (most recent call last): File "", line 1, in eggs $ python2.6 -c "raise 'eggs'" Traceback (most recent call last): File "", line 1, in TypeError: exceptions must be old-style classes or derived from BaseException, not str Since 2.6 is the planned default version for the upcoming new Debian stable release, there are chances your package may be affected by this change. We are not sure your package is impacted, since the exception raise can be in a dead or very rare branch of the code, and so simply never being executed. We would like to leverage your package maintainer status and the relationship with upstream authors to inspect more deeply the issue and act accordingly (that includes: making this bug release critical, closing it as irrelevant, tagging it 'wontfix', or whatever is appropriate). Jakub Wilk made the discovery of the problem and kindly prepared a list [1] of all identified packages (downloaded on 2010-06-09) along with files & lines that triggered the pattern search. [1] http://people.debian.org/~morph/strexp/string-exceptions.lintian This mass-bug filing was announced at 2010-06-06 on [2] (see the thread and the references there). [2] http://lists.debian.org/debian-devel/2010/06/msg00097.html We do not consider the whole situation a stopper for the Python transition to 2.6, except (of course) for those single bugs where severity will be increased. Thanks in advance for your attention, Sandro on behalf of debian-python -- 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/e1omtcx-yp...@ravel.debian.org