Bug#1084224: isenkram-cli: isenkram installs raspi-firmware on non-raspi i686 hardware leading to an error
Am Freitag, dem 11.10.2024 um 00:14 +0200 schrieb Petter Reinholdtsen: > Here is a new and adjusted patch, making sure appstreamcli uses the C > locale and trying to handle the wildcard firmware entries at least > one > of your machines driver kernel module mention. I am not sure if this > last change is a useful approach, but thought it best to give it a > go. > > diff --git a/isenkram-autoinstall-firmware Sorry, I don't know, how to apply your patch correctly and there has been errors: # patch --dry-run /usr/sbin/isenkram-autoinstall-firmware ./isenkram.patch checking file /usr/sbin/isenkram-autoinstall-firmware Hunk #1 FAILED at 54. Hunk #2 FAILED at 70. Hunk #3 succeeded at 163 (offset 18 lines). 2 out of 3 hunks FAILED Anyway: I applied your changes by hand and I can confirm both problems are gone: # /usr/sbin/isenkram-autoinstall-firmware info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.bin requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.bin requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.txt requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.txt requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.txt requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.txt requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.clm_blob requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.clm_blob requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.clm_blob requested by kernel info: looking for firmware file brcm/brcmfmac43241b5-sdio.clm_blob requested by kernel info: looking for firmware file brcm/BCM4324B5.hcd requested by kernel info: looking for firmware file brcm/BCM4324B5.hcd requested by kernel info: some kernel driver requested extra firmware files: brcm/brcmfmac*-pcie.*.bin brcm/brcmfmac*-pcie.*.clm_blob brcm/brcmfmac*-pcie.*.txt brcm/brcmfmac*-pcie.txt brcm/brcmfmac*- sdio.*.bin brcm/brcmfmac*-sdio.*.txt brcm/brcmfmac43430b0-sdio.bin brcm/brcmfmac43439-sdio.bin brcm/brcmfmac43439-sdio.clm_blob brcm/brcmfmac43456-sdio.bin brcm/brcmfmac4359-pcie.bin brcm/brcmfmac4359-sdio.bin brcm/brcmfmac4364-pcie.bin brcm/brcmfmac4365b-pcie.bin brcm/brcmfmac4365c-pcie.bin brcm/brcmfmac43752-sdio.bin brcm/brcmfmac43752-sdio.clm_blob brcm/brcmfmac4378b1-pcie.bin brcm/brcmfmac4378b1-pcie.clm_blob brcm/brcmfmac89459-pcie.bin rtl_bt/rtl8723b_config.bin rtl_bt/rtl8723bs_config.bin rtl_bt/rtl8723cs_cg_config.bin rtl_bt/rtl8723cs_cg_fw.bin rtl_bt/rtl8723cs_vf_config.bin rtl_bt/rtl8723cs_vf_fw.bin rtl_bt/rtl8723ds_config.bin rtl_bt/rtl8723ds_fw.bin rtl_bt/rtl8761a_config.bin rtl_bt/rtl8821cs_config.bin rtl_bt/rtl8821cs_fw.bin rtl_bt/rtl8851bu_config.bin rtl_bt/rtl8851bu_fw.bin brcm/brcmfmac43241b5-sdio.LENOVO-20C3S0HJ00.bin brcm/brcmfmac43241b5- sdio.LENOVO-20C3S0HJ00.bin brcm/brcmfmac43241b5-sdio.LENOVO- 20C3S0HJ00.txt brcm/brcmfmac43241b5-sdio.LENOVO-20C3S0HJ00.txt brcm/brcmfmac43241b5-sdio.txt brcm/brcmfmac43241b5-sdio.txt brcm/brcmfmac43241b5-sdio.LENOVO-20C3S0HJ00.clm_blob brcm/brcmfmac43241b5-sdio.LENOVO-20C3S0HJ00.clm_blob brcm/brcmfmac43241b5-sdio.clm_blob brcm/brcmfmac43241b5-sdio.clm_blob brcm/BCM4324B5.hcd brcm/BCM4324B5.hcd info: locating packages with the requested firmware files info: determining whether enabling other components is required info: No new firmware package with requested firmware detected. So since your syntax 'diff --git /usr/sbin/isenkram-autoinstall- firmware.*' give an error on my system (unknown option »--git«), I did a diff for myself to show you that I followed your changes Some line numbers are different, but I think thats the difference between debian stable and git development: # diff /usr/sbin/isenkram-autoinstall-firmware.* 57c57 < appstreamcli what-provides firmware:runtime "$fwfile" | \ --- > LC_ALL=C appstreamcli what-provides firmware:runtime "$fwfile" | \ 62,63c62,63 < for fwfile in $(for module in $(awk '{print $1}' /proc/modules) ; do modinfo $module 2>/dev/null |awk '/^firmware:/ {print $2}'; done|sort - u); do < if [ ! -e /lib/firmware/$fwfile ] ; then --- > for fwfile in $(for module in $(awk '{print $1}' /proc/modules) ; do modinfo $module 2>/dev/null |awk '/^firmware:/ {print $2}'; done| LC_ALL=C sort -u); do > if [ ! -e "/lib/firmware/$fwfile" ] ; then 73c73 < if [ ! -e /lib/firmware/$fwfile ] ; then --- > if [ ! -e "/lib/firmware/$fwfile" ] ; then 166c166 < binpkginfos=$(echo "$binpkginfos" | tr ' ' '\n' | sort -u | xargs) --- > binpkginfos=$(echo "$binpkginfos" | tr ' ' '\n' | LC_ALL=C sort -u | xargs) Thank you, Christian
Bug#1084224: isenkram-cli: isenkram installs raspi-firmware on non-raspi i686 hardware leading to an error
Am Dienstag, dem 08.10.2024 um 23:48 +0200 schrieb Petter Reinholdtsen: > > I believe part of the locale related problem is caused by wildcard > paths in some kernel module, and that the following patch should get > rid of that particular problem: > ... > Perhaps you can test it and see if the 'unexpected operator' message > go away, and the script behave the same for both LANG=C and > LANG=de_DE.UTF-8? Thank you, that was a good starting point. 1. I confirm that the 'unexpected operator' message went away, both for LANG=C and LANG=de_DE.UTF-8. 2. The different behaviour for different LANG's is unchanged. 3. I did some investigation and found that: a) for LANG=de_DE.UTF-8: fwfile: brcm/brcmfmac43241b5-sdio.clm_blob matches binpkginfo: say: [none] and b) for LANG=C: fwfile: brcm/brcmfmac43241b5-sdio.clm_blob matches binpkginfo: firmware-realtek firmware-misc-nonfree firmware-netxen firmware-samsung firmware-bnx2x firmware-siano firmware-amd-graphics firmware-ivtv firmware-bnx2 firmware-netronome firmware-libertas firmware-linux-free firmware-ti-connectivity firmware-brcm80211 firmware-intel-sound firmware-qlogic firmware-qcom-soc firmware-cavium firmware-atheros firmware-myricom firmware-iwlwifi firmware-ipw2x00 firmware-ath9k-htc So the thing is: appstreamcli has differnt outputs depending on LANG, and while you look for lines with the word '/Package:/' with german LANG the same line starts with the word "Paket". I still was not able to figure out, why isenkramcli 'wants' to install raspi-firmware and what happens with a second call of isenkram- autoinstall-firmware, after raspi-firmware is installed successfully. 4. But I just added a LANG=C to appstreamlookup() and now it works fine. appstreamlookup() { fwfile="$1" LANG=C appstreamcli what-provides firmware:runtime "$fwfile" | \ awk '/Package:/ { print $2}' } Thank you for your hint Christian Meyer
Bug#1084224: isenkram-cli: isenkram installs raspi-firmware on non-raspi i686 hardwareleading to an error
Package: isenkram-cli Version: 0.51 Severity: normal X-Debbugs-Cc: c2h...@web.de Dear Maintainer, I used to run isenkram-autoinstall-firmware without any worries. On my Lenovo ThinkPad 10 tablet (with Intel Atom processor) this installs raspi-firmware. This is unexpected. This fails with 'raspi-firmware: missing /boot/firmware, did you forget to mount it?' even building a new initrd fails (with the same error) Of course you could say: it's a bug in raspi-firmware (perhaps it is), but for me it's a problem with isenkram-cli, too. To be honest, I never had agreed to install raspi-firmware, as my device isn't a raspi and I don't see, where isenkram 'believes' that I run a raspi. This is my output of: # isenkram-lookup beignet-opencl-icd bluez firmware-brcm80211 firmware-misc-nonfree gkrellm-thinkbat hdapsd pidgin-blinklight thinkfan tlp tp-smapi-dkms tpb The solution was pretty easy (apt purge raspi-firmware), but this doesn't solves the real problem. What would be the correct firmware for my device? How to automatically install the correct firmware (with a script, e.g. used in FAI)? Thank you for your attention Christian Meyer -- System Information: Debian Release: 12.7 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'proposed-updates'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 6.1.0-26-686 (SMP w/4 CPU threads; PREEMPT) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages isenkram-cli depends on: ii appstream 0.16.1-2 ii curl 7.88.1-10+deb12u7 ii debconf [debconf-2.0] 1.5.82 ii gir1.2-appstream-1.0 0.16.1-2 ii lsb-release12.0-1 ii python33.11.2-1+b1 ii python3-apt2.6.0 ii python3-gi 3.42.2-3+b1 ii usb.ids2024.07.04-0+deb12u1 isenkram-cli recommends no packages. isenkram-cli suggests no packages. -- debconf information: * isenkram/install_hw_packages: raspi-firmware
Bug#986749: apt-cacher-ng: acng still stops working with APOLL ADD failing and Bad file descriptor
Am Montag, dem 12.04.2021 um 21:13 +0200 schrieb Eduard Bloch: > Hallo, > * Christian Meyer [Sun, Apr 11 2021, 01:26:01PM]: > > Package: apt-cacher-ng > > Version: 3.6.3-1 > > Severity: important > > X-Debbugs-Cc: c2h...@web.de > > What you describe here does, all in one, not make much sense. Too > many symptoms coming together which are not adding up. Are you sure > that there is no bad memory or system instability involved? Until now I have no hint to that direction, but I will test memory and / or replace the machine. > Please send the output of > journalctl -b0 -u apt-cacher-ng For today (and cron driven restarts on errors every 3 minutes) it is: Apr 13 07:57:37 121-My apt-cacher-ng[202463]: [warn] Epoll ADD(1) on fd 13 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor Apr 13 08:00:02 121-My systemd[1]: Stopping Apt-Cacher NG software download proxy... Apr 13 08:00:02 121-My systemd[1]: apt-cacher-ng.service: Succeeded. Apr 13 08:00:02 121-My systemd[1]: Stopped Apt-Cacher NG software download proxy. Apr 13 08:00:02 121-My systemd[1]: apt-cacher-ng.service: Consumed 55.182s CPU time. Apr 13 08:00:02 121-My systemd[1]: Starting Apt-Cacher NG software download proxy... Apr 13 08:00:02 121-My systemd[1]: Started Apt-Cacher NG software download proxy. Apr 13 08:00:40 121-My apt-cacher-ng[389015]: [warn] Epoll ADD(1) on fd 13 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor Apr 13 08:03:02 121-My systemd[1]: Stopping Apt-Cacher NG software download proxy... Apr 13 08:03:02 121-My systemd[1]: apt-cacher-ng.service: Succeeded. Apr 13 08:03:02 121-My systemd[1]: Stopped Apt-Cacher NG software download proxy. Apr 13 08:03:02 121-My systemd[1]: apt-cacher-ng.service: Consumed 2.402s CPU time. Apr 13 08:03:02 121-My systemd[1]: Starting Apt-Cacher NG software download proxy... Apr 13 08:03:02 121-My systemd[1]: Started Apt-Cacher NG software download proxy. Apr 13 10:42:12 121-My apt-cacher-ng[391899]: [warn] Epoll ADD(1) on fd 13 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor Apr 13 10:43:25 121-My apt-cacher-ng[391899]: [warn] Epoll ADD(1) on fd 13 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor Apr 13 10:45:02 121-My systemd[1]: Stopping Apt-Cacher NG software download proxy... Apr 13 10:45:02 121-My systemd[1]: apt-cacher-ng.service: Succeeded. Apr 13 10:45:02 121-My systemd[1]: Stopped Apt-Cacher NG software download proxy. Apr 13 10:45:02 121-My systemd[1]: apt-cacher-ng.service: Consumed 56.112s CPU time. Apr 13 10:45:02 121-My systemd[1]: Starting Apt-Cacher NG software download proxy... Apr 13 10:45:02 121-My systemd[1]: Started Apt-Cacher NG software download proxy. Apr 13 11:36:26 121-My apt-cacher-ng[414217]: [warn] Epoll ADD(1) on fd 13 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor Apr 13 11:39:02 121-My systemd[1]: Stopping Apt-Cacher NG software download proxy... Apr 13 11:39:02 121-My systemd[1]: apt-cacher-ng.service: Succeeded. Apr 13 11:39:02 121-My systemd[1]: Stopped Apt-Cacher NG software download proxy. Apr 13 11:39:02 121-My systemd[1]: apt-cacher-ng.service: Consumed 2min 47.837s CPU time. Apr 13 11:39:02 121-My systemd[1]: Starting Apt-Cacher NG software download proxy... Apr 13 11:39:02 121-My systemd[1]: Started Apt-Cacher NG software download proxy. > and also please set debug=7 in acng.conf or similar conf file. I did so an now I'm waiting for new errors. > If that's a crash, please install systemd-coredump service and we can > debug the corefiles later. > Oh, that's probably our "nice" apt hiding the actual error string and > showing this dummy instead. It should match some error in the error > log, > though. > > This doesn't make sense. ACNG does not render this message string > explicitly. > Is there some proxy server involved? Yes, there is an elderly squid upstream proxy: Proxy: http://user:pass@myProxy:8080 and I ReuseConnections: 0 These are tho only modifications of the config-file > > my workaround is to automatically restart the service by a cronjob > > (and after that /usr/lib/apt-cacher-ng/expire-caller.pl) when this > > line is seen. > > And now that is getting really odd. Do you have some kind of > application > firewall installed, like apparmor? I didn't install (or configure) it by hand, but obviously it is pulled in by $something in Bullseye: At least 'dpkg -i apparmor' says something like: ii apparmor2.13.6-10amd64user-space parser utility for AppArmor un apparmor-profiles-extra
Bug#986749: apt-cacher-ng: acng still stops working with APOLL ADD failing and Bad file descriptor
Package: apt-cacher-ng Version: 3.6.3-1 Severity: important X-Debbugs-Cc: c2h...@web.de Dear Maintainer, even after the recent acng updates I still see apt-cacher-ng (3.6.3-1 amd64) stop working. Apt throws a bunch of errors like: E: Fehlschlag beim Holen von http://deb.debian.org/debian/dists/bullseye/main/Contents-all Fehler beim Lesen vom Server: Verbindung wurde durch den Se rver auf der anderen Seite geschlossen. [IP: 127.0.0.1 3142] E: Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden ignoriert oder alte an ihrer Stelle benutzt. ... W: Das Depot »http://127.0.0.1:3142/deb.debian.org/debian bullseye Release« enthält keine Release-Datei. E: Fehlschlag beim Holen von http://127.0.0.1:3142/deb.debian.org/debian/dists/bullseye/main/binary-i386/Packages 503 Service Unavailable [IP: 127.0. 0.1 3142] E: Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden ignoriert oder alte an ihrer Stelle benutzt. E: Paket adduser kann nicht gefunden werden. E: Paket apt kann nicht gefunden werden. ... ... Get:99 http://deb.debian.org/debian bullseye/main amd64 krb5-user amd64 1.18.3-4 [151 kB] Get:100 http://deb.debian.org/debian bullseye/main amd64 ldap-utils amd64 2.4.57+dfsg-2 [206 kB] Get:101 http://deb.debian.org/debian bullseye/main amd64 linux-image-5.10.0-5-amd64 amd64 5.10.26-1 [53.4 MB] Err:101 http://deb.debian.org/debian bullseye/main amd64 linux-image-5.10.0-5-amd64 amd64 5.10.26-1 Undetermined Error [IP: 127.0.0.1 3142] Err:102 http://deb.debian.org/debian bullseye/main amd64 linux-image-amd64 amd64 5.10.26-1 Could not connect to 127.0.0.1:3142 (127.0.0.1). - connect (111: Connection refused) [IP: 127.0.0.1 3142] Err:103 http://deb.debian.org/debian bullseye/main amd64 whois amd64 5.5.8 Unable to connect to 127.0.0.1:3142: [IP: 127.0.0.1 3142] Since systemctl often tells me something about "Epoll ADD" failing: # systemctl status apt-cacher-ng.service apt-cacher-ng[646]: [warn] Epoll ADD(1) on fd 14 failed. Old events were 0; read change was 1 (add); write change was 0 (none); close change was 0 (none): Bad file descriptor my workaround is to automatically restart the service by a cronjob (and after that /usr/lib/apt-cacher-ng/expire-caller.pl) when this line is seen. More information: Yes, my internet connection is very slow (around 8000 kbit/s) and that's my reason to run acng). # less /var/log/apt-cacher-ng/apt-cacher.err.1 Beside of tons of "Bad file descriptor" messages: Fri Apr 9 11:13:05 2021|debrep/pool/main/f/ffmpeg/libavutil56_4.3.2-0+deb11u1_amd64.deb storage error [HTTP/1.1 503 Bad file descriptor], last errno: Bad file descriptor Fri Apr 9 11:13:06 2021|debrep/pool/main/c/codec2/libcodec2-0.9_0.9.2-4_amd64.deb storage error [HTTP/1.1 503 Bad file descriptor], last errno: Bad file descriptor Fri Apr 9 11:13:17 2021|debrep/pool/main/p/pulseaudio/libpulsedsp_14.2-2_amd64.deb storage error [HTTP/1.1 503 Bad file descriptor], last errno: Bad file descriptor I only see a few different ones: Fri Apr 9 10:57:49 2021|Failed to move stale item debrep/dists/bullseye/main/i18n/Translation-de.bz2 out of the way: No such file or directory Fri Apr 9 10:59:29 2021|Failed to move stale item debrep/dists/bullseye/main/i18n/Translation-en.bz2 out of the way: No such file or directory Fri Apr 9 11:05:10 2021|debrep/pool/main/f/fonts-liberation/fonts-liberation_1.07.4-11_all.deb storage error [HTTP/1.1 503 Broken pipe], last errno: Broken pipe Fri Apr 9 11:06:56 2021|debrep/pool/main/l/lm-sensors/libsensors5_3.6.0-7_i386.deb storage error [HTTP/1.1 503 Connection reset by peer], last errno: Connection reset by peer Fri Apr 9 11:12:51 2021|debrep/pool/main/libr/libreoffice/libreoffice-base-drivers_7.0.4-3_amd64.deb storage error [HTTP/1.1 503 Broken pipe], last errno: Broken pipe # journalctl only shows something like: Apr 03 00:34:03 121-My apt-cacher-ng[2900630]: [warn] fcntl(15, F_SETFL): Bad file descriptor ... Apr 09 11:12:44 121-My apt-cacher-ng[2900630]: [warn] Epoll ADD(1) on fd 75 failed. Old events were 0; read change was 1 (add); write change was 0 (n> Apr 09 11:12:53 121-My apt-cacher-ng[2900630]: [warn] Epoll ADD(1) on fd 75 failed. Old events were 0; read change was 1 (add); write change was 0 (n> Apr 09 11:12:53 121-My apt-cacher-ng[2900630]: [warn] Epoll ADD(1) on fd 73 failed. Old events were 0; read change was 1 (add); write change was 0 Christian Meyer -- Package-specific info: -- System Information: Debian Release: bullseye/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.10.0-5-amd64 (SMP w/4 CPU threads) Kernel taint flags: TAINT_CRAP Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages apt-cacher-ng depends on: ii a
Bug#983183: Aw: Bug#983183: Acknowledgement (libpam-script: Wrong path for pam_script.so)
Dear Martijn, as I saw at TDO libpam-script is now marked for autoremoval. This is the last thing I intended and the proper solution seems obvious to me. Is there anything I can do to keep libpam-script in Debian 11? Thanks a lot Christian Meyer
Bug#983183: libpam-script: Wrong path for pam_script.so
Package: libpam-script Version: 1.1.9-4+b1 Severity: grave Tags: patch Justification: renders package unusable X-Debbugs-Cc: c2h...@web.de Dear Maintainer, after reinstalling my (FAI-driven) installation with bullseye (using stretch before and ignoring buster), I found that pam-script doesn't work anymore. /var/log/auth.log claims that: PAM unable to dlopen(pam_script.so): /lib/x86_64-linux-gnu/security/pam_script.so: Couldn't open Shared-Object-file: File or directory not found PAM adding faulty module: pam_script.so Your package contains the file, but it lives in a wrong directory (and for me there is no other file in there): /lib/security/pam_script.so all other pam_*.so files live in /lib/x86_64-linux-gnu/security/ and a simple ln -s /lib/security/pam_script.so /lib/x86_64-linux-gnu/security/pam_script.so made pam_script work again. I'm not knowing the details of PAM and pam_script, but I think simply moving the directory should be the right solution. Please fix it in the remaining bullseye-freeze. Thank you Christian Meyer -- System Information: Debian Release: bullseye/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.10.0-3-amd64 (SMP w/4 CPU threads) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages libpam-script depends on: ii libc6 2.31-9 ii libpam0g 1.4.0-4 libpam-script recommends no packages. libpam-script suggests no packages. -- no debconf information
Bug#926693: fai-cd not bootable
Source: fai Severity: normal Dear Maintainer, fai-cd creates bootable iso-images that don't boot on all (possibly older?) computers. The problem is in fai 5.3.6 (stretch) and 5.8.4 (buster). The solution is already described in fai-cd's man-page, make the pen-drive's first partition "bootable": # parted /dev/sdb set 1 boot on So please include this fix in the code of fai-cd as well and make the iso-image "bootable" - before writing to a pendrive: # parted /path/to/fai.iso set 1 boot on I can confirm the solution works on my Lenovo L530. Without the flag set my lapton does not boot at all, when I change the same ISO-image before dd-ing it to a pendrive then the fai-cd starts up as expected. So I can confirm making the image bootable fixes the issue. On my (customized) fai-server 'parted' is not installed by default, so you might want to add a dependency on 'parted' (or modify the image with a different command). Christian Meyer -- System Information: Debian Release: 9.8 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-8-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
Bug#909821: e2guardian: Minor error messages during installation concerning homedir
Package: e2guardian Severity: normal Dear Maintainer, There are some minor error messages concerning e2guardians homedir: /var/log/e2guardian. I first noticed the error messages installing my own stretch backport (5.2.0), but is in your stretch backport (5.1.1), too. So I believe it's still in testing / sid. Here is the relevant output of # LANG=C apt install -t stretch-backports e2guardian Setting up e2guardian (5.1.1-1~bpo9+1) ... Warning: The home dir /var/log/e2guardian you specified already exists. Adding system user `e2guardian' (UID 123) ... Adding new group `e2guardian' (GID 130) ... Adding new user `e2guardian' (UID 123) with group `e2guardian' ... The home directory `/var/log/e2guardian' already exists. Not copying from `/etc/skel'. adduser: Warning: The home directory `/var/log/e2guardian' does not belong to the user you are currently creating. Created symlink /etc/systemd/system/multi-user.target.wants/e2guardian.service -> /lib/systemd/system/e2guardian.service. Christian -- System Information: Debian Release: 9.5 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-8-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages e2guardian depends on: ii adduser 3.115 pn clamav ii init-system-helpers 1.48 ii libc62.24-11+deb9u3 ii libgcc1 1:6.3.0-18+deb9u1 ii libpcre3 2:8.39-3 ii libssl1.11.1.0f-3+deb9u2 ii libstdc++6 6.3.0-18+deb9u1 ii perl 5.24.1-3+deb9u4 ii zlib1g 1:1.2.8.dfsg-5 e2guardian recommends no packages. Versions of packages e2guardian suggests: pn clamav-freshclam pn squid
Bug#896125: squid: Squid 4: /etc/default/squid KRB5_KTNAME not permanently set
Yes it's systemd. Thanks for explanation. I thought about modifying the .service file, too, but IMO it's an 'ugly hack', editing squid.conf is more beautiful. As you ask for ideas to warn other users: I took a look in the changelog and found systemd to be supported in squid 4 and I also would have looked at /usr/share/doc/squid/README. Perhaps something like apt-listchanges would be nice, but for a CLI based proxy server I'm not really shure. For buster it's a good idea to say some words in the release notes. Thank you, Christian
Bug#896125: squid: Squid 4: /etc/default/squid KRB5_KTNAME not permanently set
Package: squid Version: 4.0.23-1~exp8 Severity: normal Dear Maintainer, I don't know if it is a bug, at least it is 'unexpected behaviour'. I'm playing with squid 4.0.23-1~exp8 from experimental and trying to authenticate with kerberos. It seems that /etc/default/squid is not correctly processed. Following various howto's I created /etc/default/squid with: KRB5_KTNAME=/etc/squid/PROXY.keytab export KRB5_KTNAME At first it worked as expected, but a couple of hours (and a squid reload/restart) later, I see errors about using the default keytab (and not the one specified in /etc/default/squid). negotiate_kerberos_auth.cc(546): pid=21176 :2018/04/19 00:08:35| negotiate_kerberos_auth: INFO: Setting keytab to /etc/squid/PROXY.keytab negotiate_kerberos_auth.cc(570): pid=21176 :2018/04/19 00:08:35| negotiate_kerberos_auth: INFO: Changed keytab to MEMORY:negotiate_kerberos_auth_21176 ... negotiate_kerberos_auth.cc(546): pid=18468 :2018/04/19 04:31:47| negotiate_kerberos_auth: INFO: Setting keytab to FILE:/etc/krb5.keytab negotiate_kerberos_auth.cc(75): pid=18468 :2018/04/19 04:31:47| negotiate_kerberos_auth: ERROR: krb5_read_keytab failed: Permission denied 2018/04/19 04:31:47| negotiate_kerberos_auth: ERROR: krb5_read_keytab: Permission denied negotiate_kerberos_auth.cc(556): pid=18468 :2018/04/19 04:31:47| negotiate_kerberos_auth: ERROR: Reading keytab FILE:/etc/krb5.keytab into list failed I tried to: systemctl restart squid, systemctl reload squid systemctl stop squid; systemctl start squid same with KRB5_KTNAME=FILE:/etc/squid/PROXY.keytab but nothing of this was able to bring back the correct keytab. Of course a '-k /etc/squid/PROXY.keytab' added to 'negotiate_kerberos_auth' in squid.conf fixes the situation, but I would expect squid to respect /etc/default/squid. Thanks a lot, Christian -- System Information: Debian Release: 9.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-6-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages squid depends on: ii adduser 3.115 ii libc62.24-11+deb9u3 ii libcap2 1:2.25-1 ii libcomerr2 1.43.4-2 ii libdb5.3 5.3.28-12+deb9u1 pn libdbi-perl pn libecap3 ii libexpat12.2.0-2+deb9u1 ii libgcc1 1:6.3.0-18+deb9u1 ii libgssapi-krb5-2 1.15-1+deb9u1 ii libkrb5-31.15-1+deb9u1 ii libldap-2.4-22.4.44+dfsg-5+deb9u1 ii libltdl7 2.4.6-2 ii libnetfilter-conntrack3 1.0.6-2 ii libnettle6 3.3-1+b2 ii libpam0g 1.1.8-3.6 ii libsasl2-2 2.1.27~101-g0780600+dfsg-3 ii libstdc++6 6.3.0-18+deb9u1 ii libxml2 2.9.4+dfsg1-2.2+deb9u2 ii logrotate3.11.0-0.1 ii lsb-base 9.20161125 ii netbase 5.4 pn squid-common Versions of packages squid recommends: ii libcap2-bin 1:2.25-1 Versions of packages squid suggests: pn resolvconf pn smbclient pn squid-cgi pn squid-purge pn squidclient pn ufw pn winbindd
Bug#896120: squid: Squid 4: Please enable acl proxy_auth -i again
Package: squid Version: 4.0.23-1~exp8 Severity: normal Dear Maintainer, in squid3 I used acl AllowedUsers proxy_auth -i alice bob to handle ActiveDirectory usernames like 'AliCe'. In squid 4 I get the following error: FATAL: bad configuration: unsupported ACL option: -i BTW: acl AllowedUsers proxy_auth_regex -i alice bob works well, but is slow with a big number of users. Is it possible to bring back 'proxy_auth -i' again? Thank you for your attention. Christian -- System Information: Debian Release: 9.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-6-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages squid depends on: ii adduser 3.115 ii libc62.24-11+deb9u3 ii libcap2 1:2.25-1 ii libcomerr2 1.43.4-2 ii libdb5.3 5.3.28-12+deb9u1 pn libdbi-perl pn libecap3 ii libexpat12.2.0-2+deb9u1 ii libgcc1 1:6.3.0-18+deb9u1 ii libgssapi-krb5-2 1.15-1+deb9u1 ii libkrb5-31.15-1+deb9u1 ii libldap-2.4-22.4.44+dfsg-5+deb9u1 ii libltdl7 2.4.6-2 ii libnetfilter-conntrack3 1.0.6-2 ii libnettle6 3.3-1+b2 ii libpam0g 1.1.8-3.6 ii libsasl2-2 2.1.27~101-g0780600+dfsg-3 ii libstdc++6 6.3.0-18+deb9u1 ii libxml2 2.9.4+dfsg1-2.2+deb9u2 ii logrotate3.11.0-0.1 ii lsb-base 9.20161125 ii netbase 5.4 pn squid-common Versions of packages squid recommends: ii libcap2-bin 1:2.25-1 Versions of packages squid suggests: pn resolvconf pn smbclient pn squid-cgi pn squid-purge pn squidclient pn ufw pn winbindd
Bug#775456: Openboard / Sancore Update
Hello there, is there any update in including Openboard or Sancore in Debian? I saw this more than two year old ITP (#775456) and tried Miriams Debian packages from http://www.miriamruiz.es/debian/sankore/ but I failed because of the dependency to libssl1.0. https://anonscm.debian.org/gitweb/?p=debian-edu/pkg-team/sankore.git does not seem to be active any more. Honestly I would like to see it in Debian but I can't do much for it. Bu t if you need testing or a german translater: here I am. Is there any update on this project or is it dead? Christian
Bug#801990: Bug is fixed
Hello there, I was bitten by this bug, too. Since stretch was released (or +/- some days) fresh installs has no longer this bug. But elderly installs (some days older) continued to have this bug, even updating pre-stable stretch didn't solve it. For me it was easiest to reinstall my computers (with FAI, not d-i) instead of lookig for the package that caused the problems. So I think that this bug is gone, too. Christian
Bug#862580: Bug #862580: Winbind crashes on ssh login of a domain user.
Hello Louis, its now some time after your last reply, I had some trouble with my network, set up all clients with fresh stretch and fixed some other things. >>> 1) $ cat /etc/hosts 127.0.0.1 localhost >>>172.16.0.209 sambawb.work.company sambawb I added this line. > Lock the ip's by mac adres in the dhcp pool. Yes, it's locked. >> Jun 10 23:23:22 COMPUTERXY pam-script[9459]: >> can not stat /usr/share/libpam-script/pam_script_acct > Ok, for this, you could test also without that script > since it errors also I removed pam-script and since then login with domain users seems to work more reliable. A deeper look showed me that earlier I told pam-script to 'service winbind restart' on every logon because of earlier problems. Obviously this (often) restart caused winbind to crash. On the other hand it explains, why 'just loggin in as a local user' 'fixed' winbind login. > Test also with, > getent passwd username > getent passwd "Group Name" > id username > wbinfo -u > wbinfo -g I wrote a cronjob for this and it's running after every failed login. I will report when it finds something interesting, till now it doesn't. > That starts here: ( DC's first ) > https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller#Provisioning_a_Samba_Active_Directory I'm using Windows 2008R2 DC, not Samba. >> When 'getent passwd' (or 'getent passwd domainuser') shows >> 'domainuser' >> then I can log in as domainuser, too. > ^so if you user has an UID you can login, if not not, > thats totaly correct. ... > You missing UID's on some users, or you have a mismatch in the > backend setups. So what's the cause for this? Okay, when winbind has crashed, it can not find the UID, but usually this should be winbinds job to find UIDs. For now I belive that winbind crashed because of often restarting, but cronjob is paying attention for anormalies now. Our company is on vacation right now, we are closed and I can not test in real situations. I will report back when I know more. So thank you for your help, perhaps someone could update debian wiki https://wiki.debian.org/AuthenticatingLinuxWithActiveDirectory with your guide to help others, too. Thanks a lot, Christian
Bug#862580: Bug #862580: Winbind crashes on ssh login of a domain user.
Hello Louis, > 1) $ cat /etc/hosts >> 127.0.0.1localhost >You did setup with DHCP, so you remove 127.0.1.1 sambawb, is possible, >but better is. This is because https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member tells: "On debian related systems you wil see 127.0.1.1 hostname also in /etc/hosts remove it before you install samba." >172.16.0.209 sambawb.work.company sambawb I had it in /etc/hosts before and removed it following wiki.samba.org. I will put it back. > ( recommended turn of dhcp, use static ips for the servers ) I will think about it. But just to be clear: what exactly do you mean with 'server'? My debian machines are only 'domain members' and are not providing any shares or printers to the network. I think 'server' is samba terminology meaning that it is providing services e.g. to PAM on the local machine. Right? > 2) Setup and enable the username map. > username map = /etc/samba/samba_usermapping > ( needs content : !root = WORK\Administrator WORK\administrator ) It's changed. > # Now here its interresting, this tell me something. >> Jun 07 21:33:18 sambawb sshd[502]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=172.16.0.1 user=domainuser >> ^^ Guessing, also correctly rejected, if you did not give root a password at install or your sshd_config has : PermitRootLogin no (or without-password) > Most interresting part. >> Jun 07 21:33:18 sambawb sshd[502]: pam_winbind(sshd:auth): getting password (0x0388) >> Jun 07 21:33:18 sambawb sshd[502]: pam_winbind(sshd:auth): pam_get_item returned a password >> Jun 07 21:33:19 sambawb sshd[502]: pam_winbind(sshd:auth): request wbcLogonUser failed: WBC_ERR_AUTH_ERROR, PAM error: PAM_AUTH_ERR (7), NTSTATUS_LOGON_FAILURE, Error message was: Logon failure >> Jun 07 21:33:19 sambawb sshd[502]: pam_winbind(sshd:auth): user 'domainuser' denied access (incorrect password or invalid membership) >> Jun 07 21:33:20 sambawb sshd[502]: Failed password for invalid user domainuser from 172.16.0.1 port 54474 ssh2 > Are you are loggin in as user "root" (id=0) or as "Administrator" here? > Or you created a users and assigned id 0, in all cases, this is in my opinion wrong to do. No, that's not the case. I see 'uid=0' but my username is just an ordinary domain user. It's neither "root" nor "Administrator". The domain user isn't a domain admin, too - it's a restricted domain account. I have several domain accounts to test and whenever it fails I see 'uid=0', too. Doesn't matter what (unprivilged) account I use. I remove the homedir on logout and recreate it on logon with pam_mkhomedir. > I recommend not enabling root logins on ssh, but thats your choice. > You can not, never ever, assign user Administrator an uid, especialy user Adminsitrator. > Uid 0 = root and only root, now this is why you need the username mapping. Okay, I think that is the point: When it fails I see: Jun 10 22:21:50 COMPUTERXY sshd[3207]: Invalid user domainuser from 172.16.0.235 Jun 10 22:21:50 COMPUTERXY sshd[3207]: input_userauth_request: invalid user domainuser [preauth] Jun 10 22:21:52 COMPUTERXY sshd[3207]: pam_krb5(sshd:auth): authentication failure; logname=domainuser uid=0 euid=0 tty=ssh ruser= rhost=computer.work.company and on success it is (same machine, same user, just some time later, e.g. after a local user logged in): Jun 10 23:23:22 COMPUTERXY sshd[9459]: pam_krb5(sshd:auth): user domainuser authenticated as domainuser@WORK.COMPANY Jun 10 23:23:22 COMPUTERXY pam-script[9459]: can not stat /usr/share/libpam-script/pam_script_acct Jun 10 23:23:22 COMPUTERXY sshd[9459]: Accepted password for domainuser from 172.16.0.1 port 43841 ssh2 I will have a look at it with changed username mapping. > Now where did it go wrong. You have a few options to check. > First, check the time sync on the DC's and the member servers. > A common problem with login problems. Check this first. # net ads info -P LDAP server: 172.16.0.2 LDAP server name: ADDC.WORK.company Realm: WORK.COMPANY Bind Path: dc=WORK,dc=COMPANY LDAP port: 389 Server time: Sa, 10 Jun 2017 23:37:11 CEST KDC server: 172.16.0.2 Server time offset: 0 # grep server /etc/ntp.conf server 172.16.0.2 iburst # grep GSS /etc/ssh/sshd_config # GSSAPI options #GSSAPIAuthentication no #GSSAPICleanupCredentials yes I will change it to: GSSAPIAuthentication yes GSSAPICleanupCredentials yes > And if you use groups member checks in sshd_conf, test if all these groups have GID. # grep -i group /etc/ssh/sshd_config >> I also noticed that in this cases 'wbinfo -u' or 'kinit >> domainuser' succeeds, but 'getent passwd' only shows local users. >> And yes, libpam-winbind and libnss-winbind are installed and >> nsswitch.conf has 'passwd: compat winbind' > Yes, this is confusing.. ;-) > wbinfo -u shows all you users. >getent passwd not, but `getent passwd username`, should show your user. No, it isn't. 'getent passwd' shows domainusers, too, but I
Bug#862580: Bug #862580: Winbind crashes on ssh login of a domain user.
Hello Louis and thank you for your very long tutorial. I tried to fix my 'wrong' smb.conf on my existing machine but that gave trouble. So I tried to setup a fresh stretch box step by step (had to change some things but I had a look at https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member, too) but after some days and a reboot I see the problem again, it just appears less often till now. CONFIG == > Setup jessie: I did stretch. > # Choose expert install, and at taskselect choose only ssh server. I did so and used dhcp: $ cat /etc/hosts 127.0.0.1 localhost # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters $ cat /etc/resolv.conf domain WORK.COMPANY search WORK.COMPANY nameserver 172.16.0.2 $ cat /etc/network/interfaces. source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug enp0s25 iface enp0s25 inet dhcp > # Check all these. $ hostname -s sambawb $ hostname -d WORK.COMPANY $ hostname -f sambawb.WORK.COMPANY $ hostname -i 172.16.0.209 > # install samba winbind and needed extras. > apt-get install samba smbclient samba-dsdb-modules samba-vfs-modules winbind libpam-winbind libnss-winbind krb5-user ntp bind9-host libpam-krb5 I did so. > When questions come, fill in : No questions came. > # AD DC ipnumbers at ntp questions added 'server 172.16.0.2 iburst' to /etc/ntp.conf (thats my AD DC ipnumber) > # krb5-user fill in your REALM in CAPS. ! CAPS YES ! $ cat /etc/krb5.conf [libdefaults] default_realm = WORK.COMPANY > # Change your /etc/nsswitch.conf $ cat /etc/nsswitch.conf passwd: compat winbind group: compat winbind shadow: compat gshadow:files hosts: files dns networks: files protocols: db files services: db files ethers: db files rpc:db files netgroup: nis # kinit administrator worked great. > Setup a "correct smb.conf" like this one. I don't know whats "correct" in your sense. I did: ## -- START AD MEMBER SMB.CONF - ## # /etc/samba/smb.conf [global] security = ads realm = WORK.COMPANY workgroup = WORK netbios name = sambawb preferred master = no domain master = no host msdfs = no # speeds up name resolving, (WINS), through dns. dns proxy = yes # local master = no # I left out bind interfaces #bind interfaces only = yes #interfaces = enp0s25 127.0.0.1 # I've added these, mustly same as the defaults, but this explains things for others # if they have auth problems. # mandatory will still require SMB2 clients to use signing server signing = mandatory # if ntlm and lanman auth are both disabled, then only NTLMv2 logins will be permited ntlm auth = no lanman auth = no # TODO: I skipped TLS keys! name resolve order = lmhosts host bcast idmap config * : backend = tdb idmap config * : range = 2000- # https://wiki.samba.org/index.php/Idmap_config_rid idmap config WORK : backend = rid idmap config WORK : range = 1-99 template homedir = /home/%D/%U template shell = /bin/bash winbind nss info = template # renew the kerberos ticket winbind refresh tickets = yes # Changed to not use winbind trusted domains only winbind trusted domains only = no # and to use default domain winbind use default domain = yes winbind enum groups = yes winbind enum users = yes # Enable offline logins, if needed. I don't want it. winbind offline logon = no # left out: winbind max domain connections = 10 kerberos method = secrets and keytab dedicated keytab file = /etc/krb5.keytab winbind expand groups = 4 # User Administrator workaround, without it you are unable to set # username map = /etc/samba/samba_usermapping # disable usershares creating, no log errors. usershare path = # Disable printing completely, no log errors. # Disable printing completely, no log errors. load printers = no printing = bsd printcap name = /dev/null disable spoolss = yes # For ACL support on member servers with shares (oblicated member setting) vfs objects = acl_xattr map acl inherit = Yes store dos attributes = Yes # Share Setting Globally veto files = /.bash_logout/.bash_profile/.bash_history/.bashrc/ hide unreadable = yes # From debian default config: # This tells Samba to use a separate log file for each machine # that connects log file = /var/log/samba/log.%m # Cap the size of the individual log files (in KiB). max log size = 1000 # Do something sensible when Samba crashes: mail the admin panic action = /usr/share/samba/panic-action %d ## -- END AD MEMBER SMB.CONF - ## > net ads join -S hostname-DC.work.company -k successfu
Bug#862580: Bug #862580: Winbind crashes on ssh login of a domain user.
Hello Louis and Mathieu, thanks for your fast reply. I'm using 2:4.5.8+dfsg amd64 from stretch and my Debian machines are members of a Windows 2008R2 DC Active Directory ("net ads join ...") with a single server and about 100 Windows 7 members and 40 Debian members. ("Server role: ROLE_DOMAIN_MEMBER") I followed the guide from https://wiki.debian.org/AuthenticatingLinuxWithActiveDirectory and changed some settings in smb.conf to fix certain issues after reading 'man smb.conf' (and various online sources from forums, howtos, tutorials, up to https://www.samba.org/samba/docs/* and https://www.samba.org/samba/docs/man/Samba-HOWTO-Collection ) Samba configuration worked acceptable for jessie: about 3 to 8 login issues a day with 40+ Computers and about 60-70 domain logins. Testparm dumps the following service definitions (without shares): # Global parameters [global] realm = WORK.COMPANY workgroup = WORK domain master = No local master = No os level = 0 preferred master = No client ldap sasl wrapping = seal log file = /var/log/samba/winbind-debug.log name resolve order = lmhosts host bcast password server = 172.16.0.1 * restrict anonymous = 2 security = ADS template shell = /bin/bash winbind enum groups = Yes winbind enum users = Yes winbind refresh tickets = Yes winbind use default domain = Yes idmap config * : range = 11000-2 idmap config * : backend = tdb There are some things missing in testparms output, that are in smb.conf: client use spnego = yes client ntlmv2 auth = yes encrypt passwords = yes log level = 2 winbind:3 template homedir = /home/%D/%U testparm says: "The setting 'security=ads' should NOT be combined with the 'password server' parameter." Since I had problems with WINS and name resolution (e.g. failing nmblookup) I decided to use 'password server' anyway and to remove WINS. I'm only using the tdb backend since SID/uid/gid mapping is not that important for me (I work with temporary user accounts and all user data is stored on the Windows 2008R2 DC in NTFS shares). Homedirs of domain users are created with pam_mkhomedir and deleted on logout. The range starts with 11000 because I had different backends some time ago, but that has been before I installed the current machine. I would like to test samba-4.5.9 or samba-4.6 (or at least the new testparm), but I didn't build samba from sources before. Thanks for your interest, Christian Meyer
Bug#862580: Winbind crashes on ssh login of a domain user.
22:54:50.760747, 3] ../source3/winbindd/winbindd_ads.c:1559(trusted_domains) [2017/05/18 22:54:50.765524, 3] ../source3/winbindd/winbindd_misc.c:161(winbindd_dual_list_trusted_domains) [2017/05/18 22:54:50.765544, 3] ../source3/winbindd/winbindd_ads.c:1559(trusted_domains) [2017/05/18 22:54:50.852678, 3] ../source3/winbindd/winbindd_ads.c:1495(sequence_number) [2017/05/18 22:54:50.924282, 3] ../source3/winbindd/winbindd_msrpc.c:253(msrpc_name_to_sid) [2017/05/18 22:54:50.924301, 3] ../source3/winbindd/winbindd_msrpc.c:267(msrpc_name_to_sid) When I can provide more information to track this down, please let me know. Christian Meyer
Bug#862580: pam: PAM 'user unknown' prevents domain login but allows local logins
Package: libpam0g Version: 1.1.8-3.5 Severity: important File: pam Dear Maintainer, I'm trying to login via ssh as a Windows AD user and auth fails. When doing a ssh-login as a local user it works fine. After login out the local user and trying as domain user again, it works fine, like expected. The bug mostly (only?) occurs after being idle (with no users logged in) for 'some time', e.g. every mornig (24/7 machine) or after being shut down for the weekend. I think this is a regression from jessie that should not go in final stretch. When I compare a successfull run with a failed attempt I find the output of 'service sshd status': Mai 14 17:04:27 fail-host pam-script[2375]: can not stat /usr/share/libpam-script/pam_script_auth Mai 14 17:04:27 fail-host sshd[2375]: pam_unix(sshd:auth): check pass; user unknown Mai 14 17:04:27 fail-host sshd[2375]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=172.16.0.1 Mai 14 17:04:27 fail-host sshd[2375]: pam_winbind(sshd:auth): getting password (0x0388) Mai 14 17:04:27 fail-host sshd[2375]: pam_winbind(sshd:auth): pam_get_item returned a password Mai 14 17:04:29 fail-host sshd[2375]: Failed password for invalid user domainuser from 172.16.0.1 port 41037 ssh2 Mai 14 17:04:46 fail-host sshd[2375]: Connection closed by 172.16.0.1 port 41037 [preauth] Mai 14 17:05:14 success-host pam-script[30067]: can not stat /usr/share/libpam-script/pam_script_auth Mai 14 17:05:14 success-host sshd[30067]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=172.16.0.1 user=domainuser Mai 14 17:05:14 success-host sshd[30067]: pam_winbind(sshd:auth): getting password (0x0388) Mai 14 17:05:14 success-host sshd[30067]: pam_winbind(sshd:auth): pam_get_item returned a password Mai 14 17:05:15 success-host sshd[30067]: pam_winbind(sshd:auth): user 'domainuser' granted access Of course pam_unix fails for domain users, but I see it complains about 'user unknown': When ever there is no parameter 'user=XYZ' on the pam_unix line then auth fails for domain users (with pam_winbind), too. What causes that 'user=' mostly appears and works but sometimes is missing? Local users do not fail. I've seen a similar bug with missing 'user=...' using gdm3 on jessie, too, but that happened on about 1-2 of 40 computers a day and vanished after some time with cron driven winbind restarts. The actual problem is reproducible on a machine without GUI every day. I know winbind crashes often (and that for it sucks heavily), so I first thought this could be a winbind issue. But when pam_winbind does not know the 'user=' parameter its clear it can not succeed (Of course it really must not crash (as it does) in this case) Since I'm not very good with PAM usage/debugging, please let me know what information I can provide to solve this bug. Thanks for your attention, Christian Meyer # cat /etc/pam.d/common-auth # # /etc/pam.d/common-auth - authentication settings common to all services # # This file is included from other service-specific PAM config files, # and should contain a list of the authentication modules that define # the central authentication scheme for use on the system # (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the # traditional Unix authentication mechanisms. # # As of pam 1.0.1-6, this file is managed by pam-auth-update by default. # To take advantage of this, it is recommended that you configure any # local modules either before or after the default block, and use # pam-auth-update to manage selection of other modules. See # pam-auth-update(8) for details. # here are the per-package modules (the "Primary" block) authsufficient pam_script.so auth[success=2 default=ignore] pam_unix.so nullok_secure try_first_pass auth[success=1 default=ignore] pam_winbind.so krb5_auth krb5_ccache_type=FILE cached_login try_first_pass # here's the fallback if no module succeeds authrequisite pam_deny.so # prime the stack with a positive return value if there isn't one already; # this avoids us returning an error just because nothing sets a success code # since the modules above will each just jump around authrequiredpam_permit.so # and here are more per-package modules (the "Additional" block) # end of pam-auth-update config -- System Information: Debian Release: 9.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages libpam0g:amd64 depends on: ii debconf [debconf-2.0] 1.5.6
Bug#857232: winbind: does not resolve DC's hostname, typo in winbind.service
Package: winbind Version: 2:4.2.14+dfsg-0+deb8u2 Severity: important Tags: patch Version: 2:4.5.4+dfsg amd64 Dear Maintainer, tracking down several (local?) issues with winbind I think, I found a typo in /lib/systemd/system/winbind.service After booting winbind is "active", but does not resolve DC's hostname (checking the NETLOGON for domain[XYZ] dc connection to "" failed). The line in /lib/systemd/system/winbind.service is: After=network.target nmb.service There is no service nmb, just nmbd So shouldn't it be: After=network.target nmbd.service After that I still have some problems, but at least winbind finds its DC. Christian Meyer
Bug#793290: libpam-script tries to invoke nonexistent scripts
Hello there, I found this bug on bugs.d.o and wondered about it, too. /var/log/auth.log is complaining about the missing scripts. >> can not stat /usr/share/libpam-script/pam_script_ses_open >> can not stat /usr/share/libpam-script/pam_script_auth >> can not stat /usr/share/libpam-script/pam_script_acct Journalctl is even worse, it prints out these "messages" with priority 3 ("ERROR") in the color red. There are no messages with lower priority on my system - even when something badly goes wrong. >> Can one somehow make it stop invoking those scripts? > I wonder how you got this package. If you don't use it I would recommend > to remove it. > If you do need to execute scripts it would be best to create the files or > symlink them like described in the README.Debian file. Truely: Do you ALWAYS use all possible scripts? I created the scripts I need (ses_open and ses_close), but don't need auth, acct and passwd. libpam-script/README.pam_script says: The scripts can be symbolic links or not exist at all as the case may be. and The scripts must return an exit value of 0 if successful with regards to its purpose; else return a non-zero exit value. The pam_script.so module does not interpret non-zero values as anything else except as the appropriate failure for the given module-type. With that in mind I don't want to mess around with "sufficient"-PAM-scripts that I don't need, instead I just want to take care of those things I really want. Of course an unneeded "sufficient" or "optional" script safely should fail with a non-zero exit-code, but for that you must have a smell of how PAM works and it's not friendly for newbies. IMO a high priority "debug (7)" message or even "info (6)" would be helpfull in case you really "forgot" creating a symlink, but for shure it's no "error" (priority 3) if an unneeded file is missing. Christian
Bug#836635: libpam-mount: please drop the build dependency on hardening-wrapper
Hello there, since the build dep on hardening-wrapper isn't neccessary for pam_mount, I'm wondering why #836635 is "serious" and marked for autoremoval. BTW: pam_mount 1.16 has just been released to "support building with OpenSSL 1.1.0 and test libressl 2.4.2", which could be good for the auto-openssl transition (#828404). Since pam_mount 1.15 it supports the helper= option so that various debian bugs for pam_mount, even crypto or unmounting related bugs, should be resolved. So by updating to the latest upstream version and removing the build dep pam_mount should be able to stay in Debian. Christian Meyer
Bug#826897: fai: Please avoid "fcopy: nonexisting directory error" for "default" files
Source: fai Severity: normal Hello Thomas, I'm using FAI-server from Debian stable and basically created my very own FAI_CONFIG. fai.log shows various "fcopy: Nonexisting directory /var/lib/fai/config/files/etc/..." errors. See: http://fai-project.org/screenshots/fai.txt The mentioned files (resolv.conf, hosts, apt/preferences) are never fcopied by me or my configspace, but I take care about them with ainsl. Since I'm analyzing fai-logs with faiwatch (http://wiki.fai-project.org/wiki/Faiwatch) the error messes up the output. Of course I could filter out these lines but I rather think these error messages should not appear since it's no error: I don't want those files to be fcopied. I found that /usr/lib/fai/subroutines wants to copy these files with "fcopy -BMv". So: Isn't it possible to test if that file(s) exist before copying them? (I don't know: what about "fcopy -i"?) -- System Information: Debian Release: 8.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: systemd (via /run/systemd/system)
Bug#697765: dpkg-reconfigure -fnoninteractive locales fails
Dear maintainers, I badly got bitten by this bug, too, while trying to (automatically) install Debian Jessie (stable) with FAI. When installing locales and then reconfiguring it with # dpkg-reconfigure locales it works as expected using dialog input method. Trying to reconfigure locales noninteractively, it fails: # echo "set locales/locales_to_be_generated de_DE.UTF-8 UTF-8" | chroot $NFSROOT debconf-communicate perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "de_DE.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory 0 value set # echo "set locales/default_environment_locale de_DE.UTF-8" | chroot $NFSROOT debconf-communicate perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "de_DE.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory 0 value set # chroot $NFSROOT dpkg-reconfigure -fnoninteractive locales perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "de_DE.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory Workaround (thanks to Thomas Lange from FAI): Don't install locales with all the other packages but seperately (e. g. with a script). Configure locales before installation. Do not reconfigure them (noninteractively). https://lists.uni-koeln.de/pipermail/linux-fai/2015-May/thread.html#10890 https://lists.uni-koeln.de/pipermail/linux-fai/2015-May/010922.html Thanks for attention. Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#663386: gdm3 ignores [greeter] Include/Exclude in file daemon.conf
Package: gdm3 Version: 3.14.1-7 Followup-For: Bug #663386 Hello all, since this bug is known since 3 jears and still appears in stable jessie I now found a workaround to suppress all users to be shown: Just uncomment the line disable-user-list=true in /usr/share/gdm/dconf/90-debian-settings After that only the username and password can be entered, but no sensible userlist is shown. BTW: #688741 is a duplicate of this bug and has been forwarded to upstream in 2012, too. No response till now: https://bugzilla.gnome.org/show_bug.cgi?id=684773 Christian -- System Information: Debian Release: 8.0 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#768232: fonts-sil-andika: conffiles not removed
Package: fonts-sil-andika Version: 1.004-2 Followup-For: Bug #768232 Hello there, I was bitten by this, too. I upgraded from wheezy and wondered about the error-messages, read your changelog, wondered again and removed /etc/fonts/conf.d/65-andika.conf manually. Bug was gone. Then I reinstalled the package again and the bug reappears, too. Obviously the file got reinstalled. Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#707843: Gbirthday demands python-evolution
Just as a reminder: Jessie now is stable and the problem still is there: I upgraded from wheezy and removed many obsolete packages, including python-evolution. Gbirthday complains (via popup message near GNOME3's notification area) that python-evolution is missing and demands to install it in order to use gbirthday with evolution. (This is what I did before with wheezy.) So IMO it's no longer a simple suggests vs. recommends question but it's a bug: The program asks something to be done that is not possible. Even more: for my usecase gbirhday has become useless and I will uninstall it. But there might be more (and better working) usecases. To avoid this problem you should entirely disable the selection of evolution as database-source. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#777215: Missleading error message in fai-cd
Am Freitag, den 06.02.2015, 13:45 +0100 schrieb Thomas Lange: > > On Fri, 6 Feb 2015 12:40:53 +0100, "Christian Meyer" said: > > > there is no /srv/fai/nfsroot/live/filesystem.dir/etc/fai/ directory > > > the cause of the problem was the missing package fai-nfsroot in > > /etc/fai/NFSROOT > a much better error message (less technical details but more help to > the user how to fix it) would be "Why did you removed fai-nfsroot from > /etc/fai/NFSROOT?" > I think I cannot consider all those cases in the error messages. In 99% > this error messages is caused by forgetting to build the > nfsroot. > You are the first one who did build the nfsroot, but it was > build incorrectly. Oh really? - this explains why I didn't find a solution online. > Sorry, I think I can't catch all thoses cases with > better error messages. Okay, thats right. I remember murphys law. ("It is impossible to make anything foolproof ...") I wonder why you test $NFSROOT/etc/fai and not $NFSROOT. Of course it makes sense: the NFSROOT isn't useful without fai-nfsroot. But the error message is about an not existing NFSROOT at all. My intention in filing this bug report was to help making FAI friendlier to newbies and misconfiguration. I thought of something like: [ -d "$NFSROOT" ] || die 10 "Please create NFSROOT by calling fai-make-nfsroot or fai-setup." [ -d "$NFSROOT/etc/fai" ] || die XY "Don't remove fai-nfsroot from /etc/fai/NFSROOT. You'll need it!" Okay: perhaps it makes more sense when fai-make-nfsroot (and not fai-cd) is testing $NFSROOT/etc/fai (along with other really important packages) - or (at least) comment these rip (really important packages ;) ) in /etc/fai/NFSROOT like you did with the architecture dependend kernel images: # you should not edit the lines below But I agree: If this is really rare and I am the first and only person with this particular problem - please feel free to simply close this bug. > I wonder why you removed the package fai-nfsroot from /etc/fai/NFSROOT? Short answer: I didn't remove it intentionally and I don't know why $NFSROOT/etc/fai wasn't present. Yes: I messed up the configuration before but I thought I had cleaned it up again. - Possibly not good enough. In fact fai-nfsroot package was in /etc/fai/NFSROOT and I only added it a second time in the file to fix it (don't looked for it before). I tried to reproduce the problem and track it down but didn't find the cause of why the NFSROOT is build (even without an error) but fai-nfsroot is not included. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#777215: Missleading error message in fai-cd
Package: fai-server Version: 4.3.1 Dear Maintainer, I'm a FAI newbie so understanding error messages is very important for me. I wanted to create a custom fai-cd and did: # fai-make-nfsroot -fl -> finishes without an error # fai-cd -M /fai-cd.iso ERROR: Please create NFSROOT by calling fai-make-nfsroot or fai-setup. Then I can re-run fai-make-nfsroot or fai-setup but the error from fai-cd is still the same. That's a bit wired: I do exactly what the error message tells me to do and this does not solve the problem. Changing the scripts errormessage to "$NFSROOT" showed me that there is no /srv/fai/nfsroot/live/filesystem.dir/etc/fai/ directory, while NFSROOT /srv/fai/nfsroot/live/filesystem.dir of course do exist. After thinking a while I found that the cause of the problem was the missing package fai-nfsroot in /etc/fai/NFSROOT So please change the error message to a more specific one (like: .../live/filesystem.dir/etc/fai/ is missing) or add a detailed alanysis (e.g with the error message: fai-nfsroot must be included in /etc/fai/nfsroot). Thank you Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#755943: nautilus: 'gksu nautilus' changes the whole desktop to a different user in special cases
Package: nautilus Version: 3.4.2-1+build1 Severity: important Hello there, I found a remarkable bug with nautilus (and letting it manage the desktop) in version 3.4.2 (stable). 1. Log in as a user (e.g. abc) that doesn't 'have file manager handle the desktop' (gnome-tweak-tool). 2. Now 'gksu nautilus' in a terminal window as a different user (e.g. xyz) that has the mentioned option enabled. You now see abc's desktop vanishing and xyz's desktop appear with all its files and directories(beside opening the intended nautilus window). Everything you do on the desktop is under xyz's name. 3. Close the intended nautilus window. You now may abort the waiting (not finished) gksu command and / or close the terminal window. Xyz's desktop keeps visible and functional. Everything you do within it is in xyz's name. Somehow it's a cool feature being 'logged in as two users' in the same UI. :) But since this obviousy is not intended it mostly is a security bug. :( Christian Meyer -- System Information: Debian Release: 7.6 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages nautilus depends on: ii desktop-file-utils 0.20-0.1 ii gsettings-desktop-schemas 3.4.2-3 ii gvfs 1.12.3-4 ii libatk1.0-02.4.0-2 ii libc6 2.13-38+deb7u3 ii libcairo-gobject2 1.12.2-3 ii libcairo2 1.12.2-3 ii libexempi3 2.2.0-1 ii libexif12 0.6.20-3 ii libgail-3-03.4.2-7 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-0 2.33.12+really2.32.4-5 ii libglib2.0-data2.33.12+really2.32.4-5 ii libgnome-desktop-3-2 3.4.2-1 ii libgtk-3-0 3.4.2-7 ii libnautilus-extension1a3.4.2-1+build1 ii libnotify4 0.7.5-1 ii libpango1.0-0 1.30.0-1 ii libselinux12.1.9-5 ii libtracker-sparql-0.14-0 0.14.1-3 ii libx11-6 2:1.5.0-1+deb7u1 ii libxml22.8.0+dfsg1-7+wheezy1 ii nautilus-data 3.4.2-1+build1 ii shared-mime-info 1.0-1+b1 Versions of packages nautilus recommends: ii brasero 3.4.1-4 ii eject2.1.5+deb1+cvs20081104-13 ii gnome-sushi 0.4.1-3 ii gvfs-backends1.12.3-4 ii librsvg2-common 2.36.1-2 Versions of packages nautilus suggests: ii eog3.4.2-1+build1 ii evince [pdf-viewer]3.4.0-3.1 ii mpg321 [mp3-decoder] 0.3.2-1.1 ii totem 3.0.1-8 ii tracker0.14.1-3 ii vlc [mp3-decoder] 1:2.0.6-dmo2 ii vlc-nox [mp3-decoder] 1:2.0.6-dmo2 ii xdg-user-dirs 0.14-1 ii xpdf [pdf-viewer] 3.03-10 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#733238: Xserver ignores xorg.conf
Hello there, I got bitten by this bug, too. I have a "Logitech Marble Mouse Trackball" and it worked fine with squeeze and wheezy. I created a xorg.conf and xorg seems to ignore it, especially the "EmulateWheelButton" which should be button 8 but is button 4: $ cat /etc/X11/xorg.conf Section "InputDevice" Identifier "Marble Mouse" Driver "mouse" Option "Protocol" "ExplorerPS/2" Option "Device" "/dev/input/mice" Option "Buttons" "9" # Option "Emulate3Buttons" "true" # Option "Emulate3Timeout" "50" Option "ChordMiddle" "True" Option "EmulateWheel" "True" Option "EmulateWheelButton" "8" Option "XAxisMapping" "6 7" Option "YAxisMapping" "4 5" EndSection $ cat /var/log/Xorg.0.log | grep Logitech [ 51.905] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/event1) [ 51.905] (**) Logitech USB Trackball: Applying InputClass "evdev pointer catchall" [ 51.905] (II) Using input driver 'evdev' for 'Logitech USB Trackball' [ 51.905] (**) Logitech USB Trackball: always reports core events [ 51.905] (**) evdev: Logitech USB Trackball: Device: "/dev/input/event1" [ 51.905] (--) evdev: Logitech USB Trackball: Vendor 0x46d Product 0xc408 [ 51.905] (--) evdev: Logitech USB Trackball: Found 9 mouse buttons [ 51.905] (--) evdev: Logitech USB Trackball: Found relative axes [ 51.905] (--) evdev: Logitech USB Trackball: Found x and y relative axes [ 51.905] (II) evdev: Logitech USB Trackball: Configuring as mouse [ 51.905] (**) evdev: Logitech USB Trackball: YAxisMapping: buttons 4 and 5 [ 51.905] (**) evdev: Logitech USB Trackball: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 51.905] (II) XINPUT: Adding extended input device "Logitech USB Trackball" (type: MOUSE, id 8) [ 51.905] (II) evdev: Logitech USB Trackball: initialized for relative axes. [ 51.905] (**) Logitech USB Trackball: (accel) keeping acceleration scheme 1 [ 51.905] (**) Logitech USB Trackball: (accel) acceleration profile 0 [ 51.905] (**) Logitech USB Trackball: (accel) acceleration factor: 2.000 [ 51.905] (**) Logitech USB Trackball: (accel) acceleration threshold: 4 [ 51.906] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/mouse0) There is no xorg error message: $ cat /var/log/Xorg.0.log | grep \(EE\) (WW) warning, (EE) error, (NI) not implemented, (??) unknown. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#660191: debian-installer: installer should recogise existing encrypted partitions
Hi there, I would like to see such a feature, too. There are two situations when it's usefull. Since I found a way dealing with it 1. Some time ago I killed my initrd during an update and had to repair my encrypted LVM system. D-I helped repairing it in rescue mode: - Booting D-I (Wheezy, testing around april 2012) in Rescue-Mode - IIRC D-I allowed to enter the passphrase for the encrypted LVM - choosed root-partition - opened tty2: - mount /boot - mkinitramfs -o /boot/initrd.img-rescue 3.2.0-2-amd64 - exit and reboot - during startup I had to change the initrd (grub). This could be repaired by updating grub in the running system. 2. I now would like to install jessie as a second OS. I want it to live in a seperate volume of my existing encrypted LVM, but D-I (from end October 2013) is not able to recognize it automatically. I found an older tutorial (german language) for a workaround at http://blog.stefan-betz.net/2009/1/6/debian-installer-mit-bereits-vorhandenem-verschluesseltem-lvm-verwenden/ It says: - boot D-I as usual - after setting up networking (in partitioing menu) go back to main menu - open tty2 (ALT+F2) and enter the following commands: depmod -a modprobe dm-mod modprobe dm-snapshot cryptsetup luksOpen /dev/sda2 sda2_crypt vgchange -a y ... But here is the point it doesn't work: cryptsetup: command not found. I tried to load the components via the d-i menu, but this doesn't work, too. Modules are loadable but I can't find crytpsetup itself. Of course there is a way to work around it, but my abilities comes to its limits and it seems to be less painfull using debootstrap. So: it would be (very) nice to have it officially supported in d-i. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#728500: apt-get fails: mkstemp (2: No such file or directory)
Am Samstag, den 02.11.2013, 01:11 +0100 schrieb David Kalnischkies: > On Sat, Nov 2, 2013 at 12:00 AM, Christian Meyer wrote: > > I debootstraped jessie in an stable LVM cryptsetup environment. > > Afterwards I did some configuation, chrooted in the new system and did an > > > > I understood the error this way: > > gpgv is installed and I found that mkstemp is not installed.(It is found in > > gnulib and not in coreutils like mktemp) > > That has nothing to do with a binary called mkstemp, it is referring to the > libc method mkstemp (man 3 mkstemp # if you have manpages-dev installed). > [Ignore the message about gpgv, that is just a follow-up error] > > The method is supposed to create and open a temporary file and based > on the error message from the method, it sounds like it can't open the > created temp file. > > I and many others do chroots quite often, so I wonder what is so special > about your setup, that it doesn't work for you as it does here. > Have you done anything extraordinary to /tmp in your chroot? > Are other applications acting strange as well? Thanks for your explanation. I'm not very familiar in setting up a new system vith debootstrap and chrooting in it. So obviously I did something wrong. Here is what I did exactly: /usr/sbin/debootstrap --arch amd64 jessie /testing ftp://ftp.de.debian.org/debian/ -> I: Base system installed successfully. mount -o bind /dev /testing/dev mount -o bind /dev/pts /testing/dev/pts mount -t sysfs sys /testing/sys mount -t proc proc /testing/proc cp /proc/mounts /testing/etc/mtab LANG=de chroot /testing /bin/bash configuring some files like hostname, fstab, resolv.conf, sources.list, ... mount -a apt-get update -> error I didn't test any other application since this is only a young and very minimal system, even without a kernel. a root password or any users. I wanted to extend it by installing some packages first. Now I tested /tmp in the chroot environment: I can 'touch' a file in it and 'rm' it afterwards. # ls -l / | grep tmp drwxrwxrwt 2 root root4096 Nov 2 07:51 tmp # ls -a /tmp . .. # mount | grep /tmp # I have no glue what could be extraordinary there. Please let me know when I did something wrong or if I can test something different. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#728500: apt-get fails: mkstemp (2: No such file or directory)
Package: apt Version: 0.9.7.9 Severity: important Tags: patch Dear Maintainer, this bug belongs to apt 0.9.12.1 which is the current testing version. I debootstraped jessie in an stable LVM cryptsetup environment. Afterwards I did some configuation, chrooted in the new system and did an # apt-get update Get:1 http://ftp.de.debian.org jessie InRelease [162 kB] 100% [1 InRelease gpgv 162 kB]Couldn't create tempfiles for splitting up /var/lib/apt/lists/partial/ftp.de.debian.org_debian_dists_jessie_InIgn http://ftp.de.debian.org jessie InRelease Get:2 http://ftp.de.debian.org jessie/main Sources [6600 kB] Get:3 http://ftp.de.debian.org jessie/non-free Sources [100 kB] Get:4 http://ftp.de.debian.org jessie/contrib Sources [51.3 kB] Get:5 http://ftp.de.debian.org jessie/main amd64 Packages [6257 kB] Get:6 http://ftp.de.debian.org jessie/non-free amd64 Packages [78.9 kB] Get:7 http://ftp.de.debian.org jessie/contrib amd64 Packages [45.9 kB] Get:8 http://ftp.de.debian.org jessie/contrib Translation-en [37.8 kB] Get:9 http://ftp.de.debian.org jessie/main Translation-en [4169 kB] Get:10 http://ftp.de.debian.org jessie/non-free Translation-en [69.8 kB] Fetched 17.6 MB in 41s (420 kB/s) Reading package lists... Error! W: GPG error: http://ftp.de.debian.org jessie InRelease: Could not execute 'gpgv' to verify signature (is gpgv installed?) E: Couldn't create temporary file to work with /var/lib/apt/lists/ftp.de.debian.org_debian_dists_jessie_Release - mkstemp (2: No such file or directory) E: The package lists or status file could not be parsed or opened. I understood the error this way: gpgv is installed and I found that mkstemp is not installed.(It is found in gnulib and not in coreutils like mktemp) Of course gnulib couldn't be istalled because of this bug. So I'm trapped. I downloaded it manually and tried to: dpkg --force depends --install gnulib_20130805+stable-1_all.deb but this didn't work, too. I hope a dependency on gnulib should solve the problem, or is there a different way to tell debootstrap that gnulib is needed? Thanks for your attention Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#703806: postgresql: failed to start: couldn't create TCP/IP Sockets
Hi Christoph Am Freitag, den 26.04.2013, 19:45 +0200 schrieb Christoph Berg: > Re: Christian Meyer 2013-04-19 <1366407520.13657.15.camel@Imperator> > > # host localhost > > ;; Warning: Message parser reports malformed message packet. > > localhost has address 127.0.0.1 > > Host localhost not found: 3(NXDOMAIN) > > Host localhost not found: 3(NXDOMAIN) > Could you try "options single-request" in /etc/resolv.conf to see if > that fixes the problem with "host localhost" and PostgreSQL? Thats a bit tricky since network-manager overwrites /etc/resolv.conf . I changed the file and did only a /etc/init.d/networking restart but the output of 'host localhost' is unchanged. > > > Does the problem go away if you change listen_addresses in the config? > Not sure if I read that correctly, did you mean that "Test 1" was > still done with "localhost", and "Test 2" was with 127.0.0.1 and the > problem was gone? No, I meant it that way: localhost -> problem occurs 127.0.0.1 -> problem occurs * -> problem is gone After your hint of missing localhost resolution and rethinking various times about it I now belive that this is the point. Perhaps network-manager (or something else ?) messed up with the configuration: * BOINC Manager is not able to connect to localhost, too (and it never was before). * Some time ago I configured cups and was able to connect to it via http://localhost:631/ but during examinating things here, I now can not connect to it any longer. Neither as localhost nor 127.0.0.1 nor the local network IPv4 adress. * 'ping localhost' resolves to 127.0.0.1 but has 100% Packet loss * 'ping6 localhost' returns 'unknown host' For me only three questions remain: 1. Why does your sloution work with listen_addresses = '*' ? 2. What caused the problem? 3. How to fix the localhost resolution? (But this shure is my problem, not yours ;-) ) Thank you, Christian # cat /etc/resolv.conf options single-request # Generated by NetworkManager domain Speedport_W_700V search Speedport_W_700V nameserver 192.168.2.1 # cat /etc/host.conf multi on # cat /etc/hosts 127.0.0.1 localhost 127.0.1.1 Imperator # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters signature.asc Description: This is a digitally signed message part
Bug#703806: postgresql: failed to start: couldn't create TCP/IP Sockets
Hi Christoph, Am Donnerstag, den 18.04.2013, 13:09 +0200 schrieb Christoph Berg: > > Re: Christian Meyer 2013-03-23 <20130323215007.30074.7076.reportbug@Imperator> > > The logfile says that IPv4 Socket couldn't be bound and asks wheather an > > other > > postmaster is running on port 5432: > > 2013-03-23 22:26:32 CET LOG: konnte IPv4-Socket nicht binden: Die > > angeforderte > > Adresse kann nicht zugewiesen werden > > > > # netstat -an | grep 5432 > > # > > Hi Christian, > > Thanks for the report. Is it still reproducible? Yes, it is. > What does "localhost" resolve to for you? What's the output of "getent > hosts localhost" and "host localhost"? # cat /etc/hosts | grep localhost 127.0.0.1 localhost ::1 ip6-localhost ip6-loopback # getent hosts localhost 127.0.0.1 localhost # host localhost ;; Warning: Message parser reports malformed message packet. localhost has address 127.0.0.1 Host localhost not found: 3(NXDOMAIN) Host localhost not found: 3(NXDOMAIN) Sorry, I have no glue what this warning means or how to fix it. # ping localhost PING localhost (127.0.0.1) 56(84) bytes of data. So localhost seems to resolve to 127.0.0.1 > Does the problem go away if you change listen_addresses in the config? I changed the file /etc/postgresql/9.1/main/postgresql.conf : before: #listen_addresses = 'localhost' # what IP address(es) to listen on; Test 1 (Problem still persists): listen_addresses = '127.0.0.1' Test 2 (Problem seems gone): listen_addresses = '*' Tried (et voilla): # /etc/init.d/postgresql restart [ ok ] Restarting PostgreSQL 9.1 database server: main. # Thanks for your hint. So I think it's not a problem of postgresql, but what went wrong and where? Anyway. Thank you. If I can anything else for you, just let me know. Christian signature.asc Description: This is a digitally signed message part
Bug#703806: postgresql: failed to start: couldn't create TCP/IP Sockets
Package: postgresql Version: 9.1+134wheezy3 Severity: normal Dear Maintainer, I installed postgresql but it exited with error code 1 in synaptic: Start-Date: 2013-03-23 21:34:46 Commandline: /usr/sbin/synaptic Install: postgresql-9.1:amd64 (9.1.8-1, automatic), postgis:amd64 (1.5.3-2), libproj0:amd64 (4.7.0-2, automatic), postgresql-9.1-postgis:amd64 (1.5.3-2), libgeos-c1:amd64 (3.3.3-1.1, automatic), postgresql-common:amd64 (134wheezy3, automatic), proj-data:amd64 (4.7.0-2, automatic), postgresql-client-9.1:amd64 (9.1.8-1, automatic), libgeos-3.3.3:amd64 (3.3.3-1.1, automatic), postgresql- client-common:amd64 (134wheezy3, automatic) Error: Sub-process /usr/bin/dpkg returned an error code (1) End-Date: 2013-03-23 21:35:10 I tried to start it manually but failed, too: # LANG=C /etc/init.d/postgresql start[] Starting PostgreSQL 9.1 database server: main[] The PostgreSQL server failed to start. Please check the log output: 2013-03-23 22:26:32 CET LOG: konnte IPv4-Socket nicht binden: Die angeforderte Adresse kann nicht zugewiesen werden 2013-03-23 22:26:32 CET TIPP: L?uft bereits ein anderer Postmaster auf Port 5432? Wenn nicht, warten Sie einige Sekunden und versuchen Sie erneut. 2013-03-23 22:26:32 CET WARNUNG: konnte Listen-Socket f?r >>localhost<< nicht erzeugen 201[FAIL23 22:26:32 CET FATAL: konnte keine TCP/IP-Sockets erstellen ... failed! failed! The logfile says that IPv4 Socket couldn't be bound and asks wheather an other postmaster is running on port 5432: 2013-03-23 22:26:32 CET LOG: konnte IPv4-Socket nicht binden: Die angeforderte Adresse kann nicht zugewiesen werden 2013-03-23 22:26:32 CET TIPP: L?uft bereits ein anderer Postmaster auf Port 5432? Wenn nicht, warten Sie einige Sekunden und versuchen Sie erneut. 2013-03-23 22:26:32 CET WARNUNG: konnte Listen-Socket f?r >>localhost<< nicht erzeugen 2013-03-23 22:26:32 CET FATAL: konnte keine TCP/IP-Sockets erstellen # netstat -an | grep 5432 # Thanks for looking into it Christian Meyer -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages postgresql depends on: ih postgresql-9.1 9.1.8-1 postgresql recommends no packages. postgresql suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#702823: libreoffice-calc: Calc crashes Gnome3 session when doing a detective trace
Package: libreoffice-calc Version: 1:3.5.4+dfsg-4 Severity: important Dear Maintainers, I did a "Tools - Detective - Trace Precedents" that leads to an immidiate crash of Gnome3 (ending at login from gdm3). To reproduce just pick a cell (e.g. B1) and insert "=MIN(A$1:A$1048576)". Then try to trace the precedents. Since traces on smaller arrays work fine it is obviously caused by the (too) huge number of precedents. I tried to attach a backtrace (http://wiki.debian.org/OpenOffice#debug) but the crash of gnome3 happens in gdb, too. Tried to (gdb) bt, but stack is empty. (I'm not familiar with doing a backtrace) BTW: please update http://wiki.debian.org/OpenOffice#debug $ gdb /usr/lib/openoffice/program/soffice.bin to $ gdb /usr/lib/libreoffice/program/soffice.bin Thanks Christian Meyer -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libreoffice-calc depends on: ii libc6 2.13-38 ii libgcc11:4.7.2-5 ii libreoffice-base-core 1:3.5.4+dfsg-4 ii libreoffice-core 1:3.5.4+dfsg-4 ii libstdc++6 4.7.2-5 ii lp-solve 5.5.0.13-7 ii uno-libs3 3.5.4+dfsg-4 ii ure3.5.4+dfsg-4 libreoffice-calc recommends no packages. libreoffice-calc suggests no packages. Versions of packages libreoffice-core depends on: ii fontconfig 2.9.0-7.1 ii fonts-opensymbol 2:102.2+LibO3.5.4+dfsg-4 ii libc62.13-38 ii libcairo21.12.2-3 ii libcmis-0.2-00.1.0-1+b1 ii libcurl3-gnutls 7.26.0-1+wheezy1 ii libdb5.1 5.1.29-5 ii libexpat12.1.0-1 ii libexttextcat0 3.2.0-2 ii libfontconfig1 2.9.0-7.1 ii libfreetype6 2.4.9-1.1 ii libgcc1 1:4.7.2-5 ii libglib2.0-0 2.33.12+really2.32.4-5 ii libgraphite2-2.0.0 1.1.3-1 ii libgstreamer-plugins-base0.10-0 0.10.36-1 ii libgstreamer0.10-0 0.10.36-1.1 ii libhunspell-1.3-01.3.2-4 ii libhyphen0 2.8.3-2 ii libice6 2:1.0.8-2 ii libicu48 4.8.1.1-10 ii libjpeg8 8d-1 ii libmythes-1.2-0 2:1.2.2-1 ii libneon27-gnutls 0.29.6-3 ii libnspr4 2:4.9.2-1 ii libnspr4-0d 2:4.9.2-1 ii libnss3 2:3.13.6-2 ii libnss3-1d 2:3.13.6-2 ii libpng12-0 1.2.49-1 ii librdf0 1.0.15-1+b1 ii libreoffice-common 1:3.5.4+dfsg-4 ii librsvg2-2 2.36.1-1 ii libsm6 2:1.2.1-2 ii libssl1.0.0 1.0.1e-1 ii libstdc++6 4.7.2-5 ii libx11-6 2:1.5.0-1 ii libxext6 2:1.3.1-2 ii libxinerama1 2:1.1.2-1 ii libxml2 2.8.0+dfsg1-7+nmu1 ii libxrandr2 2:1.3.2-2 ii libxrender1 1:0.9.7-1 ii libxslt1.1 1.1.26-14 ii uno-libs33.5.4+dfsg-4 ii ure 3.5.4+dfsg-4 ii zlib1g 1:1.2.7.dfsg-13 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#699080: nautilus-wipe: German translation for nautilus-wipe
Package: nautilus-wipe Version: 0.1.1-3 Severity: normal Tags: l10n upstream patch Dear Maintainer, I found nautilus-wipe useful but there was no german translation, so I did one (possibly it is not 'perfect' since this is my first translation but all strings are translated by a native speaker :) ). I submitted it upstream, too and it is attached below. Christian Meyer -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages nautilus-wipe depends on: ii libatk1.0-0 2.4.0-2 ii libc62.13-37 ii libcairo-gobject21.12.2-2 ii libcairo21.12.2-2 ii libfontconfig1 2.9.0-7.1 ii libfreetype6 2.4.9-1.1 ii libgconf2-4 3.2.5-1+build1 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-0 2.33.12+really2.32.4-3 ii libgsecuredelete00.2-1 ii libgtk-3-0 3.4.2-5 ii libnautilus-extension1a 3.4.2-1+build1 ii libpango1.0-01.30.0-1 nautilus-wipe recommends no packages. nautilus-wipe suggests no packages. -- no debconf information # German translations for nautilus-wipe package # Deutsche Übersetzung für das Paket nautilus-wipe. # Copyright (C) 2010-2011 Christian Meyer # This file is distributed under the same license as the nautilus-wipe package. # Christian Meyer , 2013. msgid "" msgstr "" "Project-Id-Version: nautilus-wipe 0.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-04-26 23:16+0200\n" "PO-Revision-Date: 2013-01-26 20:27+0100\n" "Last-Translator: Christian Meyer \n" "Language-Team: German\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-Language: German\n" "X-Poedit-Country: GERMANY\n" #: ../nautilus-wipe/delete-operation.c:88 #, c-format msgid "Nothing to do!" msgstr "Nichts zu tun!" #: ../nautilus-wipe/fill-operation.c:119 #, c-format msgid "Mount \"%s\" is not local" msgstr "Speicherort \"%s\" ist nicht lokal" #: ../nautilus-wipe/fill-operation.c:135 #, c-format msgid "No mount point found for path \"%s\"" msgstr "Kein Einhängepunkt gefunden für den Pfad \"%s\"" #: ../nautilus-wipe/nautilus-wipe.c:361 msgid "Wipe" msgstr "Sicher löschen" #: ../nautilus-wipe/nautilus-wipe.c:362 msgid "Delete each selected item and overwrite its data" msgstr "Lösche jedes ausgewählte Element und überschreibe seine Daten" #: ../nautilus-wipe/nautilus-wipe.c:394 #, c-format msgid "File filtering failed: %s" msgstr "Dateifilterung ist fehlgeschlagen: %s" #: ../nautilus-wipe/nautilus-wipe.c:398 msgid "Wipe available diskspace" msgstr "Sicherers Löschen des verfügbaren Festplattenplatzes" #: ../nautilus-wipe/nautilus-wipe.c:399 msgid "Overwrite available diskspace in this device(s)" msgstr "Überschreibe den verfügbaren Festplattenplatz auf diesem Gerät(en)" #: ../nautilus-wipe/nautilus-wipe.c:478 #, c-format msgid "Are you sure you want to wipe the %u selected items?" msgstr "Sind Sie sicher, dass Sie die %u ausgewählten Elemente sicher löschen wollen?" #: ../nautilus-wipe/nautilus-wipe.c:484 #, c-format msgid "Are you sure you want to wipe \"%s\"?" msgstr "Sind Sie sicher, dass Sie \"%s\" sicher löschen wollen?" #: ../nautilus-wipe/nautilus-wipe.c:493 msgid "If you wipe an item, it will not be recoverable." msgstr "Wenn Sie ein Element sicher Löschen kann es nicht wieder hergestellt werden." #: ../nautilus-wipe/nautilus-wipe.c:494 msgid "_Wipe" msgstr "_Sicher löschen" #. progress dialog #: ../nautilus-wipe/nautilus-wipe.c:497 msgid "Wiping files..." msgstr "Lösche Dateien…" #. failed dialog #: ../nautilus-wipe/nautilus-wipe.c:501 msgid "Wipe failed." msgstr "Sicheres Löschen ist fehlgeschlagen." #. success dialog #: ../nautilus-wipe/nautilus-wipe.c:503 msgid "Wipe successful." msgstr "Sicheres Löschen war erfolgreich." #: ../nautilus-wipe/nautilus-wipe.c:504 msgid "Item(s) have been successfully wiped." msgstr "Element(e) wurde erfolgreich gelöscht." #. TRANSLATORS: this is the last device names separator #: ../nautilus-wipe/nautilus-wipe.c:532 msgid " and " msgstr " und " #. TRANSLATORS: this is
Bug#699048: nautilus-compare: Translation is missing
Package: nautilus-compare Version: 0.0.4-1 Severity: normal Tags: patch upstream l10n Dear Maintainer, I use nautilus-compare and it is useful. Simply the (german) translation is missing. First I tried to do some translation work, but I found that there is an upstream translation available: http://bazaar.launchpad.net/~nautilus-compare/nautilus-compare/trunk/files Since upstream (Ubuntu) has only done translation work since 2011-10-30 it would be nice to have it in wheezy, too. So please update the various translations before releasing wheezy. Christian Meyer -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages nautilus-compare depends on: ii nautilus 3.4.2-1+build1 ii python 2.7.3~rc2-1 ii python-nautilus 1.1-3 ii python-xdg 0.19-5 Versions of packages nautilus-compare recommends: ii meld 1.6.1-1 Versions of packages nautilus-compare suggests: pn diffuse pn fldiff pn kdiff3 | kdiff3-qt pn kompare pn tkdiff -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#697321: vino delivers black screen in "viewing-only" mode
Package: vino Version: 3.4.2-1+b1 Severity: important Dear Maintainer, I did a dist-upgrade from squeezy to wheezy (testing). Since then the new vino (3.4.2-1) only shows a black screen when connected in "viewing-only" mode. Vino 2.28.2-2+squeeze1 worked correctly before. When I disable the "viewing-only" option in the client vinagre on a different machine then vino shows the screen correctly. It would be very nice to have a fixed version in wheezy. ;) Thank you Christian Meyer -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages vino depends on: ii dconf-gsettings-backend [gsettings-backend] 0.12.1-3 ii libavahi-client3 0.6.31-1 ii libavahi-common3 0.6.31-1 ii libavahi-glib1 0.6.31-1 ii libc62.13-37 ii libcairo21.12.2-2 ii libdbus-glib-1-2 0.100-1 ii libgcrypt11 1.5.0-3 ii libglib2.0-0 2.33.12+really2.32.4-3 ii libgnome-keyring03.4.1-1 ii libgnutls26 2.12.20-2 ii libgtk-3-0 3.4.2-4 ii libice6 2:1.0.8-2 ii libjpeg8 8d-1 ii libnotify4 0.7.5-1 ii libsm6 2:1.2.1-2 ii libsoup2.4-1 2.38.1-2 ii libtelepathy-glib0 0.18.2-2 ii libx11-6 2:1.5.0-1 ii libxdamage1 1:1.1.3-2 ii libxext6 2:1.3.1-2 ii libxfixes3 1:5.0-4 ii libxtst6 2:1.2.1-1 ii zlib1g 1:1.2.7.dfsg-13 Versions of packages vino recommends: ii gvfs 1.12.3-1+b1.CBM Versions of packages vino suggests: ii gnome-user-guide 3.4.2-1+build1 ii vinagre 3.4.2-1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610868: cdda: aborts with CD-Text outside ASCII
tags 610868 patch thanks Upstream patch applied, bug is gone. See Description and attached patch. Thank you. Christian Meyer Description: cdda: Fix abort() with CD-Text outside ASCII CD-Text doesn't specify encoding, but in practice some discs have strings with extended characters. Using those directly will make D-Bus choke with invalid data. Fixed by assuming latin-1. This also fixes a memory leak in the cdtext_get() usage. Author: Pekka Vuorela Origin: upstream, http://git.gnome.org/browse/gvfs/commit/?id=5624012821836136ad38abea00469865f6e7d616 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=671259 Bug-Debian: http://bugs.debian.org/610868 Bug-Ubuntu: https://launchpad.net/bugs/819304 Reviewed-By: Bastien Nocera Last-Update: 2012-07-09 Description: cdda: Fix abort() with CD-Text outside ASCII CD-Text doesn't specify encoding, but in practice some discs have strings with extended characters. Using those directly will make D-Bus choke with invalid data. Fixed by assuming latin-1. This also fixes a memory leak in the cdtext_get() usage. Author: Pekka Vuorela Origin: upstream, http://git.gnome.org/browse/gvfs/commit/?id=5624012821836136ad38abea00469865f6e7d616 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=671259 Bug-Debian: http://bugs.debian.org/610868 Bug-Ubuntu: https://launchpad.net/bugs/819304 Forwarded: not-needed Reviewed-By: Bastien Nocera Last-Update: 2012-07-09 --- gvfs-1.12.3.orig/daemon/gvfsbackendcdda.c +++ gvfs-1.12.3/daemon/gvfsbackendcdda.c @@ -158,6 +158,13 @@ release_metadata (GVfsBackendCdda *cdda_ cdda_backend->tracks = NULL; } +static char * +cdtext_string_to_utf8 (const char *string) +{ + /* CD-text doesn't specify encoding. In case outside ascii, assume latin-1. */ + return g_convert (string, -1, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); +} + static void fetch_metadata (GVfsBackendCdda *cdda_backend) { @@ -171,9 +178,9 @@ fetch_metadata (GVfsBackendCdda *cdda_ba cdtext = cdio_get_cdtext(cdio, 0); if (cdtext) { -cdda_backend->album_title = g_strdup (cdtext_get (CDTEXT_TITLE, cdtext)); -cdda_backend->album_artist = g_strdup (cdtext_get (CDTEXT_PERFORMER, cdtext)); -cdda_backend->genre = g_strdup (cdtext_get (CDTEXT_GENRE, cdtext)); +cdda_backend->album_title = cdtext_string_to_utf8 (cdtext_get_const (CDTEXT_TITLE, cdtext)); +cdda_backend->album_artist = cdtext_string_to_utf8 (cdtext_get_const (CDTEXT_PERFORMER, cdtext)); +cdda_backend->genre = cdtext_string_to_utf8 (cdtext_get_const (CDTEXT_GENRE, cdtext)); } cdtrack = cdio_get_first_track_num(cdio); @@ -184,8 +191,8 @@ fetch_metadata (GVfsBackendCdda *cdda_ba track = g_new0 (GVfsBackendCddaTrack, 1); cdtext = cdio_get_cdtext(cdio, cdtrack); if (cdtext) { - track->title = g_strdup (cdtext_get (CDTEXT_TITLE, cdtext)); - track->artist = g_strdup (cdtext_get (CDTEXT_PERFORMER, cdtext)); + track->title = cdtext_string_to_utf8 (cdtext_get_const (CDTEXT_TITLE, cdtext)); + track->artist = cdtext_string_to_utf8 (cdtext_get_const (CDTEXT_PERFORMER, cdtext)); } track->duration = cdio_get_track_sec_count (cdio, cdtrack) / CDIO_CD_FRAMES_PER_SEC; @@ -961,8 +968,10 @@ do_query_info (GVfsBackend *backend, g_file_info_set_display_name (info, _("Audio Disc")); /* TODO: fill in from metadata */ g_file_info_set_file_type (info, G_FILE_TYPE_DIRECTORY); g_file_info_set_content_type (info, "inode/directory"); - SET_INFO ("xattr::org.gnome.audio.title", cdda_backend->album_title); - SET_INFO ("xattr::org.gnome.audio.artist", cdda_backend->album_artist); + if (cdda_backend->album_title) +SET_INFO ("xattr::org.gnome.audio.title", cdda_backend->album_title); + if (cdda_backend->album_artist) +SET_INFO ("xattr::org.gnome.audio.artist", cdda_backend->album_artist); SET_INFO ("xattr::org.gnome.audio.genre", cdda_backend->genre); g_file_info_set_size (info, 0); icon = g_themed_icon_new ("folder"); signature.asc Description: This is a digitally signed message part
Bug#610868: cdda: aborts with CD-Text outside ASCII
reassign 610868 gvfs-backends retitle cdda: aborts with CD-Text outside ASCII Tags: upstream patch thanks Dear Maintainer of gvfs-backends, it seems that this bugreport belongs to gfvs cdda backend instead of sound-juicer [1]. Upstream and Ubuntu already fixed it: http://git.gnome.org/browse/gvfs/commit/?id=5624012821836136ad38abea00469865f6e7d616 https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/819304 Possibly my bug is the same as #539549 (since the submitter is french with possible non-ASCII CDs like my german ones). It would be very nice if you could fix it before wheezy because the bug is really annoying. Thank you very much Christian Meyer [1] see Ubuntu bug reports describing my problem and that are solved by a gfvs fix: https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/902573 https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/622213 signature.asc Description: This is a digitally signed message part
Bug#682072: gnome-search-tool: Results list incomplete / incorrectly refreshed after the first search
Package: gnome-search-tool Version: 3.4.0-2+b1 Followup-For: Bug #682072 Dear Maintainer, I can confirm this. Its really annoying, especially when window title claims "1 File found" and in search results there is nothing displayed. In this case even clicking in a blank area doesn't refresh the results. I found that resizing the window helps. Since gnome-search-tool is the best search-GUI: could you please fix this before releasing wheezy? Thanks Christian Meyer -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gnome-search-tool depends on: ii gconf-service 3.2.5-1+build1 ii gconf2 3.2.5-1+build1 ii libatk1.0-0 2.4.0-2 ii libc6 2.13-35 ii libgconf-2-43.2.5-1+build1 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-02.32.3-1 ii libgtk-3-0 3.4.2-3 ii libice6 2:1.0.8-2 ii libsm6 2:1.2.1-2 gnome-search-tool recommends no packages. Versions of packages gnome-search-tool suggests: ii yelp 3.4.2-1+b1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#680129: network-manager: fails to bring up WLAN after suspend
Hi, possibly its the same bug - just belonging to WLAN - I can't see any difference between 632850 and my bug report (680129). For me it often took several attempts to bring WLAN up again. Including replugging only, /etc/init.d/network restart, etc., or even rebooting. At last I was annoyed so much (the device often got hot and then didn't work until cooldown) that I brought back the USB device and now I can't do any more testing since I now have a different device [1] wich wakes up normally (different chipset with different non-free-firmware). Sorry for that. Thanks for your attention. Christian Meyer [1] ID 057c:8403 AVM GmbH Fritz!WLAN N v2 [Atheros AR9271] signature.asc Description: This is a digitally signed message part
Bug#680129: network-manager: fails to bring up WLAN after suspend
Package: network-manager Version: 0.9.4.0-5 Severity: important Dear Maintainer, after wakening the computer (after "suspend") nm does not bring back my WLAN. Network settings shows th menuentry "Wireless" and the MAC-Adress of my USB- WLAN-stick is shown, but no WLAN is detected (no network names are available). lsusb shows the hardware correctly (Guillemot Corp. Hercules HWNUm-300 Wireless N mini [Realtek RTL8191SU]) Currently I solve the problem by unplugging, cooling (it is very hot after suspend) and then replugging the USB-WLAN-stick. Please let me know if (and how) I can provide more information. Thanks Christian Meyer -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages network-manager depends on: ii adduser3.113+nmu3 ii dbus 1.6.0-1 ii dpkg 1.16.4.3 ii isc-dhcp-client4.2.2.dfsg.1-5 ii libc6 2.13-33 ii libdbus-1-31.6.0-1 ii libdbus-glib-1-2 0.98-1 ii libgcrypt111.5.0-3 ii libglib2.0-0 2.32.3-1 ii libgnutls262.12.20-1 ii libgudev-1.0-0 175-3.1 ii libnl-3-2003.2.7-3 ii libnl-genl-3-200 3.2.7-3 ii libnl-route-3-200 3.2.7-3 ii libnm-glib40.9.4.0-5 ii libnm-util20.9.4.0-5 ii libpolkit-gobject-1-0 0.105-1 ii libuuid1 2.20.1-5.1 ii lsb-base 4.1+Debian7 ii udev 175-3.1 ii wpasupplicant 1.0-2 Versions of packages network-manager recommends: ii crda 1.1.2-1 ii dnsmasq-base 2.62-3 ii iptables 1.4.14-2 ii modemmanager 0.5.2.0-1 ii policykit-1 0.105-1 ii ppp 2.4.5-5.1+b1 Versions of packages network-manager suggests: pn avahi-autoipd -- Configuration Files: /etc/NetworkManager/NetworkManager.conf changed [not included] -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#677412: xserver-xorg-video-radeon: Package description shouldn't praise fglrx too much
Package: xserver-xorg-video-radeon Version: 1:6.14.4-4 Severity: minor Dear Maintainer, some weeks ago I bought a new computer with ATI Radeon HD 4250 onboard graphics. After installing Debian I only got Gnome fallback mode so I searched for a 3D capable driver (in order to enjoy Gnome shell). I found xserver-xorg-video-radeon but in the package description is written that this is not fglrx, "wich provides additional 3D functionality for some newer Radeon cards" so I decided to use fglrx because of its 3D features. (The german translation is even worse: "Nur dieser stellt zusätzliche 3D- Funktionen für einige neuere Radeon-Karten bereit." wich means: "ONLY this (fglrx-driver) provides additional 3D functionallity fore some newer Radeon cards" ...) Having lots of trouble with fglrx I googled for alternatives and (very late) found a hint to the Gallium driver, not knowing how to use it with Debian, or even if it is supported. I mentally prepared for a long and frustrating procedure and gave xserver-xorg-video-radeon a (very little) try. And: It worked OUT OF THE BOX! Now I'm very happy with xserver-xorg-video-radeon (all fglrx-problems are gone) and ask myself (and you, too) why the xserver-xorg-video-radeon package description praises fglrx-driver so much? My way to xserver-xorg-video-radeon could have been very much shorter. So: Please add a list of 3D supported video-cards[1] in the package description or, at least change the description to something like: "xserver-xorg-video- radeon is the recommended driver, which works for most cards. Please try the proprietary and unsupported ATI 'fglrx-driver' if xserver-xorg-video-radeon does not work." Thank you! Christian Meyer [1] e.g. see the list provided by the driver itself. See my /var/log/Xorg.0.log snipplet below. -- Package-specific info: VGA-compatible devices on PCI bus: -- 01:05.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI RS880 [Radeon HD 4250] [1002:9715] Kernel version (/proc/version): --- Linux version 3.2.0-2-amd64 (Debian 3.2.19-1) (debian-ker...@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-1) ) #1 SMP Fri Jun 1 17:49:08 UTC 2012 Contents of most recent Xorg X server log file (/var/log/Xorg.0.log): - [24.445] (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI), ATI Radeon Mobility X300 (M24) 3152 (PCIE), ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI), ATI Radeon X600 (RV380) 3E50 (PCIE), ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP), ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP), ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650, ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337, ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI), ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP), ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), ATI Radeon Mobility 9800 (M18) JN (AGP), ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP), ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP), ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP), ATI Radeon Mobility M7 LW (AGP), ATI Mobility FireGL 7800 M7 LX (AGP), ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), ATI FireGL Mobility 9000 (M9) Ld (AGP), ATI Radeon Mobility 9000 (M9) Lf (AGP), ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI, ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP), ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), ATI Radeon Mobility 9600 (M10) NQ (AGP), ATI Radeon Mobility 9600 (M11) NR (AGP), ATI Radeon Mobility 9600 (M10) NS (AGP), ATI FireGL Mobility T2 (M10) NT (AGP), ATI FireGL Mobility T2e (M1
Bug#665643: Aw: Bug#665643: Info received (stellar: stellarium scrambles graphics (fglrx))
Hi, in the last days I finally got rid of fglrx and use now the free radeon driver (with gallium) which suprisingly supports 3D, too. Stellarium works fine now and the bug is gone. It obviously is a problem with the proprietary fglrx-driver. Please feel free to close this bug (or reassign it to fglrx-driver). Sorry for the noise, Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#665643: stellar: stellarium scrambles graphics (fglrx)
Hello Tomek, thanks for the hint. The bug persists with the new version. And yes: fglrx is proprietary and non-free. That's why I wrote it and I think its possibly the true reason. BUT: I never had a similar behaviour with an other program. Until now only stellarium scrambles the screen and that every single time I run it. Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#668221: RFP: seahorse-nautilus -- Integrates Seahorse in Nautilus (GTK 3)
Package: wnpp Severity: wishlist * Package name: seahorse-nautilus Version : 3.4.0 Upstream Author : Stef Walter * URL : http://git.gnome.org/browse/seahorse-nautilus/ * License : GPL v2 Description : Seahorse nautilus is an extension for nautilus which allows encryption and decryption of OpenPGP files using GnuPG. Homepage: http://www.gnome.org/projects/seahorse/ Ubuntu: http://packages.ubuntu.com/de/precise/seahorse-nautilus -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#663386: gdm3 ignores [greeter] Include/Exclude in file daemon.conf
Package: gdm3 Version: 3.0.4-4 Severity: normal Hello there, in Squeeze (stable, gdm3: 2.30-5) I used to configure gdm3 via /etc/gdm3/daemon.conf. Currently this does not work any more in Wheezy (testing, gdm3: 3.0.4-4): User s2 (with "realname" s2, too) is visible in gdm3 as an available user - but it should not because it is excluded in daemon.conf. IncludeAll=false doesn't seem to change anything, too. Possibly this bug is related to #618294 Thank you for attention, Christian Meyer -- System Information: Debian Release: wheezy/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gdm3 depends on: ii accountsservice 0.6.15-4 ii adduser 3.113+nmu1 ii dconf-gsettings-backend 0.10.0-3 ii debconf [debconf-2.0] 1.5.41 ii gconf2 3.2.3-3 ii gnome-session [x-session-manager] 3.2.1-1 ii gnome-session-bin 3.2.1-1 ii gnome-session-fallback [x-session-manager] 3.2.1-1 ii gnome-terminal [x-terminal-emulator]3.2.1-2 ii gsettings-desktop-schemas 3.2.0-2 ii libaccountsservice0 0.6.15-4 ii libatk1.0-0 2.2.0-2 ii libattr11:2.4.46-5 ii libaudit0 1:1.7.18-1.1 ii libc6 2.13-27 ii libcairo-gobject2 1.10.2-6.2 ii libcairo2 1.10.2-6.2 ii libcanberra-gtk3-0 0.28-3 ii libcanberra00.28-3 ii libdbus-1-3 1.4.18-1 ii libdbus-glib-1-20.98-1 ii libfontconfig1 2.8.0-3.1 ii libfreetype62.4.8-1 ii libgconf2-4 3.2.3-3 ii libgdk-pixbuf2.0-0 2.24.1-1 ii libglib2.0-02.30.2-6 ii libglib2.0-bin 2.30.2-6 ii libgtk-3-0 3.2.3-1 ii libpam-modules 1.1.3-7 ii libpam-runtime 1.1.3-7 ii libpam0g1.1.3-7 ii libpango1.0-0 1.29.4-2 ii librsvg2-common 2.34.2-2 ii libselinux1 2.1.0-4.1 ii libupower-glib1 0.9.15-2 ii libwrap07.6.q-23 ii libx11-62:1.4.4-4 ii libxau6 1:1.0.6-4 ii libxdmcp6 1:1.1.0-4 ii libxklavier16 5.2.1-1 ii libxrandr2 2:1.3.2-2 ii lsb-base3.2-28.1 ii metacity [x-window-manager] 1:2.34.1-2 ii policykit-1-gnome 0.105-2 ii upower 0.9.15-2 ii xterm [x-terminal-emulator] 276-2 Versions of packages gdm3 recommends: ii at-spi 1.32.0-1 ii desktop-base 6.0.7 ii gnome-icon-theme 3.2.1.2-1 ii gnome-power-manager3.2.1-2 ii gnome-settings-daemon 3.2.2-2 ii x11-xkb-utils 7.6+4 ii xserver-xephyr 2:1.11.3.901-2 ii xserver-xorg 1:7.6+12 ii zenity 3.2.0-1 Versions of packages gdm3 suggests: ii gnome-mag ii gnome-orca ii gok ii libpam-gnome-keyring 3.2.2-2 ii metacity 1:2.34.1-2 -- Configuration Files: /etc/gdm3/PostSession/Default changed: mount -t fuse.encfs | grep "user=$USER" | awk '{print $3}' | while read MPOINT ; do sudo -u $USER fusermount -u "$MPOINT" done exit 0 /etc/gdm3/daemon.conf changed: [daemon] [security] [xdmcp] [greeter] Include=christian,susi Exclude=bin,root,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,nobody4,noaccess,postgres,pvm,rpm,nfsnobody,pcap,s2,party [chooser] [debug] -- debconf information: * shared/default-x-display-manager: gdm3 gdm3/daemon_name: /usr/sbin/gdm3 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#642141: brasero-disc-recorder creates wrong video DVD structure
reassign 642141 totem-plugins 2.30.2-6 retitle 642141 brasero-disc-recorder creates wrong video DVD structure thanks Update: Some testing showed that the problem is in the totem brasero-disc-recorder plugin. When using totem b-d-r then there is the wrong directory structure in the ISO file. I think possibly b-d-r plugin calls brasero with wrong options. (Is it recording a data disc?) When using brasero directly or via the libnautilus-brasero-extension then everything (namely the ISO) is fine. Christian Meyer PS: For people looking for a way to recover the iso image: http://www.crazysquirrel.com/computing/debian/dvd-creation.jspx and genisoimage -dvd-video helped me. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#642141: brasero: burns wrong directory while burning an ISO to DVD
Package: brasero Version: 2.30.3-2 Severity: important Hello there, recently I recorded an DVD (I think via totem-plugin: videodisc-recorder from Philippe Rouquier; "about" says it belongs to brasero) to an ISO file. Opening that ISO file with file-roller it shows the main folder containing an directory with the DVD name (that contains AUDIO_TS and VIDEO_TS folders) and the file .checksum.md5. Burning that file with brasero works fine (withot any error), BUT: the main folder only contains the folder with the DVD name. All files are there but AUDIO_TS and VIDEO_TS are in the subfolder and not in the root folder of the DVD. Now totem doesn't play that copied DVD and clicking on the DVD icon opens the file browser. I believe that this is just a problem of the filesystem structure. When you need more information, let me know. Christian Meyer -- System Information: Debian Release: 6.0.2 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages brasero depends on: ii brasero-common 2.30.3-2 Common files for the Brasero CD bu ii gnome-icon-theme 2.30.3-2 GNOME Desktop icon theme ii gstreamer0.10-plug 0.10.30-1 GStreamer plugins from the "base" ii gvfs 1.6.4-3 userspace virtual filesystem - ser ii libatk1.0-01.30.0-1 The ATK accessibility toolkit ii libbrasero-media0 2.30.3-2 CD/DVD burning library for GNOME - ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-6 The Cairo 2D vector graphics libra ii libdbus-1-31.2.24-4+squeeze1 simple interprocess messaging syst ii libdbus-glib-1-2 0.88-2.1 simple interprocess messaging syst ii libfontconfig1 2.8.0-2.1 generic font configuration library ii libfreetype6 2.4.2-2.1+squeeze1FreeType 2 font engine, shared lib ii libgconf2-42.28.1-6 GNOME configuration database syste ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgstreamer-plugi 0.10.30-1 GStreamer libraries from the "base ii libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme ii libgtk2.0-02.20.1-2 The GTK+ graphical user interface ii libice62:1.0.6-2 X11 Inter-Client Exchange library ii libnautilus-extens 2.30.1-2squeeze1 libraries for nautilus components ii libpango1.0-0 1.28.3-1+squeeze2 Layout and rendering of internatio ii libsm6 2:1.1.1-1 X11 Session Management library ii libtotem-plparser1 2.30.3-1 Totem Playlist Parser library - ru ii libtracker-client- 0.8.17-1 metadata database, indexer and sea ii libunique-1.0-01.1.6-1.1 Library for writing single instanc ii libxml22.7.8.dfsg-2+squeeze1 GNOME XML library brasero recommends no packages. Versions of packages brasero suggests: ii libdvdcss21.2.10-0.3 Simple foundation for reading DVDs pn vcdimager (no description available) -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610868: Bug really in sound-juicer?
Package: sound-juicer Version: 2.28.2-3 Severity: normal Hi there, wondering why s-j knows the name of the CD but not the track names I tried to work around this bug and switching off network before inserting the CDs. But the behaviour was misteriously exactly the same: CDs known to MucicBrainz are shown correctly (without name) and recordable, titles of CDs not known to MucicBrainz are not shown (or recordeable) in s-j. Maybe there's a local cache of CD infos accessible to any user that explains that. So I tried to access the CD with rhythmbox (with internet access) and the result was exactly like in s-j: CD name is shown with name but there is no track (even no unnamed) displayed in the track list window. Not knowing anything about programming (or internals of s-j / rhythmbox) I wonder if this could be related, e.g. because of using the same libraries or plugins. So I think this info might help you to lcate the problem. Thank you for your great work, Christian Meyer The mentioned CDs recorded fine (without name) with goobox. So CDs, drive and access to the discs are fine. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sound-juicer depends on: ii gconf2 2.28.1-6 GNOME configuration database syste ii gstreamer0.10-plugins- 0.10.30-1 GStreamer plugins from the "base" ii gstreamer0.10-plugins- 0.10.24-1 GStreamer plugins from the "good" ii libatk1.0-01.30.0-1 The ATK accessibility toolkit ii libbrasero-media0 2.30.3-2 CD/DVD burning library for GNOME - ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib ii libcanberra-gtk0 0.24-1Gtk+ helper for playing widget eve ii libdbus-glib-1-2 0.88-2.1 simple interprocess messaging syst ii libgconf2-42.28.1-6 GNOME configuration database syste ii libglade2-01:2.6.4-1 library to load .glade files at ru ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgnome-media02.30.0-1 runtime libraries for the GNOME me ii libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme ii libgtk2.0-02.20.1-2 The GTK+ graphical user interface ii libmusicbrainz3-6 3.0.2-2 library to access the MusicBrainz. ii libpango1.0-0 1.28.3-1+squeeze1 Layout and rendering of internatio Versions of packages sound-juicer recommends: ii eject 2.1.5+deb1+cvs20081104-7.1 ejects CDs and operates CD-Changer Versions of packages sound-juicer suggests: ii brasero 2.30.3-2CD/DVD burning application for GNO ii gstreamer0.10-lame 0.10.16-0.0 GStreamer lame plugin pn gstreamer0.10-plugins-really (no description available) ii gstreamer0.10-plugins-ugly 0.10.15-1 GStreamer plugins from the "ugly" -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610868: sound-juicer: Can not rip CDs (not found on MusicBrainz)
Package: sound-juicer Version: 2.28.2-3 Severity: important Hi there, when inserting some audio CDs s-j don't show the track listing, even unnamed entries are missing (see temporalily screenshot: http://chbmeyer.de/s-j1.png ). At this time it only happend when MusicBrainz does not know that CD. Other CDs are ripped without problem. When clicking 'submit album' then MusicBrainz shows the detailed TOC (see: http://chbmeyer.de/s-j2.png ) so it must be recognized by s-j. I don't know why s-j knows the name of the CD, I didn't enter it. Sometimes I got the (german) error message that s-j could not retrieve the track listing - I don't know what dbus has to do with this: Die CD konnte nicht eingelesen werden. Sound Juicer konnte die Titelliste auf dieser CD nicht einlesen. Grund: Auf CD kann nicht zugegriffen werden: Error while getting peer-to-peer dbus connection: The name :1.57 was not provided by any .service files Google told me about similar looking bugs in Fedora and Ubuntu, e.g.: https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/695155 https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/622213 https://bugzilla.redhat.com/show_bug.cgi?id=543830 https://bugzilla.redhat.com/show_bug.cgi?id=544843 Thanks for paying attention Christian Meyer -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sound-juicer depends on: ii gconf22.28.1-6 GNOME configuration database syste ii gstreamer0.10-plugins-base0.10.30-1 GStreamer plugins from the "base" ii gstreamer0.10-plugins-good0.10.24-1 GStreamer plugins from the "good" ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit ii libbrasero-media0 2.30.3-2 CD/DVD burning library for GNOME - ii libc6 2.11.2-9 Embedded GNU C Library: Shared lib ii libcanberra-gtk0 0.24-1 Gtk+ helper for playing widget eve ii libdbus-glib-1-2 0.88-2.1 simple interprocess messaging syst ii libgconf2-4 2.28.1-6 GNOME configuration database syste ii libglade2-0 1:2.6.4-1 library to load .glade files at ru ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgnome-media0 2.30.0-1 runtime libraries for the GNOME me ii libgstreamer0.10-00.10.30-1 Core GStreamer libraries and eleme ii libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface ii libmusicbrainz3-6 3.0.2-2library to access the MusicBrainz. ii libpango1.0-0 1.28.3-1 Layout and rendering of internatio Versions of packages sound-juicer recommends: ii eject 2.1.5+deb1+cvs20081104-7.1 ejects CDs and operates CD-Changer Versions of packages sound-juicer suggests: ii brasero 2.30.3-2CD/DVD burning application for GNO ii gstreamer0.10-lame 0.10.16-0.0 GStreamer lame plugin pn gstreamer0.10-plugins-really (no description available) ii gstreamer0.10-plugins-ugly 0.10.15-1 GStreamer plugins from the "ugly" -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#605662: upgrade-reports: removing splashy prevents booting (#512951)
Package: upgrade-reports Severity: critical Justification: breaks the whole system Hi there, I tried to provide this information to #512951 but it was not possible (fixed and archived since over 1 1/2 years). during a dist-upgrade from lenny to squeeze I removed (but not purged) most packages not in squeeze (see #597462: "splashy: Splash screen prevents gdm3 start"). Because of this I got bitten by #512951 which still is in lenny (lenny is 0.3.13-3). Since it breaks all initscripts ("return: 24: Illegal number: Starting") and leaves the filesystem ro #512951 should be fixed in lenny, too. Workaround: booting via live CD and renaming /etc/lsb-base-logging.sh manually. After that, splashy is still called during startup (initrd?) and causes a "splashy: 'command not found'" IIRC, but that is less important. Please adress this, too. Thanks Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#592268: eureqa works fine with packages from experimental
Update: After getting eureqa installed with ubuntu wine packages (1.2) I tried debian experimental packages (version 1.1.32-1+b1): wine-bin-unstable libwine-unstable libwine-bin-unstable and succeeded: Eureqa 0.82 beta installs and runs fine. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#602331: plymouth: Bugs still there in 0.8.3-17
Package: plymouth Version: 0.8.3-17 Severity: normal Hi there, I found a way to force maintenance shell at boot time: Adding an invalid UUID line to fstab (and auto fsck it at boot time) works: # /dev/sdb1 (blue) UUID=db7f927d-cf0b-4a1e-affe-6737e0396fdf /media/usb1 ext3 rw,defaults 0 1 (see: http://ubuntuforums.org/showthread.php?t=1200587 ) Both problems are still there in plymouth 0.8.3-17. Only difference to the older version: you have to press ESC twice and you are able to press two keys before input is interrupted. Christian -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.98.5 tools for generating an initramfs ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib plymouth recommends no packages. plymouth suggests no packages. -- Configuration Files: /etc/plymouth/plymouthd.conf changed: [Daemon] Theme=solar -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#602331: plymouth does not allow to enter maintenance shell
Am Donnerstag, den 04.11.2010, 20:53 +0100 schrieb Julien Cristau: > On Thu, Nov 4, 2010 at 20:47:10 +0100, Christian Meyer wrote: > > > Do you have a suggestion how to force the maintenance shell at boot time? > > However. I will install 0.8.3-17 and wait for the next filesystem > > inconsistency. > > > I suppose you could change the root= parameter in grub so the initramfs > can't find the root device and gets you to the maintenance shell? Sorry, this didn't work. I gave invalid (e.g. /abc) and wrong (e.g. /home) parameters, but my system booted without maintenance shell (only a kernel panic once). Even creating /forcefsck and then powering off by unplugging power supply (while copying a large file to /) didn't work (yet). I will go on trying and report it when maintenance shell appear. Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#602331: plymouth does not allow to enter maintenance shell
Hello Julien, I would be glad to find out if the two issues are still in plymouth 0.8.3-17. Since I don't know much about filesystems (and I don't want to crash my encrypted LVM) I have no glue how to "damage" my root partition just that little bit that is needed to cause init to call the maintenance shell. Just forcing fsck at boot probably will not find any error. Do you have a suggestion how to force the maintenance shell at boot time? However. I will install 0.8.3-17 and wait for the next filesystem inconsistency. Christian ___ GRATIS! Movie-FLAT mit über 300 Videos. Jetzt freischalten unter http://movieflat.web.de -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#602331: plymouth does not allow to enter maintenance shell
Package: plymouth Version: 0.8.3-9.1 Severity: important Hello there, For some reason my root filesystem (ext3 on encrypted lvm) had some errors and fsck could not fix them automatically. Then a maintenance shell should be started to solve the problem manually. First plymouth problem (maybe a "feature" or not implemented yet): The plymouth theme runs (and runs and runs ...) and gives no hint that something is wrong. Only after pressing ESC you realize that there is a problem. Second problem (really annoying and important): I see the following lines (probably from init): Give root password for maintenance (or type Control-D to continue) When I want to enter my password after every single key the input is aborted (nothing displayed) and a new line shows up: Give root password for maintenance (or type Control-D to continue) The only way I found to work around is: Restart and remove the kernel boot option "splash" in grub. Then I'm able to enter my password. Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools0.98.5tools for generating an initramfs ii libc6 2.11.2-6+squeeze1 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-6 The Cairo 2D vector graphics libra ii libdrm-intel1 2.4.21-1~squeeze3 Userspace interface to intel-speci ii libdrm-nouveau12.4.21-1~squeeze3 Userspace interface to nouveau-spe ii libdrm-radeon1 2.4.21-1~squeeze3 Userspace interface to radeon-spec ii libdrm22.4.21-1~squeeze3 Userspace interface to kernel DRM ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libpango1.0-0 1.28.3-1 Layout and rendering of internatio ii libpng12-0 1.2.44-1 PNG library - runtime Versions of packages plymouth recommends: ii fontconfig-config 2.8.0-2.1 generic font configuration library ii plymouth-themes-all 0.8.3-9.1 Graphical Boot Animation and Logge ii ttf-dejavu-core 2.31-1 Vera font family derivate with add Versions of packages plymouth suggests: pn gdm(no description available) -- Configuration Files: /etc/plymouth/plymouthd.conf changed: [Daemon] Theme=spinfinity -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#597296: ooo-thumbnailer: Problem with space character
Package: ooo-thumbnailer Version: 0.2-5 Severity: normal Hello there, when the path of an ooo-file contains a space character, then no thumbnail is created. E.g.: /home/you/some\ files/file.odt If only the filename contains a space character then there is no problem. E.g.: /home/you/files/first\ file.odt Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages ooo-thumbnailer depends on: ii gconf2 2.28.1-3 GNOME configuration database syste ii imagemagick8:6.6.0.4-2.2 image manipulation programs ii unzip 6.0-4 De-archiver for .zip files ooo-thumbnailer recommends no packages. ooo-thumbnailer suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#477814: synaptic: Another typo in german translation
Package: synaptic Version: 0.70~pre1+b1 Severity: normal Hello there, 477814 (missing space in status bar) is still there. When you update german translation, please fix another typo, too: msgid "Unable to get exclusive lock" msgstr "Es ist unmöglick einen exklusiven Zugriff zu erhalten)" must be ("h" instead of "k"): msgstr "Es ist unmöglich einen exklusiven Zugriff zu erhalten)" Thank you, Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages synaptic depends on: ii apt [libapt-pkg4.10]0.8.0Advanced front-end for dpkg ii apt-utils [libapt-inst1 0.8.0APT utility programs ii hicolor-icon-theme 0.11-1 default fallback theme for FreeDes ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit ii libc6 2.11.2-2 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-5 The Cairo 2D vector graphics libra ii libept1 1.0.3+b1 High-level library for managing De ii libfontconfig1 2.8.0-2.1generic font configuration library ii libfreetype62.4.2-1 FreeType 2 font engine, shared lib ii libgcc1 1:4.4.4-8GCC support library ii libglade2-0 1:2.6.4-1library to load .glade files at ru ii libglib2.0-02.24.1-1 The GLib library of C routines ii libgtk2.0-0 2.20.1-1+b1 The GTK+ graphical user interface ii libpango1.0-0 1.28.1-1 Layout and rendering of internatio ii libstdc++6 4.4.4-8 The GNU Standard C++ Library v3 ii libvte9 1:0.24.3-1 Terminal emulator widget for GTK+ ii libx11-62:1.3.3-3X11 client-side library ii libxapian22 1.2.3-2 Search engine library ii libxml2 2.7.7.dfsg-4 GNOME XML library ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime Versions of packages synaptic recommends: ii apt-xapian-index 0.38maintenance tools for a Xapian ind ii gksu 2.0.2-3 graphical frontend to su ii libgnome2-perl 1.042-2 Perl interface to the GNOME librar ii rarian-compat0.8.1-5 Documentation meta-data library (c ii software-properties-gtk 0.60.debian-1.1 manage the repositories that you i Versions of packages synaptic suggests: ii deborphan 1.7.28 program that can find unused packa pn dwww (no description available) ii menu 2.1.43 generates programs menu for all me -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575431: Please close 575431
Hello again, I can not remember what happend exactly but I can't reproduce 575431 any more. Plymouth changed its 'INIT INFO' headers to properly support dependency based boot, keyboard-configuration is a newer version (1.55), maybe that is the cause. I still start console-setup in rcS.d but everything is fine. Please feel free to close 575431. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: 'stairs effect' is gone with patch
PS: Even the ugly 'stairs effect' when pressing 'Esc' (even with other plugins) is gone! That is really great! I applied both patches except of the 'INIT INFO' changes since I don't understand them. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: text plugin looks really nice
Hello together, I can confirm that the patch from Leszek Lesner fixes 575177 for me. Plymouth text plugin looks really nice now. Christian Meyer -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#593407: plymouth ask-for-password doesn't work
Hello Marc, For me it works fine: plymouth ask-for-password --prompt="Enter passphrase: "; Since you understand german, I used the method using a (modified) keyscript described in http://www.andreas-janssen.de/cryptodisk.html For me first a key-file is searched on an USB-Stick to unlock root and when not found the above command asks for the password. The only problem that still remains is: When plymouth is not starting (e.g. missing 'splash' option in grub) then no password can be entered with 'plymouth ask-for-password'. But accessing with the key-file on USB still works. When I can provide additional help, please write a mail. Christian -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#592402: evolution: Bug with active window while accessing LDAP Adressbook
Package: evolution Version: 2.30.2-1 Severity: normal I don't know wheather this bug is upstream related or Debian only, but Squeeze is frozen so I better report it here (in Debian BTS). 1. Press "Compose Message" 2. Press "To:" 3. Select LDAP Adressbook Problem: A new "Enter password" window appears, cursor is blinking in the selected window (no password stored in keyring) so it seems to be fine BUT: The Password "MySecretPassword" appears in the background window with title "Select Contacts from Adress Book" under "Search:" I made a screenshot (80kb): http://www.chbmeyer.de/evolution.png There is no way to enter the password in the right field - there is only a workaround: Press "Esc", then the "Select Contacts ..." window closes, you now can enter the LDAP-password and then try to adress your Mail. Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages evolution depends on: ii dbus1.2.24-3 simple interprocess messaging syst ii debconf [debconf-2.0] 1.5.33 Debian configuration management sy ii evolution-common2.30.2-1 architecture independent files for ii evolution-data-server 2.30.2.1-1 evolution database backend server ii gconf2 2.28.1-3 GNOME configuration database syste ii gnome-icon-theme2.30.3-1 GNOME Desktop icon theme ii libart-2.0-22.3.21-1 Library of functions for 2D graphi ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit ii libc6 2.11.2-2 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-4 The Cairo 2D vector graphics libra ii libcamel1.2-14 2.30.2.1-1 The Evolution MIME message handlin ii libcanberra-gtk00.24-1 Gtk+ helper for playing widget eve ii libcanberra00.24-1 a simple abstract interface for pl ii libdbus-1-3 1.2.24-3 simple interprocess messaging syst ii libdbus-glib-1-20.86-1 simple interprocess messaging syst ii libebackend1.2-02.30.2.1-1 Utility library for evolution data ii libebook1.2-9 2.30.2.1-1 Client library for evolution addre ii libecal1.2-72.30.2.1-1 Client library for evolution calen ii libedataserver1.2-132.30.2.1-1 Utility library for evolution data ii libedataserverui1.2-8 2.30.2.1-1 GUI utility library for evolution ii libegroupwise1.2-13 2.30.2.1-1 Client library for accessing group ii libenchant1c2a 1.6.0-1 a wrapper library for various spel ii libevolution2.30.2-1 evolution libraries ii libfontconfig1 2.8.0-2.1generic font configuration library ii libfreetype62.4.0-2 FreeType 2 font engine, shared lib ii libgconf2-4 2.28.1-3 GNOME configuration database syste ii libgdata-google1.2-12.30.2.1-1 Client library for accessing Googl ii libgdata1.2-1 2.30.2.1-1 Client library for accessing Googl ii libglib2.0-02.24.1-1 The GLib library of C routines ii libgnome-desktop-2-17 2.30.2-1 Utility library for loading .deskt ii libgnomecanvas2-0 2.30.1-1 A powerful object-oriented display ii libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface ii libgtkhtml-editor0 3.30.2-1 HTML rendering/editing library - e ii libgtkhtml3.14-19 3.30.2-1 HTML rendering/editing library - r ii libgweather12.30.2-1 GWeather shared library ii libical00.44-3 iCalendar library implementation i ii libice6 2:1.0.6-1X11 Inter-Client Exchange library ii libnotify1 [libnotify1- 0.5.0-2 sends desktop notifications to a n ii libnspr4-0d 4.8.4-2 NetScape Portable Runtime Library ii libnss3-1d 3.12.6-3 Network Security Service libraries ii libpango1.0-0 1.28.1-1 Layout and rendering of internatio ii libsm6 2:1.1.1-1X11 Session Management library ii libsoup2.4-12.30.2-1 an HTTP library implementation in ii libsqlite3-03.6.23.1-4 SQLite 3 shared library ii libstartup-notification 0.10-1 library for program launch feedbac ii libunique-1.0-0 1.1.6-1 Library for writing single instanc ii libxml2 2.7.7.dfsg-4 GNOME XML library ii zlib1g 1:1.2.3.4.dfsg-3 compression lib
Bug#592268: wine: msiexec /i eureqa.msi crashes (Unhandled page fault on read access)
Package: wine Version: 1.0.1-3 Severity: normal Trying to install eureqa 0.81 leads to a crash (after the third config window). Output of $ msiexec /i eureqa_0_81_0_0.msi is attached. Eureqa dowload page ( http://ccsl.mae.cornell.edu/eureqa ) says, that it works with wine and I had eureqa 0.75 (?) running on a different box (Debian Squeeze, too) some time ago (probably with older wine-packages). First I thought some dependencies were missing, but I couldn't find anything. Thanks for your attention Christian Meyer -- 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/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages wine depends on: ii libwine-alsa 1.0.1-3Windows API implementation - ALSA ii libwine-cms 1.0.1-3Windows API implementation - color ii libwine-gl1.0.1-3Windows API implementation - OpenG ii libwine-gphoto2 1.0.1-3Windows API implementation - camer ii libwine-ldap 1.0.1-3Windows API implementation - LDAP ii libwine-print 1.0.1-3Windows API implementation - print ii libwine-sane 1.0.1-3Windows API implementation - scann ii wine-bin 1.0.1-3Windows API implementation - binar ii wine-utils1.0.1-3Windows API implementation - utili Versions of packages wine recommends: ii ttf-liberation 1.05.2.20091019-4 Fonts with the same metrics as Tim Versions of packages wine suggests: pn avscan | klamav | clamav (no description available) ii binfmt-support1.2.18 Support for extra binary formats pn ttf-mscorefonts-installer (no description available) pn winbind(no description available) pn wine-doc (no description available) Versions of packages libwine depends on: ii ia32-libs 20090808 ia32 shared libraries for use on a ii libc6-i3862.11.2-2 GNU C Library: 32-bit shared libra fixme:advapi:LookupAccountNameW (null) L"christian" (nil) 0x32f854 (nil) 0x32f858 0x32f84c - stub fixme:advapi:LookupAccountNameW (null) L"christian" 0x126e70 0x32f854 0x12a0c8 0x32f858 0x32f84c - stub wine: Unhandled page fault on read access to 0x0030 at address 0x7edc9009 (thread 0009), starting debugger... Unhandled exception: page fault on read access to 0x0030 in 32-bit code (0x7edc9009). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b EIP:7edc9009 ESP:0032f410 EBP:0032f458 EFLAGS:00010202( - 00 - -RI1) EAX:0020 EBX:7ee03cec ECX:0032f48c EDX:0017 ESI:0017f1e0 EDI:0017f1e0 Stack dump: 0x0032f410: 0017f1d8 7edfae00 0017f1e0 7bc32dcf 0x0032f420: 0020 01633400 7bc4311b 7bc89444 0x0032f430: 0017f1d8 7bc89444 0032f4a8 7bc436ce 0x0032f440: 00110048 f7795e50 005c 7ee03cec 0x0032f450: 0017f140 0017f1e0 0032f4a8 7edc9af5 0x0032f460: 0020 0017f1e0 0032f48c Backtrace: =>1 0x7edc9009 MSI_GetPropertyW+0xa9() in msi (0x0032f458) 2 0x7edc9af5 msi_dup_property+0x45() in msi (0x0032f4a8) 3 0x7edac4bf in msi (+0x3c4bf) (0x0032f508) 4 0x0030005f (0x0030005f) 0x7edc9009 MSI_GetPropertyW+0xa9 in msi: movl 0x10(%eax),%eax Modules: Module Address Debug info Name (78 modules) ELF 7b80-7b939000 Deferredkernel32 \-PE 7b82-7b939000 \ kernel32 ELF 7bc0-7bca5000 Deferredntdll \-PE 7bc1-7bca5000 \ ntdll ELF 7bf0-7bf03000 Deferred ELF 7e20a000-7e229000 Deferredlibjpeg.so.62 ELF 7e291000-7e2c3000 Deferreduxtheme \-PE 7e2a-7e2c3000 \ uxtheme ELF 7e2c3000-7e2cc000 Deferredlibxcursor.so.1 ELF 7e2cc000-7e2d1000 Deferredlibxfixes.so.3 ELF 7e2d1000-7e2d4000 Deferredlibxcomposite.so.1 ELF 7e2d4000-7e2db000 Deferredlibxrandr.so.2 ELF 7e2db000-7e2e4000 Deferredlibxrender.so.1 ELF 7e2e4000-7e2e7000 Deferredlibxinerama.so.1 ELF 7e2e7000-7e307000 Deferredimm32 \-PE 7e2f-7e307000 \ imm32 ELF 7e307000-7e30c000 Deferredlibxdmcp.so.6 ELF 7e30c000-7e325000 Deferredlibxcb.so.1 ELF 7e325000-7e328000 Deferredlibxau.so.6 ELF 7e328000-7e32c000 Deferredlibuuid.so.1 ELF 7e32c000-7e448000 Deferredlibx11.so.6 ELF 7e448000-7e456000 Deferredlibxext.so.6 ELF 7e456000-7e45b000 Deferredlibxxf86vm.so.1 ELF 7e45b000-7e473000 Deferred
Bug#582486: gnuradio: Is it neccessary to conflict with python-wxgtk2.6 ?
Package: gnuradio Version: 3.2.2.dfsg-1 Severity: normal Hello there, I'm not able to install gnuradio because python-gnuradio-wxgui requires python-wxgtk2.8 and conflicts with python-wxgtk2.6. An other package (cycle, rather old but for me valuable) requires python-wxgtk2.6 and is removed from my machine when installing gnuradio. Is it neccessary to conflict with python-wxgtk2.6 when python-wxgtk2.8 is required anyway? BTW: The packages wxwidgets2.6 and wxwidgets2.8 (where python-wxgtk lives) does not seem to have problems with each other. Thanks for thinking about it, Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing-proposed-updates APT policy: (500, 'testing-proposed-updates'), (500, 'unstable'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: plymouth: very strange output with the text plugin
Hello again. For me kernel parameter "vga=792" changes nothing. But in a custom bootscript I found out that there is at least no "stairs-effect" when the init-script produces only one line of output. The effect with the boot-messages messing up with plymouths status bar still remains. I also tested bash instead of dash but found no difference. Perhaps the first hint is useful to do further examinations. Christian Meyer ___ NEU: WEB.DE DSL für 19,99 EUR/mtl. und ohne Mindest-Laufzeit! http://produkte.web.de/go/02/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: 575177 is still there in 0.8.2-1
Update pulls in some libdrm-stuff from sid but for me this bug still appears in 0.8.2-1 Christian Meyer ___ NEU: WEB.DE DSL für 19,99 EUR/mtl. und ohne Mindest-Laufzeit! http://produkte.web.de/go/02/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575431: Update: Bug#575431: plymouth: Plymouth seems to hang when console-setup is called during boot
Hello again, with plymouth 0.8.1-1 (amd64, from maintainers site) the behaviour has changed: Boot process no longer hangs as described in the initial bug report. BUT it has become more strange: With console-setup active in rcS.d, plymouth exits AFTER rcS.d (not exactly during or after invocation of console-setup). The first visible text-line is: INIT: Entering runlevel: 2 With console-setup inactive in rcS.d (renamed as decribed), plymouth continues until init calls 'plymouth stop' Program versions: sysvinit 2.87dsf-10 plymouth 0.8.1-1 keyboard-configuration 1.51 Christian Meyer ___ NEU: WEB.DE DSL für 19,99 EUR/mtl. und ohne Mindest-Laufzeit! http://produkte.web.de/go/02/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: I see #575177 in 0.8.1
Sorry for the broken message, something went wrong with reportbug. I re-submit it for better readability: Since the submitter does not respond: I see this bug, too, and its still there in 0.8.1-1 (amd64). My box: Squeeze with now only plymouth from sid. Its a Lenovo R500 with new Intel onboard-graphics and 1280x800 widescreen: lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a42] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a43] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] The grub commandline is: linux /boot/vmlinuz-2.6.32-3-amd64 root=UUID=66f2cf88-2eba-40fe-a701-470bb65426c6 ro quiet splash initrd /boot/initrd.img-2.6.32-3-amd64 When using a different plymouth theme and then hitting 'Esc'-key then the messages from init look like stairs (its a LF without CR): Each message appear vertically shifted. So possibly its related with each other and an issue with line feed in plymouth. 'LANG=C plymouth-log-viewer' gives no information: Failed to open file '/var/log/boot.log': No such file or directory But this probably is something different. My programming skills are very poor so I have no glue how to find out more. If I can provide anything else (screenshots, testing, outputs, ...) please let me know. Christian Meyer ___ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575177: plymouth: I see #575177 in 0.8.1
Package: plymouth Version: 0.8.1-1 Severity: normal Since the submitter does not respond: I see this bug, too, and its still there in 0.8.1-1 (amd64). My box: Squeeze with only plymouth and gnome-shell from sid. Its a Lenovo R500 with new Intel onboard-graphics and 1280x800 widescreen: lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a42] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a43] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] The grub commandline is: linux /boot/vmlinuz-2.6.32-3-amd64 root=UUID=66f2cf88-2eba-40fe-a701-470bb65426c6 ro quiet splash initrd /boot/initrd.img-2.6.32-3-amd64 When using a different plymouth theme and then hitting 'Esc'-key then the messages from init look like stairs (its a LF without CR): Each message appear vertically shifted. So possibly its related with each other and an issue with line feed in plymouth. 'LANG=C plymouth-log-viewer' gives no information: Failed to open file '/var/log/boot.log': No such file or directory But this probably is something different. My programming skills are very poor so I have no glue how to find out more. If I can provide anything else (screenshots, testing, outputs, ...) please let me know. Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-3 The Cairo 2D vector graphics libra ii libdrm-intel1 2.4.18-3 Userspace interface to intel-speci ii libdrm-radeon12.4.18-3 Userspace interface to radeon-spec ii libdrm2 2.4.18-3 Userspace interface to kernel DRM ii libglib2.0-0 2.22.4-1 The GLib library of C routines ii libpango1.0-0 1.26.2-2 Layout and rendering of internatio ii libpng12-01.2.43-1 PNG library - runtime Versions of packages plymouth recommends: ii plymouth-themes-all 0.8.1-1Graphical Boot Animation and Logge Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#575431: plymouth: Plymouth seems to hang when console-setup is called during boot
Package: plymouth Version: 0.7.2-4 Severity: normal The Computer seems to boot up endlessly. The (animated) plymouth screen 'never' finishes while there is no activity on the harddisk (I waited up to 15 minutes). Pressing Esc, then Ctrl-Alt-F3, then Ctrl-Alt-F2 lets the bootsequence continue immediately (without plymouth). I found that 'S21console-setup' in /etc/rcS.d (from packet 'keyboard- configuration') caused the problem. When renaming it to 'K21console-setup' boot process continues normally. I saw that console-setup processes 'readlink /proc/self/fd/2' and think that this causes the problem. Maybe the bug belongs to packet 'keyboard-configuration'. I also saw Debian bugs belonging to splashy (a different boot splash program) related to console-setup which had been fixed in splashy. Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.8.0-2 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-02.22.4-1 The GLib library of C routines ii libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio ii libpng12-0 1.2.43-1 PNG library - runtime ii plymouth-plugins-all0.7.2-4 Graphical Boot Animation and Logge ii plymouth-plugins-fade-i 0.7.2-4 Graphical Boot Animation and Logge ii plymouth-plugins-label 0.7.2-4 Graphical Boot Animation and Logge ii plymouth-plugins-solar 0.7.2-4 Graphical Boot Animation and Logge ii plymouth-plugins-spinfi 0.7.2-4 Graphical Boot Animation and Logge ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime plymouth recommends no packages. Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573947: plymouth-set-default-PLUGIN vs. plymouth-set-default-THEME
use_update_initrd.patch Description: Binary data tags 573947 + patch thanks Looking in the source I found that the script plymouth-set-default-PLUGIN is not in plymouth_0.7.2.orig.tar.gz . plymouth_0.7.2-4.diff.gz contains the file and you fixed #573947 in plymouth-set-default-PLUGIN, which IMO is obsolete (but I don't know if it's needed anywhere). I add a patch that calls 'update-initrd -u' from plymouth-set-default-THEME instead of 'plymouth-update-initrd'. I have seen that plymouth-0.8.0 adds an '--help' option so it's not neccessary to fix this issue here. ( http://www.freedesktop.org/software/plymouth/releases/plymouth-0.8.0.tar.bz2.NEWS ) Christian Meyer ___ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de
Bug#574755: /etc/initramfs-tools/modules fixed it
tags 574755 + patch thanks Patch gives a hint in README.Debian to enable KMS in initrd (and how to do it). Thanks to Guido Günther for giving info and advising me to provide my very first patch ;) Adding i915.modeset=1 as boot parameter to grub doesn't work for me (or I didn't try hard enough) Christian Meyer ___ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de hint_to_enable_KMS_in_initrd.patch Description: Binary data
Bug#574755: /etc/initramfs-tools/modules fixed it
Hello Guido, your hint with /etc/initramfs-tools/modules solved the problem. I added the three lines and now plymouth is fine. If it couldn't be added automatically at least there should be a note e.g. in /usr/share/doc/plymouth/README.Debian (especially to prevent bug-reports like this) A bit confusing is the following (just because you asked for): # plymouth-set-default-theme fade-in # plymouth-set-default-plugin solar Thank you very much, Christian Meyer ___ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#574755: plymouth: unexpectedly disconnected from boot status daemon
Package: plymouth Version: 0.7.2-3 Severity: normal Hi there, on system boot I get an error: "unexpectedly disconnected from boot status daemon" and no graphical screen is shown. I do see the bootsplash during upgrades (see #574720) and on shutdown. Because of unsolved #573947 I did "plymouth-set-default-theme XYZ" and then "update-initramfs -u". So maybe this causes the problem but I don't how to find out. Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.8.0-2 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-02.22.4-1 The GLib library of C routines ii libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio ii libpng12-0 1.2.43-1 PNG library - runtime ii plymouth-plugins-all0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-fade-i 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-label 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-solar 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-spinfi 0.7.2-3 Graphical Boot Animation and Logge ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime plymouth recommends no packages. Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573947: plymouth: 573947 is not gone
Package: plymouth Version: 0.7.2-3 Severity: normal I can not confirm that this bug is gone in 0.7.2-3. At least not on amd64. All mentioned bugs (including the main-bug: /usr/sbin/plymouth-set-default-theme: line 142: /usr/libexec/plymouth/plymouth-update-initrd: No such file or directory) still appear. I purged 0.7.2-2 before installing 0.7.2-3 to be shure that there is no trouble. Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.8.0-2 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-02.22.4-1 The GLib library of C routines ii libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio ii libpng12-0 1.2.43-1 PNG library - runtime ii plymouth-plugins-all0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-fade-i 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-label 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-solar 0.7.2-3 Graphical Boot Animation and Logge ii plymouth-plugins-spinfi 0.7.2-3 Graphical Boot Animation and Logge ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime plymouth recommends no packages. Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#573947: plymouth-set-default-theme: plymouth-update-initrd: No such file or directory
Package: plymouth Version: 0.7.2-2 Severity: normal I found several bugs in plymouth-set-default-theme: A real "normal" bug: # LANG=C; plymouth-set-default-theme fade-in --rebuild-initrd /usr/sbin/plymouth-set-default-theme: line 142: /usr/libexec/plymouth/plymouth-update-initrd: No such file or directory And now several "wishlist" bugs (I appologize for including them, but they are to small to file an extra bugreport): plymouth-set-default-theme should give a short help when run without parameters (e.g. function usage () ). Now it only displays only the default theme (and gives no info about its meaning): # plymouth-set-default-theme fade-in This isn't useful: # plymouth-set-default-theme --help /usr/share/plymouth/themes/--help/--help.plymouth does not exist BTW: This shouldn't happen, too: # LANG=C; plymouth-set-default-theme --rebuild-initrd /usr/share/plymouth/themes//.plymouth does not exist Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.8.0-2 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-02.22.4-1 The GLib library of C routines ii libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio ii libpng12-0 1.2.43-1 PNG library - runtime ii plymouth-plugins-all0.7.2-2 Graphical Boot Animation and Logge ii plymouth-plugins-fade-i 0.7.2-2 Graphical Boot Animation and Logge ii plymouth-plugins-label 0.7.2-2 Graphical Boot Animation and Logge ii plymouth-plugins-solar 0.7.2-2 Graphical Boot Animation and Logge ii plymouth-plugins-spinfi 0.7.2-2 Graphical Boot Animation and Logge ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime plymouth recommends no packages. Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#572693: libdevkit-power-gobject1: everything is fine now
Gnome session adds the missing dependency to upower in 2.28.0-6 (and entered testing some hours ago). See: http://packages.debian.org/changelogs/pool/main/g/gnome-session/current/changelog So: sorry for the noise. Please feel free to close this bugreport. Christian Meyer ___ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#572693: libdevkit-power-gobject1: missing dependency
I found the problem: Upower was not installed. Installing upower (and restarting Gnome) fixed the problem: The symbol is visible again and the error-messages in terminal are gone. So please add a dependency on upower and close this bugreport. Thanks, wondering why it worked before, Christian Meyer ___ WEB.DE DSL: Internet, Telefon und Entertainment für nur 19,99 EUR/mtl.! http://produkte.web.de/go/02/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#572693: libdevkit-power-gobject1: Battery symbol misses (from gnome-power-manager)
Package: libdevkit-power-gobject1 Version: 1:0.9.0+git20100216.b9bb78-2 Severity: normal Hi there, since the last update the battery symbol (from gnome-power-manager) in Gnome notification area misses. Running gnome-power-monitor from Gnome terminal the following messages appear: ~$ gnome-power-manager (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Couldn't enumerate devices: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files (gnome-power-manager:6178): devkit-power-gobject-WARNING **: Error invoking GetAll() to get properties: The name org.freedesktop.UPower was not provided by any .service files TI:18:05:52 TH:0x20920e0FI:gpm-main.c FN:main,250 - Energieverwaltung is already running in this session. Traceback: gnome-power-manager [0x41bf44] gnome-power-manager [0x410301] /lib/libc.so.6(__libc_start_main+0xfd) [0x7fa92327aabd] gnome-power-manager [0x408839] Since there was no update in gnome-power-manager and the messages blame devkit-power-gobject I think the bugreport belongs to upower. My system: Lenovo R500 Laptop with tp_smapi and sysfs installed. If I can provide additional information please let me know. Thank you Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-trunk-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libdevkit-power-gobject1 depends on: ii libc62.10.2-6Embedded GNU C Library: Shared lib ii libdbus-1-3 1.2.20-2simple interprocess messaging syst ii libdbus-glib-1-2 0.84-1 simple interprocess messaging syst ii libglib2.0-0 2.22.4-1The GLib library of C routines ii libusb-0.1-4 2:0.1.12-14 userspace USB programming library libdevkit-power-gobject1 recommends no packages. libdevkit-power-gobject1 suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#565188: plymouth: no bootsplash at all
Package: plymouth Version: 0.7.2-1 Severity: important Hi there, after installing plymouth there is no bootsplash at all. Even the textmode of plymouth is not visible. The system boots as usual and displays the usual messages, there is no hint or message about plymouth. With no documentation available (#546155) I searched for it and tried various boot-options (none, rhgb, vga=..., splash, ...) but the result is the same. Somewhere I read that my video chipset might not work but I would expect the VESA-mode and the non-graphical fallback-mode to be visible. lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a42] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a43] (rev 07) lspci -knn: Subsystem: Lenovo Device [17aa:20e5] Splashy has been installed prior to plymouth but I removed it completely. The initrd is build without an error. When additional information is needed, please let me know. Thank you Christian Meyer -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages plymouth depends on: ii initramfs-tools 0.93.4 tools for generating an initramfs ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.2-2 GNU C Library: Shared libraries ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.8.0-2 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-02.22.3-1 The GLib library of C routines ii libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio ii libpng12-0 1.2.41-1 PNG library - runtime ii plymouth-plugins-all0.7.2-1 Graphical Boot Animation and Logge ii plymouth-plugins-fade-i 0.7.2-1 Graphical Boot Animation and Logge ii plymouth-plugins-label 0.7.2-1 Graphical Boot Animation and Logge ii plymouth-plugins-solar 0.7.2-1 Graphical Boot Animation and Logge ii plymouth-plugins-spinfi 0.7.2-1 Graphical Boot Animation and Logge ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime plymouth recommends no packages. Versions of packages plymouth suggests: ii gdm 2.20.10-1 GNOME Display Manager -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#546711: Missleading dialogue text
Hello again, Christian Perrier schrieb am 15.09.2009 19:07:39: > This has nothing to do with debconf.> > The grub packages use ucf to handle prompting about actions related to > the modified configuration file handling. Thanks for reassigning - I didn't know it. > Description: What would you like to do about ${BASENAME}? > A new version of configuration file ${FILE} is available, but the version > installed > currently has been locally modified. > Description-de.UTF-8: Wie wollen Sie mit ${BASENAME} verfahren? > Eine neue Version der Konfigurationsdatei ${FILE} ist verfügbar, aber die > installierte Version wurde verändert. > I think that nothing could be clearer than it is currently. It is > perfectly clear this is about a modified configuration file. I agree if these messages were displayed. Please see my screenshot at http://www.chbmeyer.de/546711.png It says: Configuring grub.pc What would you like to do about grub? But this important comment is missing: A new version of configuration file ${FILE} is available, but the version installed currently has been locally modified. So it still is not clear enough. Christian Meyer Neu: WEB.DE Doppel-FLAT mit Internet-Flatrate + Telefon-Flatrate für nur 19,99 Euro/mtl.!* http://produkte.web.de/go/02/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#546711: Missleading dialogue text
Package: debconf Version: 1.5.27 Severity: critical Usually the severity of a bug like this would be "wishlist" to "minor" (since it isn't really a bug at all) but if a programm leads the user to wrong decissions and other software is affected (important conf-files are overriden = data loss) its critical. http://www.debian.org/Bugs/Developer#severities If you disagree with it (or its only a problem in the german translation), please feel free to change severity. I usually use Synaptic but I think the problem is related to debconf since the window-title said so. Debconf uses to interact with the user on package upgrade if there are modified configuration-files. In my case I modified /etc/default/grub before and debconf aks if I want to keep my modified conf-file or if I want to install the maintainers version. But the message box really is missunderstandable (at least in german - I don't know how to display or read the message in english): It says: "Konfiguriere grub.pc Wie wollen Sie mit grub verfahren? aktuell installierte Version behalten ... Version des Paket-Betreuers installieren" which means in english (my poor translation): "configuring grub.pc What do you want to to with grub? keep installed Version ... install version of package-maintainer" Of course now I know that debconf means the file /etc/default/grub, but the very first time it happened, I thought that debconf means the _package_ "grub" (since I know the package name - I didn't remember the conffile name)and I choosed "install version of package-maintainer" because I wanted to update to the current version of grub. So its really bad because my modified conf-file is lost (in case of grub it is even worse). Please change the message text to something like "What do you want to happen to the conffile /etc/default/grub" or at least otherwise make clear that debconf means the conffile and not the whole package. Christian Meyer __ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#225169: [Linux-wlan-ng-devel] Bug#225169: linux-wlan-ng: Should build a .udeb (?)
Hello there, I wasn't able to build a lwng-udeb, it's too hard for me. Source, building, configfiles or binary-only is confusing me and I can't think clearly any more. But I managed to install Lenny with d-i using my prism2_usb device (even using WEP). So I write down how I did it. Perhaps someone else can benefit from it or possibly build the udeb (I think it's not too much work). I don't know if all modules are neccessary (I read somewhere that orinocco (I think) can handle prism_2 devices except the prism2_usb) so perhaps it is possible to save some some bytes, but I leave them in my description because of completeness. 1. Download the smallest d-i iso available (mini.iso) e.g. http://ftp.nl.debian.org/debian/dists/lenny/main/installer-i386/current/images/netboot/mini.iso 2. Build kernel modules for the installer kernel You need linux-wlan-ng-source, module-assistant and linux-headers-2.6.26-1-468 and /usr/src/linux-wlan-ng-modules-2.6.26-1-486_0.2.9+dfsg-2_i386.deb will be created: aptitude install linux-wlan-ng-source linux-headers-2.6.26-1-486 m-a -l 2.6.26-1-486 build linux-wlan-ng 3. Extract vmlinuz and initrd.gz from the iso-file 4. Create a temporary directory and put the content of initrd (inside initrd.gz) there. Be shure that you extracted the empty directories (e.g. /proc, root) too. 5. Just copy a few files from linux-wlan-ng and the created (see 2.) modules into the temporary directory. (See filelist.lwng, total: 450kb) 6. Now you must modify four files in /lib/modules/2.6.26-1-486 (the d-i kernel must know where to find the kernel-module, see the files attached as modules.alias.prism2, modules.dep.prism2, modules.pcimap.prism2 and modules.usbmap.prism2) 7. Create a new initrd by executing in the temporary folder: find . | cpio --create --'format=newc' | gzip >../initrd.gz 8. Place kernel and initrd.gz somewhere you can acces them via your bootloader and boot them (no need for a CD or something else but your WEP key) Install your Lenny system ;-) 9. If you want to use prism2_usb in your freshly installed system, you must install linux-wlan-ng, linux-wlan-ng-source and the matching linux-headers of your installed kernel BEFORE you finish installation and reboot in your new system (eg. by pressing F2 when d-i says "ready, please reboot"): apt-install linux-wlan-ng linux-wlan-ng-source linux-headers- 10. Having some problems with "in-target m-a -l build linux-wlan-ng", I created the modules for my lenny-system after rebooting, but I think for lwng-udeb there should be a way creating and installing them from d-i using "in-target". So I used: "m-a a-i linux-wlan-ng" in my freshly installed lenny There is no need to configure something in your new lenny system since d-i copied the configuration into the target system. After the installation I had an bug ("Warning: Fake start-stop-daemon called, doing nothing" and therefore was not able to startx) which isn't neccessarily related to lwng. However, it could be solved with: mv /sbin/start-stop-daemon.REAL /sbin/start-stop-daemon Thanks so long and sorry for not providing an ubdeb. Christian Meyer ___ DSL zum Nulltarif + 20 Euro Extraprämie bei Online-Bestellung über die DSL Freundschaftswerbung! http://dsl.web.de/?ac=OM.AD.AD008K15279B7069a filelist.lwng Description: Binary data modules.usbmap.prism2 Description: Binary data modules.pcimap.prism2 Description: Binary data modules.dep.prism2 Description: Binary data modules.alias.prism2 Description: Binary data
Bug#225169: [Linux-wlan-ng-devel] Bug#225169: linux-wlan-ng: Should build a .udeb (?)
Enrico Tassi <[EMAIL PROTECTED]> schrieb am 02.09.2008 02:18:59: > > So: Is there anything I can do to improve this long standing issue? What is > > the problem with linux-wlan-ng?, where can I start reading?, what should be > > done to integrate it? > > I'm pretty ignorant about the debian installer, but I think what you are > looking for is a udeb: > http://d-i.alioth.debian.org/doc/talks/debconf6/paper/index.html#id2535182 > The svn repository where the packaging work is done is: > http://svn.debian.org/viewsvn/linux-wlan-ng/ Thanks so far, it seens to be a good starting point. I'll have a look at this, other udebs and how d-i works. So I think the first step is to get get the prism2_usb working somehow by creating a local udeb as described in "3.6. Using localudebs" > Not sure there release team will accept such a change in the lwng package, > we are already in freeze and an udeb is a new package. No problem with it, so it might be Lenny+1. Five years after the initial bugreport it schould be no problem to wait a bit longer. Christian Meyer _ In 5 Schritten zur eigenen Homepage. Jetzt Domain sichern und gestalten! Nur 3,99 EUR/Monat! http://www.maildomain.web.de/?mc=021114 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#225169: linux-wlan-ng: Should build a .udeb (?)
Hello there, I'm using a prism2_usb on lenny and it works fine with linux-wlan-ng (WEP activated). The only thing that annoys me is that I can't use debian-installer because it doesn't supports linux-wlan-ng, so I have to setup my system with debootstrap (and I did it often during the last years). I'm not a programmer, developer or so, but I'm able to read manuals and howto's and I want my prism2_usb to work with debian-installer. So: Is there anything I can do to improve this long standing issue? What is the problem with linux-wlan-ng?, where can I start reading?, what should be done to integrate it? Christian Meyer ___ Jetzt neu! Schützen Sie Ihren PC mit McAfee und WEB.DE. 30 Tage kostenlos testen. http://www.pc-sicherheit.web.de/startseite/?mc=00 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#497323: Kernel update should update m-a created modules too
Package: linux-latest-2.6 Version: 15 Severity: wishlist Hello there, I'm running Lenny (testing) with linux-image-2.6-k7 installed (depending from linux-image-2.6-686). Using a prism2-USB WLAN adapter I need to use linux-wlan-ng. The kernel modules for it are not shipped with the linux-image so I need to compile and install it using module-assistant. Updating linux-image unfortunately causes WLAN not to work any more until I build new modules for the updated kernel (I often forget to do so and wonder why Internet doesn't work). But then: building modules without linux-headers (and without access to the Internet to download them) is a bit complicated. Okay, I should have been updated linux-headers too. I think updating the kernel automatically should update (in postinst) user-specific modules (=build new ones) not included in the linux-image. Users who have compiled their own modules usually have m-a and the sources of the corresponding modules installed so: m-a -l VERSION_OF_NEW_KERNEL a-i allu -t builds exactly those modules which has been build for an older kernel version and devices should seamlessly work with the updated kernel. Christian Meyer __ "Hostage" mit Bruce Willis kostenlos anschauen! Exklusiv für alle WEB.DE Nutzer. http://www.blockbuster.web.de -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#490584: Boot-delay (probably while loading png - graphic)
Felix Zielcke <[EMAIL PROTECTED]> schrieb am 26.08.2008 10:49:33: > Bean from upstream made a buffered file read patch for the graphic > modules (png,tga,jpeg) [0] > Without it the pictures are read one byte at a time. > It has been commited upstream on 1st August, so it'll be only on our > next trunk upload and not in lenny. Thanks for the assistance compiling the package. It now works fine and fast (less than 3 sec.) and its time for me to say grub legacy goodbye. Christian Meyer _ Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! http://smartsurfer.web.de/?mc=100071&distributionid=0066 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#490584: Boot-delay (probably while loading png - graphic)
Robert Millan <[EMAIL PROTECTED]> schrieb am 19.07.2008 17:56:28: > On Sat, Jul 12, 2008 at 11:11:35PM +0200, Christian Meyer wrote: > > if background_image /boot/grub/debian-blueish-wallpaper-640x480.png ; then > > So it seems that `background_image' is eating your extra time. Does it boot > faster if you disable it? Yes it does: # if background_image /boot/grub/debian-blueish-wallpaper-640x480.png ; then # set color_normal=black/black # set color_highlight=magenta/black # else set menu_color_normal=cyan/blue set menu_color_highlight=white/blue # fi takes about 2.5 - 3 sec to display the text-only menu (rest of grub.cfg unchanged, so the modules: gfxterm, vbe and png are loaded). Writing this I remenber having some trouble with my graphics-chipset using svgalib (I worked around using VESA-mode), so I think this information could be useful: Motherboard: Gigabyte GA-7VKML KM266 Video on board: VIA ProSavage™ KM266 AGPset /var/log/xorg.0.log says: (**) | |-->Device "S3 Inc. VT8375 [ProSavage8 KM266/KL266]" (--) Chipset ProSavageDDR found Christian Meyer Ihre Messenger, Communities und E-Mails jetzt in einem Programm! WEB.DE MultiMessenger http://www.produkte.web.de/messenger/?did=3071 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#490584: Boot-delay (probably while loading png - graphic)
Package: grub-pc Version: 1.96+20080704-1 (and before) Severity: important After fixing #477083 there still is a boot-delay loading grub2 (compared to grub-legacy). Using real hardware (no qemu or so): AMD Duron 1200 (K7) My grub2 boot-timing is the following: (with some "echo"-calls as Robert Millan suggested) 0 - 2 sec.: "Welcome to GRUB!", some flickering (loading gfxterm, vbe) the first three "echo"-calls flickers but are not readable (gone extreme fast) 2 - 5 or 6 sec: displaying the two lines: "Before insmod png" _and_ "After insmod png" (appear together) 6 - ... sec: the last three "echo"-calls flickers but are not readable (gone extreme fast) displaying graphical menu I think the middle-part (2 - 6 sec) is too long and needs improvement. See my grub.cfg for the placement of the "echo"-calls: ### BEGIN /etc/grub.d/00_header ### set default=2 set timeout=5 set root=(hd0,9) search --fs-uuid --set a7abc87e-7b9d-4585-b292-fdd1fc33f1b4 if font /usr/share/grub/ascii.pff ; then set gfxmode=640x480 echo "Before insmod gfxterm" insmod gfxterm echo "After insmod gfxterm, before insmod vbe" insmod vbe echo "After insmod vbe" terminal gfxterm fi ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set root=(hd0,9) search --fs-uuid --set a7abc87e-7b9d-4585-b292-fdd1fc33f1b4 echo "Before insmod png" insmod png echo "After insmod png" if background_image /boot/grub/debian-blueish-wallpaper-640x480.png ; then echo "bgimage" set color_normal=black/black set color_highlight=magenta/black else echo "no bgimage" set menu_color_normal=cyan/blue set menu_color_highlight=white/blue fi ### END /etc/grub.d/05_debian_theme ### echo "Now OS-list:" Christian Meyer _ WEB.DE schenkt Ihnen jeden Monat einen hochkarätigen Blockbuster von maxdome! Jetzt anmelden unter http://www.blockbuster.web.de -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#477083: grub-pc: Is excruciatingly slow when compared to grub (legacy)
I can confirm this behaviour, especially "takes 10 seconds to get to the menu" (#476479) on REAL Hardware. I'm cainloading grub2 via grub legacy [kernel (hd0,8)/boot/grub/core.img] My hardware: AMD Duron 1200 (K7) Motherboard: Gigabyte GA-7VKML KM266 256 MB DDR-RAM On-Board LAN (Build in RTL8100L Chipset) Sound on Board (AC97) Video on board, /var/log/xorg.0.log says: (**) | |-->Device "S3 Inc. VT8375 [ProSavage8 KM266/KL266]" (--) Chipset ProSavageDDR found 2 Harddisks, 9 + 2 Partitions, various filesystems BIOS: Licensed AMI BIOS, 2M bit Flash ROM Christian Meyer _ Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! http://smartsurfer.web.de/?mc=100071&distributionid=0066 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#467025: grub-pc: symlink (/vmlinuz) on reiserfs: error: file not found
Package: grub-pc Version: 1.96+20080219-2 Severity: normal I'm using grub-pc installed on hda9 and chainloaded from grub legacy on hda/hda1. hda3 (Debian Etch) and hda9 (Debian Sid) have reiserfs (v3.6), both systems are configured to use the symlinks vmlinuz and initrd.img in their root directories (linking to the actual kernel and ramdisk). This works well using grub legacy from hda1 (so the symlinks are okay). In grub2 both partitions are recognized (ls and tab completion) as reiserfs. Selecting Sid (hda9) works as expected, Selecting Etch (hda3) produces the error: You need to load the ramdisk first. Typing on grub commandline: linux (hd0,3)/vmlinuz makes error: file not found Typing: linux (hd0,3)/boot/vmlinuz-2.6.18-6-k7 loads the kernel. -- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-6-k7 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Christian Meyer -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]