Re: [Bug 146918] Re: Poor descriptions for some applications in Startup Programs window

2009-07-01 Thread Matthias Urlichs
t it should say. > "GNOME settings daemon" - "System process used to manage configurations" s/used to manage/for managing/ ? > "Network manager" - "Network management" > "Power manager" - "Power management" That doesn't conve

[Bug 339991] [NEW] pin length is insufficient: need to allow eight digits

2009-03-09 Thread Matthias Urlichs
Public bug reported: Binary package hint: network-manager NM allows me to enter a 4-digit PIN. Real-world PINs may be four to eight digits. ** Affects: network-manager (Ubuntu) Importance: Undecided Status: New -- pin length is insufficient: need to allow eight digits https://bu

Re: [Bug 281580] Re: [Intrepid] New Bluetooth Wizard fails to pair with Apple Keyboard...

2008-10-18 Thread Matthias Urlichs
(but not limited to) "--connect". If there's no documented way to replace hidd in those cases, that's a regression which NEEDS to be fixed! -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://s

[Bug 271202] Re: Intrepid alpha: cd interaction between hal, grip, and eject

2008-10-13 Thread Matthias Urlichs
With the current version (2008-10-13), things are even worse. Basically, any ejection (eject, push the button) of an audio CD-ROM will immediately cause HAL to re-insert the thing. Sorry, but that's an unacceptable regression. -- Intrepid alpha: cd interaction between hal, grip, and eject https

[Bug 271202] Re: Intrepid alpha: cd interaction between hal, grip, and eject

2008-10-13 Thread Matthias Urlichs
Setting Importance to High since this bug destroys CDs (and/or fingers), because it closes the tray on people who try to remove their media. ** Changed in: hal (Ubuntu) Importance: Undecided => High -- Intrepid alpha: cd interaction between hal, grip, and eject https://bugs.launchpad.net/bugs

Re: [Bug 154589] Re: Live CD 7.10 stalls at bluetooth init

2008-10-26 Thread Matthias Urlichs
't try that.) -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de v4sw7$Yhw6+8ln7ma7u7L!wl7DUi2e6t3TMWb8HAGen6g3a4s6Mr1p-3/-6 hackerkey.com - - In /users3 did Kubla Kahn A stately pleasure

[Bug 211252] Re: Cannot receive files using bluetooth

2008-10-29 Thread Matthias Urlichs
Apache isn't required for Bluetooth file sharing, just for WebDAV file sharing. For Jaunty, this package should be split — different problem, I'll add a bug for it. ** Summary changed: - Cannot recieve files using bluetooth + Cannot receive files using bluetooth -- Cannot receive files using b

[Bug 290966] [NEW] Split the package

2008-10-29 Thread Matthias Urlichs
Public bug reported: Binary package hint: gnome-user-share Gnome-user-share is responsible for both Bluetooth and WebDAV file sharing. The former is a good idea for Netbooks and similar PDAish devices. The latter pulls in Apache, which is not. This package should therefore be split. ** Affects:

[Bug 283064] Re: intrepid: bluetooth can not receive files

2008-10-31 Thread Matthias Urlichs
>> gnome-user-share install Apache (apache2 apache2-mpm-worker apache2-utils >> apache2.2-common) >> in a Desktop environment. >> I don't see it one logical solution to be required to install apache to have >> bluetooth working gnome-user-share enables sharing via Bluetooth and WebDAV. Right now

[Bug 283316] Re: opening /dev/scd0 causes tray to be closed

2008-10-22 Thread Matthias Urlichs
Mmh. I'd say that this is actually a feature, I've got no problem with that. If you set O_NDELAY when opening, the tray does not get closed. That's as it should be. The previous description was correct, -- opening /dev/scd0 causes tray to be closed https://bugs.launchpad.net/bugs/283316 You rec

[Bug 283316] Re: opening /dev/scd0 causes tray to be closed

2008-10-22 Thread Matthias Urlichs
savvas: No. Udev doesn't open devices. You mean HAL, but see my previous comment. ** Summary changed: - opening /dev/scd0 causes tray to be closed + CDROM_DRIVE_STATUS ioctl causes tray to be closed -- CDROM_DRIVE_STATUS ioctl causes tray to be closed https://bugs.launchpad.net/bugs/283316 You

[Bug 283316] Re: opening /dev/scdN causes tray to be closed

2008-10-23 Thread Matthias Urlichs
I can reproduce it 100% when ripping CDs (using my own script, which calls cdparanoia+eject). At other times, it's intermittent and seems to depend on the machine's load, which doesn't really surprise me. -- opening /dev/scdN causes tray to be closed https://bugs.launchpad.net/bugs/283316 You r

[Bug 249964] Re: aacraid driver stalls on high-load SMP machines

2008-07-18 Thread Matthias Urlichs
Update: my uniprocessor band-aid, besides significantly decreasing performance, resulted in an eventual CPU soft-hang (all of them) some hours later, so this workaround obviously doesn't. -- aacraid driver stalls on high-load SMP machines https://bugs.launchpad.net/bugs/249964 You received this b

[Bug 271318] [NEW] Python: bus error loading unicodedata module

2008-09-17 Thread Matthias Urlichs
Public bug reported: Standard Hardy installation on amd64. [EMAIL PROTECTED]:~# python Python 2.5.2 (r252:60911, Jul 31 2008, 17:31:22) [GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import unicodedata Bus error [EMAIL PRO

[Bug 271318] Re: Python: bus error loading unicodedata module

2008-09-17 Thread Matthias Urlichs
** Changed in: python2.5 (Ubuntu) Importance: Undecided => High -- Python: bus error loading unicodedata module https://bugs.launchpad.net/bugs/271318 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu

[Bug 271318] Re: Python: bus error loading unicodedata module

2008-09-17 Thread Matthias Urlichs
Looks like a Python rebuild fixes the problem. -- Python: bus error loading unicodedata module https://bugs.launchpad.net/bugs/271318 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.c

[Bug 46118] Re: cast() no longer allows array types as the target type

2008-08-09 Thread Matthias Urlichs
This is now supported natively. Cf. http://docs.python.org/lib/ctypes- pointers.html#ctypes-pointers Assigning to an integer index changes the pointed to value: >>> print i c_long(99) >>> pi[0] = 22 >>> print i c_long(22) >>> It is also possible to use indexes different from 0, but you must know

Re: [Bug 271318] Re: Python: bus error loading unicodedata module

2008-09-24 Thread Matthias Urlichs
Hi, Matthias Klose: > can't yet reproduce it > Hmmm. Seems to have been some sort of local corruption on that machine. :-/ -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de

[Bug 249964] [NEW] aacraid driver stalls on high-load SMP machines

2008-07-18 Thread Matthias Urlichs
Public bug reported: Under load, this happens rather often: Jul 18 22:55:24 nun kernel: [86674.467410] aacraid: Host adapter abort request (0,0,2,0) Jul 18 22:55:24 nun kernel: [86674.467487] aacraid: Host adapter abort request (0,0,3,0) Jul 18 22:55:24 nun kernel: [86674.467617] aacraid: Host

[Bug 206549] Re: [Hardy] bluetooth-applet fails to start

2008-08-19 Thread Matthias Urlichs
This happens when hcid dies. Try "sudo /usr/sbin/hcid -d -n" and report what it says. -- [Hardy] bluetooth-applet fails to start https://bugs.launchpad.net/bugs/206549 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mail

[Bug 339991] [NEW] pin length is insufficient: need to allow eight digits

2009-03-18 Thread Matthias Urlichs
Public bug reported: Binary package hint: network-manager NM allows me to enter a 4-digit PIN. Real-world PINs may be four to eight digits. ** Affects: network-manager (Ubuntu) Importance: Undecided Status: New -- pin length is insufficient: need to allow eight digits https://bu

[Bug 249964] Re: aacraid driver stalls on high-load SMP machines

2008-08-28 Thread Matthias Urlichs
The current 2.6.27-pre4 kernel does NOT fix the problem. It has existed for some time; my conjecture is that due to their greater internal I/O efficiency, newer kernels are far better at sending a lot of requests to the disk controller, thereby overflowing its internal queue. The Dapper kernel wo

[Bug 249964] Re: aacraid driver stalls on high-load SMP machines

2008-08-28 Thread Matthias Urlichs
NB: I will test the fix/workaround from http://bugzilla.kernel.org/show_bug.cgi?id=11120 today. -- aacraid driver stalls on high-load SMP machines https://bugs.launchpad.net/bugs/249964 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 249964] Re: aacraid driver stalls on high-load SMP machines

2008-08-29 Thread Matthias Urlichs
The fix works. Please apply. Reduce AACRAID hardware queue size (kernel bug#11120) Signed-Off-By: Mathias Urlichs <[EMAIL PROTECTED]> diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h index 73916ad..b1b10b3 100644 --- a/drivers/scsi/aacraid/aacraid.h +++ b/drivers/scs

[Bug 57011] Problem updating

2006-08-20 Thread Matthias Urlichs
Public bug reported: I just tried updating one of my test systems to Edgy. Unfortunately ..: Setting up python2.4-minimal (2.4.3-7ubuntu2) ... Linking and byte-compiling packages for runtime python2.4... Traceback (most recent call last): File "/usr/bin/pycentral", line 1325, in ? main()

[Bug 57011] Re: Problem updating

2006-08-20 Thread Matthias Urlichs
Removing python2.3 didn't help, only purging it did. Apparently, /usr/bin/pycentral:read_dpkg_status() needs to be taught to skip removed packages. also, /usr/share/python/runtime.d/python-gnome2.rtupdate: line 4: pyversions: command not found ... which seems to be missing from the python-centr

[Bug 57011] Re: Problem updating

2006-08-20 Thread Matthias Urlichs
Duh, so pyversions is installed by new versions of the python .deb. ... which happens *way* too late, unfortunately. I'll leave a correct solution to doko. ;-) -- Problem updating https://launchpad.net/bugs/57011 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.co

[Bug 57025] uninstallable

2006-08-20 Thread Matthias Urlichs
Public bug reported: aptitude dist-upgrade: Unpacking libiv1 (from .../libiv1_1.1.3-5.3ubuntu1_i386.deb) ... dpkg: error processing /var/cache/apt/archives/libiv1_1.1.3-5.3ubuntu1_i386.deb (--unpack): trying to overwrite `/usr/lib/libIV.so.1.1.3', which is also in package ivtools-interviews *

[Bug 57025] Re: uninstallable

2006-08-20 Thread Matthias Urlichs
ivtools-interviews is already the newest version. -- uninstallable https://launchpad.net/bugs/57025 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 57025] Re: uninstallable

2006-08-20 Thread Matthias Urlichs
Dapper to Edgy. -- uninstallable https://launchpad.net/bugs/57025 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 57035] uninstallable: 'rep' manpage is also in librep9.deb

2006-08-20 Thread Matthias Urlichs
Public bug reported: Unpacking replacement librep9 ... dpkg: error processing /var/cache/apt/archives/librep9_0.17-12ubuntu1_i386.deb (--unpack): trying to overwrite `/usr/share/man/man1/rep.1.gz', which is also in package rep dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors wer

[Bug 57225] "tar --null" complains about NULs in filenames

2006-08-22 Thread Matthias Urlichs
Public bug reported: $ fakeroot dh_builddeb tar: -: file name read contains nul character strace-ing the thing yields: [pid 30927] execve("/bin/tar", ["tar", "-cf", "-", "-T", "-", "--null", "--no-recursion"], [/* 58 vars */]) = 0 Duh? Say what? That's exactly the point, isn't it? That error

[Bug 57225] Re: "tar --null" complains about NULs in filenames

2006-08-22 Thread Matthias Urlichs
Actually, reading that Debian report, it seems that dh_builddeb should just have a changed argument order. ** Changed in: tar (Ubuntu) Sourcepackagename: tar => debhelper -- "tar --null" complains about NULs in filenames https://launchpad.net/bugs/57225 -- ubuntu-bugs mailing list ubuntu-bugs@

[Bug 57225] Re: "tar --null" complains about NULs in filenames

2006-08-22 Thread Matthias Urlichs
** Bug watch added: Debian Bug tracker #384163 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=384163 ** Also affects: debhelper (upstream) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=384163 Importance: Unknown Status: Unknown ** Changed in: debhelper (Ubuntu) Importa

[Bug 13120] Re: update-lilo creates labels with spaces

2006-08-28 Thread Matthias Urlichs
Sorry about the missing answer. Works now, thanks. -- update-lilo creates labels with spaces https://launchpad.net/bugs/13120 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 57035] Re: [Bug 57035] Re: uninstallable: 'rep' manpage is also in librep9.deb

2006-08-29 Thread Matthias Urlichs
cts:+Replaces: on older librep* packages, so that replacing their binary works regardless of which installation happens first -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] -- uninstallable: 'rep' manpage is also in librep9.deb https://launchpad.ne

[Bug 57035] Re: [Bug 57035] Re: uninstallable: 'rep' manpage is also in librep9.deb

2006-08-30 Thread Matthias Urlichs
sr/bin/rep from librep, add appropriate Replaces: and Conflichts: headers to rep, rebuild, be happy. ;-) I can look over your current version, if you'd like; just send me the diffs. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] -- uninstallable: 'rep'

[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-30 Thread Matthias Urlichs
** Changed in: tiger (Ubuntu) Status: Unconfirmed => Confirmed -- Tiger won't run when using varrun filesystem https://launchpad.net/bugs/44329 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 44329] Re: Tiger won't run when using varrun filesystem

2006-08-30 Thread Matthias Urlichs
I have uploaded a fixed package as an interim solution. Changes: tiger (1:3.2.1-31ubuntu1) edgy; urgency=low . * Auto-create the work directory if it's in /var/run * Move the default work directory to /var/lib/tiger/work. - See launchpad bug #44329 * Clean directories correctly wh

[Bug 50041] Re: System lock on upgrade or new install

2006-10-19 Thread Matthias Urlichs
Saw the same thing just now. wvdialconf was trying to figure out what's behind my /dev/ttyS2. What actually is behind that device is a Bluetooth adapter, which confused wvdialconf. So (according to strace) it did a bunch of strange things with that device, and then busy-waited forever in a select(

[Bug 50041] Re: System lock on upgrade or new install

2006-10-19 Thread Matthias Urlichs
** Changed in: wvdial (Ubuntu) Status: Needs Info => Confirmed -- System lock on upgrade or new install https://launchpad.net/bugs/50041 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 44335] Re: IMAP+SSL/TLS are disabled

2006-09-01 Thread Matthias Urlichs
** Bug watch added: Debian Bug tracker #286672 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=286672 ** Also affects: mail-notification (upstream) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=286672 Importance: Unknown Status: Unknown -- IMAP+SSL/TLS are disabled https:

[Bug 58731] needs Provides: sysvinit

2006-09-03 Thread Matthias Urlichs
Public bug reported: ubuntu-minimal depends on sysvinit, which upstart replaces without an appropriate Provides: header. That makes ubuntu-minimal uninstallable, which (if one blindly removes it) will cause all the packages it has dragged in during upgrades to be removed (if using aptitude), whic

[Bug 58731] Re: [Bug 58731] Re: needs Provides: sysvinit

2006-09-03 Thread Matthias Urlichs
; That's not mutually exclusive, but OK. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] -- needs Provides: sysvinit https://launchpad.net/bugs/58731 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 55409] Re: [Bug 55409] Re: Typo in Ubuntu Documentation

2006-09-07 Thread Matthias Urlichs
Hi, Richard Johnson: > if removing "wird" fixes this, can I/we get some confirmation, and I > will gladly change it and apply the fix. So it should look like: > > Daher wird Ubuntu immer unentgeltlich zu erhalten sein > > Is this correct? > Yes. -- Matthias Urli

[Bug 62020] nscd ignores /etc/hosts

2006-09-23 Thread Matthias Urlichs
Public bug reported: My /etc/hosts contains the entry 192.109.102.54 mac.urlichs.noris.de My /etc/nsswitch.conf contains the entry hosts:files dns I would expect that starting nscd, or not, would not have any effect except performance. This log clearly shows otherwise. The security implica

[Bug 64324] usplash screen corrupted on old iBook

2006-10-06 Thread Matthias Urlichs
Public bug reported: On my old iBook, 800x600(?) resolution, usplash shows a corrupt display. Apparently it thinks that my screen is 1024x wide. ** Affects: usplash (Ubuntu) Importance: Undecided Status: Unconfirmed -- usplash screen corrupted on old iBook https://launchpad.net/bu

[Bug 64327] No console stdout when booting the LiveCD with "single"

2006-10-06 Thread Matthias Urlichs
Public bug reported: I just booted my iBook with the Edgy Beta live CD, with "live-nosplash debug single", since usplash doesn't work there (#64324). Unfortunately, while I did get normal-looking kernel output, there is no visible stdout from any user processes whatsoever. Wherever stdout is dire

[Bug 64327] Re: No console stdout when booting the LiveCD with "single"

2006-10-06 Thread Matthias Urlichs
I do get a shell prompt. Eventually. But no non-kernel messages before that. Which is a problem when the system doesn't manage to get there (like on said PPC machine). -- No console stdout when booting the LiveCD with "single" https://launchpad.net/bugs/64327 -- ubuntu-bugs mailing list ubuntu

[Bug 64327] Re: No console stdout when booting the LiveCD with "debug single"

2006-10-06 Thread Matthias Urlichs
I *have* removed "quiet" from the command line. ** Summary changed: - No console stdout when booting the LiveCD with "single" + No console stdout when booting the LiveCD with "debug single" ** Description changed: I just booted my iBook with the Edgy Beta live CD, with "live-nosplash debug

[Bug 64327] Re: No console stdout when booting the LiveCD with "debug single"

2006-10-06 Thread Matthias Urlichs
NB: saying "debug" should override "quiet", because there are boot managers which don't allow you to remove options -- just add to them. -- No console stdout when booting the LiveCD with "debug single" https://launchpad.net/bugs/64327 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com htt

[Bug 49670] Re: problem with USB backend

2006-10-08 Thread Matthias Urlichs
It seems that the USB backend tries the wrong printers. It tries /dev/usblp0 and /dev/usb/lp[0-15]. However, udev on my machine creates the printer as usblp[0-...]. There are no special rules, so the device name seems to come from the kernel. Thus, the second printer is never found. -- problem

[Bug 49670] Re: problem with USB backend

2006-10-08 Thread Matthias Urlichs
turns out to be a different problem -- never mind. -- problem with USB backend https://launchpad.net/bugs/49670 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 64725] USB driver cannot find printers if usblp0 is disconnected

2006-10-08 Thread Matthias Urlichs
Public bug reported: The USB printer discovery code falls back to the /dev/usb/lp# naming scheme if it cannot find the character device file /dev/usblp0 or /dev/usb/isblp0. However: - Current Linux kernels + udev use /dev/usblp# - Current udev removes device nodes which do not exist any more The

[Bug 64725] Upstream bug

2006-10-08 Thread Matthias Urlichs
http://www.cups.org/str.php?L2017 (not linkable by Launchpad) -- USB driver cannot find printers if usblp0 is disconnected https://launchpad.net/bugs/64725 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 64725] patch

2006-10-08 Thread Matthias Urlichs
The attached patch fixes the problem for me. ** Attachment added: "Printer enumeration patch" http://librarian.launchpad.net/4705064/15_usb-devname.dpatch -- USB driver cannot find printers if usblp0 is disconnected https://launchpad.net/bugs/64725 -- ubuntu-bugs mailing list ubuntu-bugs@li

[Bug 64725] Re: USB driver cannot find printers if usblp0 is disconnected

2006-10-08 Thread Matthias Urlichs
** Description changed: The USB printer discovery code falls back to the /dev/usb/lp# naming scheme if it cannot find the character device file /dev/usblp0 or - /dev/usb/isblp0. + /dev/usb/usblp0. However: - Current Linux kernels + udev use /dev/usblp# - Current udev removes device no

[Bug 64725] Complete patch

2006-10-08 Thread Matthias Urlichs
This is the complete incremental patch to apply on top of cupsys_1.2.4-2ubuntu2.diff. -- USB driver cannot find printers if usblp0 is disconnected https://launchpad.net/bugs/64725 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 64725] duh

2006-10-08 Thread Matthias Urlichs
... and if I actually click the "Include attachment" button, the uplod even works. :-/ ** Attachment added: "complete patch" http://librarian.launchpad.net/4705194/cupsys.64725.patch ** Changed in: cupsys (Ubuntu) Assignee: (unassigned) => Matthias Urlichs

[Bug 113769] n-m gets confused about static interfaces

2007-05-10 Thread Matthias Urlichs
Public bug reported: Binary package hint: network-manager My /etc/network/interfaces says: auto lo iface lo inet loopback auto tun0 iface tun0 inet static address 10.3.2.123 netmask 255.255.255.0 Note *no* eth0 in there. Starting up n-m while tun0 is up causes it to bring up e

[Bug 114039] Re: Tries to connect to unplugged wired network

2007-05-11 Thread Matthias Urlichs
/var/log/daemon.log attached ** Attachment added: "dal" http://librarian.launchpad.net/7605440/dal ** Changed in: network-manager (Ubuntu) Status: Unconfirmed => Confirmed -- Tries to connect to unplugged wired network https://bugs.launchpad.net/bugs/114039 You received this bug notif

[Bug 114039] Tries to connect to unplugged wired network

2007-05-11 Thread Matthias Urlichs
Public bug reported: Binary package hint: network-manager After resume-from-disk, n-m didn't find any interfaces. (Different bug). After restarting, n-m tried to first connect to the wired network, even though there was no cable attached and n-m should *know* that. (It usually does...) ** Affec

[Bug 126499] Re: "No devices listed in conf file were found" due to mdadm RAID1 array UUID different from actual UUID reported by vol_id

2007-10-11 Thread Matthias Urlichs
mdadm --update=uuid (plus replacing the uuid in /etc/mdadm/mdadm.conf) fixes the problem. However, that still leaves people who had a perfectly working Feisty system, which happened to have this inconsistency, with a machine that cannot boot after upgrading to Gutsy. -- "No devices listed in con

[Bug 126499] Re: "No devices listed in conf file were found" due to mdadm RAID1 array UUID different from actual UUID reported by vol_id

2007-10-11 Thread Matthias Urlichs
NB: I have two affected MD partitions; I've tested the --update solution with one, but left the other alone, so that I can test whether a distro upgrade solves the problem. -- "No devices listed in conf file were found" due to mdadm RAID1 array UUID different from actual UUID reported by vol_id

[Bug 126499] Re: "No devices listed in conf file were found" due to mdadm RAID1 array UUID different from actual UUID reported by vol_id

2007-10-11 Thread Matthias Urlichs
** Changed in: mdadm (Ubuntu) Status: New => Confirmed -- "No devices listed in conf file were found" due to mdadm RAID1 array UUID different from actual UUID reported by vol_id https://bugs.launchpad.net/bugs/126499 You received this bug notification because you are a member of Ubuntu Bu

[Bug 147635] Blank screen on Samsung P35 laptop

2007-10-01 Thread Matthias Urlichs
Public bug reported: I finally gutsy-fied my last laptop. Unfortunately, X only shows a blank screen with the ati driver. I had to resort to vesa to make it "work". ** Affects: xserver-xorg-driver-ati (Ubuntu) Importance: Undecided Status: New -- Blank screen on Samsung P35 laptop

[Bug 147635] Re: Blank screen on Samsung P35 laptop

2007-10-01 Thread Matthias Urlichs
** Attachment added: "X log file" http://launchpadlibrarian.net/9618404/Xorg.1.log ** Description changed: - I finally gutsy-fied my last laption. Unfortunately, X only shows a - blank screen with the ati driver. I had to resort to vesa to make it - "work". + I finally gutsy-fied my last lapt

[Bug 147635] Re: Blank screen on Samsung P35 laptop

2007-10-01 Thread Matthias Urlichs
** Attachment added: ""lspci -v -v" of display driver chip" http://launchpadlibrarian.net/9618412/Xorg.pci -- Blank screen on Samsung P35 laptop https://bugs.launchpad.net/bugs/147635 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubun

[Bug 147635] Re: Blank screen on Samsung P35 laptop

2007-10-01 Thread Matthias Urlichs
reported to be fixed in gutsy (version 1:6.7.194). Testing. ** Changed in: xserver-xorg-driver-ati (Ubuntu) Status: New => Confirmed -- Blank screen on Samsung P35 laptop https://bugs.launchpad.net/bugs/147635 You received this bug notification because you are a member of Ubuntu Bugs, whi

[Bug 147635] Re: Blank screen on Samsung P35 laptop

2007-10-01 Thread Matthias Urlichs
** Changed in: xserver-xorg-video-ati (Ubuntu) Status: New => Fix Released -- Blank screen on Samsung P35 laptop https://bugs.launchpad.net/bugs/147635 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing

[Bug 133135] Re: ekiga doesn't work with pulseaudio in gutsy

2007-09-25 Thread Matthias Urlichs
IMHO that is a bug in ekiga, not pulse. -- ekiga doesn't work with pulseaudio in gutsy https://bugs.launchpad.net/bugs/133135 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

Re: [Bug 193621] [NEW] Invalid attribute "Originial-Maintainer" in package description

2008-02-20 Thread Matthias Urlichs
Hi, dvh: > It should be "Original", not "Originial", one "i" is vacant. > Nice to know that other languages have their false analogues too. "Superfluous" ... > Architecture: > Breaks: > Bugs: [...] ... just like those empty tags. :-P

[Bug 149071] Re: -server kernel variant fails to boot on PowerEdge 2650 with AACRAID timeouts

2008-04-24 Thread Matthias Urlichs
Bah. A fix for this really should be in the Hardy kernel. -- -server kernel variant fails to boot on PowerEdge 2650 with AACRAID timeouts https://bugs.launchpad.net/bugs/149071 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-b

[Bug 138935] Re: xvncviewer dies talking to Mac OSX

2007-09-11 Thread Matthias Urlichs
[EMAIL PROTECTED] ~ $ xvncviewer minimac.bismarck VNC Viewer Free Edition 4.1.1 for X - built Sep 10 2007 17:17:04 Copyright (C) 2002-2005 RealVNC Ltd. See http://www.realvnc.com for information on VNC. Tue Sep 11 19:26:20 2007 CConn: connected to host minimac.bismarck port 5900 CConnecti

[Bug 138935] xvncviewer dies talking to Mac OSX

2007-09-11 Thread Matthias Urlichs
Public bug reported: xvnc4 has the same problem. :-( [EMAIL PROTECTED] ~ $ xrealvncviewer minimac VNC viewer version 3.3.7 - built May 24 2007 12:45:44 Copyright (C) 2002-2003 RealVNC Ltd. Copyright (C) 1994-2000 AT&T Laboratories Cambridge. See http://www.realvnc.com for information on VNC. VNC

Re: [Bug 78282] Re: vnc4server does not start Desktop environment after security update

2007-04-10 Thread Matthias Urlichs
wrong time to run across a problem that's been existing for months. :-/ -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de - - He who laughs last didn't get the joke. -- vnc4serv

Re: [Bug 78282] Bug #78282 - Try Version Bump

2007-04-13 Thread Matthias Urlichs
blem. I'm running the Dapper vnc4server at the moment. It works (and does not have GLX), so it's not just a problem with Gnome. The error says quite plainly that the broken Gnome apps send an X request which vnc4server no longer understands. That's a regression in my eyes. -- Matthi

Re: [Bug 64324] Re: usplash screen corrupted on old iBook

2008-02-10 Thread Matthias Urlichs
Hi, Ted Percival: > Do you have a vga= option on your kernel boot line (run `grep vga= > /boot/grub/menu.lst`)? If so, then it is probably the same as bug > #122379. VGA??? grub??? We're talking about a PPC powerbook here. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.

Re: [Bug 185952] Re: PPC iBook cannot install from CD-ROM

2008-01-31 Thread Matthias Urlichs
Hi, Brian Murray: > Which particular alternate CD were you using? Was it Alpha 3 or a daily > build? Thanks in advance. > Daily, from the day before. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Reall

Re: [Bug 64324] Re: usplash screen corrupted on old iBook

2008-01-25 Thread Matthias Urlichs
Hi, Nattgew: > Do you still get this bug? > I'll heronify my systems, and check. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de - - Bernard Shaw is an excellent man; he has n

[Bug 185952] Re: PPC iBook cannot install from CD-ROM

2008-01-25 Thread Matthias Urlichs
*sigh* wrong kernel package, sorry; Hardy has 2.6.24. It's also missing out on the Apple partition table, *and* the SCSI driver isn't loaded when booting (though it *is* on the initramfs). As a result, the machine doesn't survive the upgrade. -- PPC iBook cannot install from CD-ROM https://bugs.

Re: [Bug 64324] Re: usplash screen corrupted on old iBook

2008-01-25 Thread Matthias Urlichs
Hi, Matthias Urlichs: > > Do you still get this bug? > > > I'll heronify my systems, and check. > Unfortunately, the Hardy alternate boot CD does not have a driver for the CDROM. I'll file a bug for that. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de |

[Bug 185952] Re: PPC iBook cannot install from CD-ROM

2008-01-25 Thread Matthias Urlichs
** Also affects: linux-source-2.6.24 (Ubuntu) Importance: Undecided Status: New ** Changed in: linux-source-2.6.22 (Ubuntu) Status: Incomplete => Invalid -- PPC iBook cannot install from CD-ROM https://bugs.launchpad.net/bugs/185952 You received this bug notification because you

[Bug 185952] [NEW] PPC iBook cannot install from CD-ROM

2008-01-25 Thread Matthias Urlichs
Public bug reported: Binary package hint: linux-source-2.6.22 Simply burn an alternate PPC CD-ROM and boot an older iBook from it. Everything proceeds smoothly, the kernel comes up, but then cannot see the CD-ROM. ** Affects: linux-source-2.6.22 (Ubuntu) Importance: Undecided Stat

[Bug 62020] Re: nscd ignores /etc/hosts

2007-11-20 Thread Matthias Urlichs
LuisM: Please read and understand the bug report before posting answers. Thank you. NB, in gutsy this has been "fixed" by defaulting the host cache to off. Anyway, I just found the problem, which is that nscd has a cache which the init script does not delete. >>> rm -rf /var/db/nscd/* Patch wil

[Bug 133495] Re: some codec crashes totem and gnash on ppc

2008-01-07 Thread Matthias Urlichs
It's using -maltivec when compiling. Unfortunately G3 CPUs don' have Altivec instructions => crash. I'll upload a fix. ** Changed in: liboil (Ubuntu) Status: Confirmed => In Progress ** Changed in: liboil (Ubuntu) Assignee: (unassigned) => Matthias Urlichs

Re: [Bug 108613] Re: Word not translated into German

2007-06-13 Thread Matthias Urlichs
Hi, Jannick Kuhr: > I hope I didn't sound too harsh yesterday, but I really don't think that > is a good idea to fork upstream translations, if it is not really > necessary. > Sometimes, it is. Not whole translations, but specific strings. -- Matthias Urlichs | {M:U}

Re: [Bug 200719] [NEW] scim default trigger "shift+space" is retarded

2008-03-15 Thread Matthias Urlichs
r problem in Germany, because we have so many capitalized words. :-P ) -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de - - It's more than magnificent -- it's mediocre.

[Bug 194794] Re: Crashing when trying to change alphabet to polish

2008-03-18 Thread Matthias Urlichs
As some people are unable to read (or at least understand) Polish ... could you post a summary, if pertinent? -- Crashing when trying to change alphabet to polish https://bugs.launchpad.net/bugs/194794 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

[Bug 104996] Re: dasher cannot write text directly into another window

2008-03-19 Thread Matthias Urlichs
Seems that that option got broken. 4.7.0 looks promising WRT all the other bugs logged here, but not this one. :-/ -- dasher cannot write text directly into another window https://bugs.launchpad.net/bugs/104996 You received this bug notification because you are a member of Ubuntu Bugs, which is s

[Bug 104996] Re: dasher cannot write text directly into another window

2008-03-19 Thread Matthias Urlichs
The daemon "/usr/lib/at-spi/at-spi-registryd" needs to be running. It should start when you turn on accessibility (and log out and back in), or you can start it manually. ** Changed in: dasher (Ubuntu) Importance: Undecided => Low -- dasher cannot write text directly into another window http

[Bug 207698] [NEW] Opening a document when evince is already running doesn't work

2008-03-27 Thread Matthias Urlichs
Public bug reported: Binary package hint: evince What happens: 1* A program (the email client, mutt, for instance) writes a temp file. 2* It starts evince with that document and waits for it to finish. 3* Evince notices that it's already running, tells the previous copy to open the file in quest

[Bug 207698] Re: Opening a document when evince is already running doesn't work

2008-03-27 Thread Matthias Urlichs
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/12919943/Dependencies.txt ** Attachment added: "ProcMaps.txt" http://launchpadlibrarian.net/12919944/ProcMaps.txt ** Attachment added: "ProcStatus.txt" http://launchpadlibrarian.net/12919945/ProcStatus.txt ** Bug wat

[Bug 120316] Re: gutsy install cd (alternate) will not detect cdrom within qemu

2007-06-21 Thread Matthias Urlichs
Seen here too. Looks like a kernel regression. -- gutsy install cd (alternate) will not detect cdrom within qemu https://bugs.launchpad.net/bugs/120316 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ub

[Bug 120316] Re: gutsy install cd (alternate) will not detect cdrom within qemu

2007-06-21 Thread Matthias Urlichs
Relevant debug messages (all prefixed with "ata2.00: ": ATAPI, may MWDA1 configured for MWDA1 exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen (BMDMA stat 0x5) cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x12 data 36 in res 48/01:02:00:00:00/00:00:00:00:00/a0 Emask 0x2 (HSM violation)

[Bug 102902] Re: Can not eject USB Storage device

2007-04-24 Thread Matthias Urlichs
*** This bug is a duplicate of bug 63090 *** https://bugs.launchpad.net/bugs/63090 It's not that easy. I've been running Feisty for ages, and the USB stick I mainly use does have two partitions. Ejecting the thing worked flawlessly. It still does. :-/ -- Can not eject USB Storage device htt

[Bug 36252] Re: desktop/nautilus right-click eject problem for external usb disk and memory card reader

2007-07-04 Thread Matthias Urlichs
*** This bug is a duplicate of bug 63090 *** https://bugs.launchpad.net/bugs/63090 That's it exactly, thanks iGadget. … if you implement such a warning, pelase make it (a) only show when there's at least one other mounted partition on the drive, (b) turnoffable. -- desktop/nautilus right-cl

Re: [Bug 50041] Re: System lock on upgrade or new install

2007-04-30 Thread Matthias Urlichs
Hi, amadeov: > Setting up wvdial (1.56-1.1ubuntu2) ... > wvdial tries to talk to your serial ports, trying to find modems. Long-standing bug, I'm afraid; I reported the same thing a year ago. -- Matthias Urlichs | {M:U} IT Design @ m-u-it.de | [EMAIL PROTECTED] Disclaimer

[Bug 78282] Re: vnc4server does not start Desktop environment after security update

2007-04-10 Thread Matthias Urlichs
Is anyboy (kescook?) doing something about this? I'd hate to see a Feisty release with no good vnc server. And no, vino doesn't work for me. I am *not* going to leave my server unattended with an active display session, 100% accessible to anybody who walks by and turns the monitor on. -- vnc4ser

[Bug 90802] Re: crash on the first startup

2007-03-09 Thread Matthias Urlichs
** Summary changed: - crack on the first startup + crash on the first startup -- crash on the first startup https://launchpad.net/bugs/90802 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   >