[Bug 282240] Re: Sound volume control goes crazy
The situation got better creating a ~/.asoundrc with the following info: """ pcm.card0 { type hw card 0 } pcm.!default { type plug slave.pcm "hw:1,0" } pcm.dmixer { type dmix ipc_key 1025 slave { pcm "hw:1,0" period_time 0 period_size 2048 buffer_size 32768 rate 48000 } bindings { 0 0 1 1 } } """ Now I have volume control using the keyboard's configured keys. The rest keeps broken. -- Sound volume control goes crazy https://bugs.launchpad.net/bugs/282240 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 282240] [NEW] Sound volume control goes crazy
Public bug reported: The volume is totally unusable. If I use it from the volume applet, it barely changes when using the mouse wheel. If I select it and try to change, it just goes to whatever position it wants. In the best case, iot goes up or down a little, but always with a moment of around 100-300 milliseconds of mute in the middle. If I open the full volume control, with all the preferences, it's worse. I need to enable Speaker1 to be able to control my sound card output, and only one of the six bars control my speaker (which is ok, because I only have two speakers, not a full sound system). The problem is that every time I want to change the volume, they go to the position they want, and with a half-second mute in the middle. The "lock all the bars to have the same position" (the small chain-like icon) does not work either: I can lock it, but then I try to change one bar (and all the bars should also change), but sometimes it works, sometimes the chain unlocks itself and the bars goes like crazy. If I use the volume through the keyboard (I configured ctrl-shift-(+) and ctrl-shift-(-) to up and down the volume), it doesn't work either: everytime I hit one of those keys a small volume indicator appears in the middle of the screen but goes up or down as it wants, not respecting the key I pressed. Note that the real volume that I hear doesn't follow the key that I press and doesn't follow the volume shown in the screen (for example, sometimes I press the "down volume" key, and the indicator goes up and down as it wants, and the real volume does not change...). My system: $ lsb_release -rd Description:Ubuntu intrepid (development branch) Release:8.10 My sound card: "CM6501 USB High-Performance 8CH Audio Chip" As a final note, I want to tell that this is pretty serious: the system is not usable for a normal user. ** Affects: ubuntu Importance: Undecided Status: New -- Sound volume control goes crazy https://bugs.launchpad.net/bugs/282240 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 325860] [NEW] getxattr in python-fuse does not respect size=0 API
Public bug reported: Binary package hint: python-fuse The getxattr function in python fuse does not respect the API regarding size=0. As the manpage says... """ An empty buffer of size zero can be passed into these calls to return the current size of the named extended attribute, which can be used to estimate the size of a buffer which is sufficiently large to hold the value associ‐ ated with the extended attribute. """ However, it currently only checks if the returned string size is bigger than the asked-for size (and as this size is sometimes 0), you just get a broken behaviour (it even generates the incorrect error). Both issues are fixed in the pach I'm attaching. System info: Ubuntu: 8.10 Installed python-fuse: 1:0.2-pre3-9 However, note that the problem is still in python-fuse's trunk (and the diff is against that) ** Affects: python-fuse (Ubuntu) Importance: Undecided Status: New -- getxattr in python-fuse does not respect size=0 API https://bugs.launchpad.net/bugs/325860 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 325860] Re: getxattr in python-fuse does not respect size=0 API
** Attachment added: "Patch that fixes the size=0 behavior and corrects the generated error when returned_size > asked_size" http://launchpadlibrarian.net/22018646/fuse_getxattr.patch -- getxattr in python-fuse does not respect size=0 API https://bugs.launchpad.net/bugs/325860 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 325860] Re: getxattr in python-fuse does not respect size=0 API
James Westby escribió (el 16/02/09 20:56): > Have you approached upstream about this issue? > > There's a similar report from last year on the mailing list > > http://thread.gmane.org/gmane.comp.file-systems.fuse.devel/5816 > > I'll happily sponsor this if you can point to some discussion of the patch > with upstream. Don't know how to approach them... they seem to don't have a bug tracker, and in the list it's exactly the same bug reported. Regards, -- . Facundo . Canonical - Online Services -- getxattr in python-fuse does not respect size=0 API https://bugs.launchpad.net/bugs/325860 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 325860] Re: getxattr in python-fuse does not respect size=0 API
Note that the package has a bug that makes the patches to be applied *after* creating the binary (which is a problem when the patch applies to C stuff). Here's the diff that fixes that: --- python-fuse-0.2-pre3-9-ubuntu0~8.10/debian/rules2009-02-10 09:30:38.0 -0500 +++ python-fuse/debian/rules2009-02-09 15:54:49.0 -0500 @@ -6,6 +6,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk +include /usr/share/cdbs/1/rules/dpatch.mk STAGING_DIR := $(CURDIR)/debian/python-fuse UPSTREAM_EXAMPLE_DIR := example @@ -16,4 +17,3 @@ cp -r $(UPSTREAM_EXAMPLE_DIR) $(STAGING_DIR)/usr/share/doc/python-fuse/examples clean:: unpatch Thanks! -- getxattr in python-fuse does not respect size=0 API https://bugs.launchpad.net/bugs/325860 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 325860] Re: getxattr in python-fuse does not respect size=0 API
I sent the following mail twice (Feb 25th and 27th) from my gmail address, never got any answer, and it even seems that they didn't get into the list, as they're no in the SF archive. --- 8< --- Hello! I found that the getxattr function in python fuse does not respect the API regarding size=0. As the manpage says... """ An empty buffer of size zero can be passed into these calls to return the current size of the named extended attribute, which can be used to estimate the size of a buffer which is sufficiently large to hold the value associ‐ ated with the extended attribute. """ However, it currently only checks if the returned string size is bigger than the asked-for size (and as this size is sometimes 0), you just get a broken behaviour (it even generates the incorrect error). This is the very same problem described in this old post to this same list: http://thread.gmane.org/gmane.comp.file-systems.fuse.devel/5816 The news is that I created a patch to address this issue (we tested this patch at work, and works ok for us). The patch is here: http://launchpadlibrarian.net/22018646/fuse_getxattr.patch (it's on a Launchpad bug, #325860) Regards, --- 8< --- They don't have a bug tracker, so don't know what else I can do, :(. -- getxattr in python-fuse does not respect size=0 API https://bugs.launchpad.net/bugs/325860 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348316] Re: Printer (HWModel Name) May Not Be Connected
I'm using a HP LaserJet P1005, have the detailed bug 352431. With my printer created, but not working, I did sudo aa-complain cups Then went to print a test page, but again, nothing happened (the job gets into the printer queue and then disappears, but no page is printed). I revoked that with "sudo aa-enforce cups". Also tried the rmmod/modprobe usblp trick (with the -/+x change). Nothing. Then I put the connection through HAL: hal:///org/freedesktop/Hal/devices/usb_device_3f0_3d17_0_if0_printer_noserial And again, nothing happens. The printer just doesn't print anything... $ lpinfo -v network socket network beh direct hal:///org/freedesktop/Hal/devices/usb_device_3f0_3d17_0_if0_printer_noserial direct hpfax direct usb://HP/LaserJet%20P1002 direct hp network http network ipp network lpd direct parallel:/dev/lp0 direct scsi serial serial:/dev/ttyS0?baud=115200 network smb -- Printer (HWModel Name) May Not Be Connected https://bugs.launchpad.net/bugs/348316 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 345550] Re: gnome-sound-properties freeze
I have the same issue. Trying to check which soundcard I have, to report the bug in Gnome as suggested, I found that I can't find it. Neither lshw or lspic tell me anything about a soundcard (which I have and it's working). Maybe this can help to find the issue? -- gnome-sound-properties freeze https://bugs.launchpad.net/bugs/345550 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 345550] Re: gnome-sound-properties freeze
Sebastien, which fix upstream are you talking about? I could try it... -- gnome-sound-properties freeze https://bugs.launchpad.net/bugs/345550 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352431] Re: HP LaserJet P1005 printer does not work in Jaunty
Yes, probably this is a duplicate of bug #348316, but no sure. I'll continue there, at least until we find there're two issues. -- HP LaserJet P1005 printer does not work in Jaunty https://bugs.launchpad.net/bugs/352431 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348316] Re: Printer (HWModel Name) May Not Be Connected
Hi! I installed the PPA's package and followed the instructions in comment #44. I tried to add the printer, but the system didn't found it! (System -> Administration -> Printers "New"). I unplugged it: $ lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 003: ID 0d8c:0201 C-Media Electronics, Inc. CM6501 Bus 002 Device 002: ID 056a:0065 Wacom Co., Ltd Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Then replugged it: $ lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 022: ID 03f0:3d17 Hewlett-Packard Bus 002 Device 003: ID 0d8c:0201 C-Media Electronics, Inc. CM6501 Bus 002 Device 002: ID 056a:0065 Wacom Co., Ltd Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub It even appears in the /dev/bus/usb... $ ls -l /dev/bus/usb/*/* crw-rw-r-- 1 root root 189, 0 2009-03-31 10:56 /dev/bus/usb/001/001 crw-rw-r-- 1 root root 189, 128 2009-03-31 10:56 /dev/bus/usb/002/001 crw-rw-r-- 1 root root 189, 129 2009-03-31 10:56 /dev/bus/usb/002/002 crw-rw-r-- 1 root root 189, 130 2009-03-31 10:56 /dev/bus/usb/002/003 crw-rw+ 1 lp lp 189, 149 2009-04-03 12:13 /dev/bus/usb/002/022 (full "lsusb -vvv" attached) I also tried setting "chmod 666" to the printer: $ ls -l /dev/bus/usb/*/* crw-rw-r-- 1 root root 189, 0 2009-03-31 10:56 /dev/bus/usb/001/001 crw-rw-r-- 1 root root 189, 128 2009-03-31 10:56 /dev/bus/usb/002/001 crw-rw-r-- 1 root root 189, 129 2009-03-31 10:56 /dev/bus/usb/002/002 crw-rw-r-- 1 root root 189, 130 2009-03-31 10:56 /dev/bus/usb/002/003 crw-rw-rw-+ 1 lp lp 189, 149 2009-04-03 12:14 /dev/bus/usb/002/022 But still not working. Note that the problem now is not that I print and nothing happens, now I can not even add the printer! ** Attachment added: "lsusb_vvv.txt" http://launchpadlibrarian.net/24759001/lsusb_vvv.txt -- Printer (HWModel Name) May Not Be Connected https://bugs.launchpad.net/bugs/348316 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352428] Re: Add to panel help does not work
It's fixed now! (I update the system twice a day these days, so I actually don't know when it was fixed) -- Add to panel help does not work https://bugs.launchpad.net/bugs/352428 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348316] Re: Printer (HWModel Name) May Not Be Connected
Ignore my assertion in comment #64, about not seeing the printer anymore (I installed only the cups package from the PPA, forgot the libcups one). With both packages, I saw the printer, and the behaviour changed: now it gets stuck trying to print: I send a test page to print, it's never printed, but now it also doesn't disappear from the queue. Furthermore, a process takes all the processor: "usb://HP/HP%20Laserjet 152 facundo Test Page 1 job-... I want to try with an older kernel, but I need to install it (the upgrade to Jaunty removed the old kernels). -- Printer (HWModel Name) May Not Be Connected https://bugs.launchpad.net/bugs/348316 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 355160] [NEW] unicode input is broken
Public bug reported: Binary package hint: ipython If an unicode string is written, it doesn't accept it, crashing because it expects only ASCII characters: facu...@exepus:~$ locale charmap UTF-8 facu...@exepus:~$ echo $LANG es_ES.UTF-8 facu...@exepus:~$ ipython /var/lib/python-support/python2.6/IPython/Magic.py:38: DeprecationWarning: the sets module is deprecated from sets import Set Activating auto-logging. Current session state plus future input saved. Filename : /home/facundo/.ipython/log.txt Mode : append Output logging : True Raw input log : False Timestamping : False State : active Python 2.6.1+ (r261:67515, Apr 4 2009, 09:51:39) Type "copyright", "credits" or "license" for more information. IPython 0.9.1 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. >>> u'camión' --- UnicodeEncodeErrorTraceback (most recent call last) /var/lib/python-support/python2.6/IPython/iplib.py in multiline_prefilter(self, line, continue_prompt) 2272 out = [] 2273 for l in line.rstrip('\n').split('\n'): -> 2274 out.append(self._prefilter(l, continue_prompt)) 2275 return '\n'.join(out) 2276 /var/lib/python-support/python2.6/IPython/iplib.py in _prefilter(self, line, continue_prompt) 2254 #print 'pre <%s> iFun <%s> rest <%s>' % (pre,iFun,theRest) # dbg 2255 -> 2256 return prefilter.prefilter(line_info, self) 2257 2258 /var/lib/python-support/python2.6/IPython/prefilter.py in prefilter(line_info, ip) 151 return handler(line_info) 152 --> 153 return ip.handle_normal(line_info) 154 155 # Handler checks /var/lib/python-support/python2.6/IPython/iplib.py in handle_normal(self, line_info) 2294 line = '' 2295 -> 2296 self.log(line,line,continue_prompt) 2297 return line 2298 /var/lib/python-support/python2.6/IPython/Logger.py in log(self, line_ori, line_mod, continuation) 237 self.log_write(line_ori) 238 else: --> 239 self.log_write(line_mod) 240 241 def log_write(self,data,kind='input'): /var/lib/python-support/python2.6/IPython/Logger.py in log_write(self, data, kind) 249 write(time.strftime('# %a, %d %b %Y %H:%M:%S\n', 250 time.localtime())) --> 251 write('%s\n' % data) 252 elif kind=='output' and self.log_output: 253 odata = '\n'.join(['#[Out]# %s' % s UnicodeEncodeError: 'ascii' codec can't encode character u'\xf3' in position 6: ordinal not in range(128) >>> ** Affects: ipython (Ubuntu) Importance: Undecided Status: New -- unicode input is broken https://bugs.launchpad.net/bugs/355160 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352493] Re: ipython does not handle Unicode input correctly
It also happens to me. Noting that behaviour, and this one: >>> u'camión' u'cami\xc3\xb3n' >>> u'camión'.encode("utf8") 'cami\xc3\x83\xc2\xb3n' ...it seems that ipython is double encoding the input somewhere. Note which the correct result is, taken from a standard python console: >>> u'camión' u'cami\xf3n' >>> u'camión'.encode("utf8") 'cami\xc3\xb3n' -- ipython does not handle Unicode input correctly https://bugs.launchpad.net/bugs/352493 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 355160] Re: unicode input is broken
Note that if I turn off the logs, it doesn't crash anymore (but it still has the unicode problem shown in bug #352493) -- unicode input is broken https://bugs.launchpad.net/bugs/355160 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352493] Re: ipython does not handle Unicode input correctly
*** This bug is a duplicate of bug 339642 *** https://bugs.launchpad.net/bugs/339642 ** This bug has been marked a duplicate of bug 339642 unicode bug - encoding input -- ipython does not handle Unicode input correctly https://bugs.launchpad.net/bugs/352493 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348316] Re: Printer (HWModel Name) May Not Be Connected
With the system fully updated I can't print, and I don't even see the printer (Till, if I downgrade cups to your PPA version, I see the printer again... it still doesn't print, but I least I see it). I attach all the info you're asking to John in the previous comment, plus the result (none) of /usr/lib/cups/backend/usb. ** Attachment added: "info.txt" http://launchpadlibrarian.net/24868577/info.txt -- Printer (HWModel Name) May Not Be Connected https://bugs.launchpad.net/bugs/348316 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348316] Re: Printer (HWModel Name) May Not Be Connected
Thanks Till! I removed the blacklist and loaded the module. Now I see the printer, but there's no printing at all when sending the test page (it says it's printing, the job gets into the queue, disappears from there, and I even get a notification that the job was printed), but no printing at all. Attached here are all the normal info (seeing the permissions in /dev stuff, I even tried relaxing the permission in the devices, but the behaviour is the same). ** Attachment added: "info.txt" http://launchpadlibrarian.net/24870485/info.txt -- Printer (HWModel Name) May Not Be Connected https://bugs.launchpad.net/bugs/348316 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 359762] Re: Python2.6-doc html docs lack useful navigation
There was a problem with the rest2html processor (Sphinx). The problem is now fixed, as you can check in the online documentation: http://docs.python.org/library/index.html These new htmls should be repackaged and updated. -- Python2.6-doc html docs lack useful navigation https://bugs.launchpad.net/bugs/359762 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 351704] [NEW] No sound in flash under firefox
Public bug reported: Binary package hint: flashplugin-nonfree In Firefox 3.0.8, using flashplugin-nonfree 10.0.22.87ubuntu1, have no sound in flash. Video is ok, but no sound at all. I just upgraded to Jaunty: $ lsb_release -rd Description:Ubuntu jaunty (development branch) Release:9.04 $ uname -a Linux exepus 2.6.28-11-generic #38-Ubuntu SMP Fri Mar 27 09:00:52 UTC 2009 i686 GNU/Linux In about:plugins, in FF, I see: libflashplayer.so Shockwave Flash 9.0 r124 I tried installing flashplugin-nonfree-extrasound, but no luck either. ** Affects: flashplugin-nonfree (Ubuntu) Importance: Undecided Status: New -- No sound in flash under firefox https://bugs.launchpad.net/bugs/351704 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 351935] [NEW] Notifications in Pidgin are changed without permission
Public bug reported: Just upgraded to Jaunty, and when started Pidgin (1:2.5.5-1ubuntu3), notifications started to appear each time a contact went online. Two things: - It should be easier to configure this (it's deep into a plugin). - The upgrade shouldn't mess with my defaults in that way, it's evil! ** Affects: ubuntu Importance: Undecided Status: New -- Notifications in Pidgin are changed without permission https://bugs.launchpad.net/bugs/351935 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 351979] [NEW] Envelope for notifications is not well integrated visually
Public bug reported: Binary package hint: indicator-applet I just upgraded to Jaunty. When using Pidging, an envelope appears in my panel, showing notifications. This envelope is not well integrated visually with the rest of the panel, as it's an icon with a whole border around it (and the rest has no borders!) See the screenshot, where you can see the envelope with borders, and the NetworkManager, Sounds and Bluetooth icon without borders. The indicator-applet version is: 0.1.4-0ubuntu1 ** Affects: indicator-applet (Ubuntu) Importance: Undecided Status: New -- Envelope for notifications is not well integrated visually https://bugs.launchpad.net/bugs/351979 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 351979] Re: Envelope for notifications is not well integrated visually
Boo, forgot the screenshot! ** Attachment added: "Screenshot showing the border issue" http://launchpadlibrarian.net/24548218/envelope.png -- Envelope for notifications is not well integrated visually https://bugs.launchpad.net/bugs/351979 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352428] [NEW] Add to panel help does not work
Public bug reported: Right click on the panel, select "Add to panel", a window appears with a lot of applets to choose from, with four buttons below: 1. Help 2. Back (greyed out) 3. Add (greyed out, unless I select an applet) 4. Close If I click on "help", it opens the help viewer, but I get an error message saying that the page can not be loaded («ghelp:user- guide?gospanel-15» is not valid). Just upgraded to Jaunty: $ lsb_release -rd Description:Ubuntu jaunty (development branch) Release:9.04 $ uname -a Linux phenomenux 2.6.28-11-generic #38-Ubuntu SMP Fri Mar 27 09:00:52 UTC 2009 i686 GNU/Linux ** Affects: ubuntu Importance: Undecided Status: New -- Add to panel help does not work https://bugs.launchpad.net/bugs/352428 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352426] [NEW] Can not add sound-volume-control to the panel
Public bug reported: Just upgraded to Jaunty. Right click on the panel, I can add any applet, but sound-volume-control (don't know it's name, it's the one that looks like a speaker and let's you control the sound volume). I can select the applet in the list, but nothing happens when I click on "Add" $ lsb_release -rd Description:Ubuntu jaunty (development branch) Release:9.04 $ uname -a Linux phenomenux 2.6.28-11-generic #38-Ubuntu SMP Fri Mar 27 09:00:52 UTC 2009 i686 GNU/Linux ** Affects: ubuntu Importance: Undecided Status: New -- Can not add sound-volume-control to the panel https://bugs.launchpad.net/bugs/352426 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352431] [NEW] HP LaserJet P1005 printer does not work in Jaunty
Public bug reported: With my HP LaserJet P1005 is turned on, I tried two different things: 1. Unplugged and plugged back the USB. An icon appeared in the panel, like a printing queue, but no printer at all. 2. Opened "printers", put "add a new printer", selected it (even as it appears with a wrong description: "Hewlett-Packard HP LaserJet P1002"), and choose the driver from the DB: "HP LaserJet P1005 Foomatic/foo2xqx (recommended)". Printed a test page, and it says "connecting... processing... ", etc, and I even get a notification that the printing was done... everything ok, except that the printer itself does not do anything :( The usb address that it shows is: usb://HP/LaserJet%20P1002 I just upgraded to Jaunty: $ lsb_release -rd Description:Ubuntu jaunty (development branch) Release:9.04 $ uname -a Linux phenomenux 2.6.28-11-generic #38-Ubuntu SMP Fri Mar 27 09:00:52 UTC 2009 i686 GNU/Linux ** Affects: ubuntu Importance: Undecided Status: New -- HP LaserJet P1005 printer does not work in Jaunty https://bugs.launchpad.net/bugs/352431 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 351935] Re: Notifications in Pidgin are changed without permission
My pidgin version is 1:2.5.5-1ubuntu3, but I have no clue about what makes that notification appear. -- Notifications in Pidgin are changed without permission https://bugs.launchpad.net/bugs/351935 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352431] Re: HP LaserJet P1005 printer does not work in Jaunty
More info: $ lsmod | grep usb snd_usb_audio 90400 3 snd_pcm82948 3 snd_usb_audio,snd_pcm_oss snd_usb_lib24320 1 snd_usb_audio snd_hwdep 15108 1 snd_usb_audio snd_rawmidi29696 2 snd_usb_lib,snd_seq_midi snd62628 15 snd_usb_audio,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_hwdep,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device usbhid 42336 0 usblp 20224 0 $ tail -f /var/log/messages ... Mar 31 11:57:52 phenomenux kernel: [ 3663.984517] usb 1-8: new high speed USB device using ehci_hcd and address 8 Mar 31 11:57:53 phenomenux kernel: [ 3664.496014] usb 2-8: new full speed USB device using ohci_hcd and address 7 Mar 31 11:57:53 phenomenux kernel: [ 3664.700048] usb 2-8: not running at top speed; connect to a high speed hub Mar 31 11:57:53 phenomenux logger: loading hp_laserjet_p1005 firmware 002 007 Mar 31 11:57:53 phenomenux kernel: [ 3664.727032] usb 2-8: configuration #1 chosen from 1 choice Mar 31 11:57:53 phenomenux kernel: [ 3664.737995] usblp0: USB Bidirectional printer dev 7 if 0 alt 0 proto 2 vid 0x03F0 pid 0x3D17 Mar 31 11:57:53 phenomenux python: [7594]: warning: CUPSEXT could not be loaded. Please check HPLIP installation. Mar 31 11:57:55 phenomenux python: [7627]: warning: CUPSEXT could not be loaded. Please check HPLIP installation. Mar 31 11:57:55 phenomenux python: [7629]: warning: CUPSEXT could not be loaded. Please check HPLIP installation. $ lpinfo -v network socket network beh direct hal:///org/freedesktop/Hal/devices/usb_device_3f0_3d17_0_if0_printer_noserial direct usb://HP/LaserJet%20P1002 direct hp network http network ipp network lpd direct parallel:/dev/lp0 direct scsi serial serial:/dev/ttyS0?baud=115200 network smb -- HP LaserJet P1005 printer does not work in Jaunty https://bugs.launchpad.net/bugs/352431 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352431] Re: HP LaserJet P1005 printer does not work in Jaunty
Because of the messages in /var/log/messages I pasted in the last comment, I installed hplip (see below), and now the messages changed, but the result is the same. $ tail -f /var/log/messages ... Mar 31 12:06:32 phenomenux kernel: [ 4183.693015] usb 1-8: new high speed USB device using ehci_hcd and address 9 Mar 31 12:06:33 phenomenux kernel: [ 4184.205014] usb 2-8: new full speed USB device using ohci_hcd and address 8 Mar 31 12:06:33 phenomenux kernel: [ 4184.409478] usb 2-8: not running at top speed; connect to a high speed hub Mar 31 12:06:33 phenomenux kernel: [ 4184.435542] usb 2-8: configuration #1 chosen from 1 choice Mar 31 12:06:33 phenomenux logger: loading hp_laserjet_p1005 firmware 002 008 Mar 31 12:06:33 phenomenux kernel: [ 4184.445533] usblp0: USB Bidirectional printer dev 8 if 0 alt 0 proto 2 vid 0x03F0 pid 0x3D17 I installed hplip through Synaptic, the version is: 3.9.2-3ubuntu3 -- HP LaserJet P1005 printer does not work in Jaunty https://bugs.launchpad.net/bugs/352431 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 177805] Re: Scribus does not work with accented characters when writing into a text box
I have the very same problem with combined characters, installing the normal scribus package. Using scribus-ng the result is the same. I'm using Ubuntu 9.04. -- Scribus does not work with accented characters when writing into a text box https://bugs.launchpad.net/bugs/177805 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] [NEW] "Copy a CD" does not work -- it doesn't recognizes the inserted CD
Public bug reported: I'm using Karmic alpha 3, fully updated. The steps I followed are: - Inserted a music CD - The CD appeared in the Desktop - I right-clicked on it, and choose "Copy this CD" - It started copying the CD to disk, and after it finished, popped up other window (in the attached screenshot you can see marked with "1" the original window, and with "2" this new one) saying that I should insert an empty disc to continue. - I inserted an empty disc, that is even recognized by the OS (see the "3" in the attached screenshot), but nothing happens. So, my only choice is to "cancel", because the louse window "2" doesn't give me another choice (it would be great to have there a "check now" button, if automatic notification fails...). The result is that I just can not copy CDs :( ** Affects: ubuntu Importance: Undecided Status: New -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
** Attachment added: "Pantallazo.png" http://launchpadlibrarian.net/30114614/Pantallazo.png -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
** Attachment added: "syslog.bz2" http://launchpadlibrarian.net/30115130/syslog.bz2 -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
Martin, here they are -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
** Attachment added: "messages.bz2" http://launchpadlibrarian.net/30115176/messages.bz2 -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 408600] [NEW] Bad libc version control
Public bug reported: Binary package hint: python-pyinotify pyinotify, in the file /usr/lib/pymodules/python2.6/pyinotify.py, it's doing the following test: if LIBC_VERSION < '2.4': raise UnsupportedLibcVersionError(LIBC_VERSION) Today libc6 was upgraded to 2.10... and this check started to fail, as it comparse *strings*, not numbers. Note that this is critical, because it prevents completely the module from start ** Affects: pyinotify (Ubuntu) Importance: Undecided Status: New -- Bad libc version control https://bugs.launchpad.net/bugs/408600 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 243344] Re: scim-bridge crashed with SIGSEGV in scim::IMEngineInstanceBase::get_frontend_data()
This is happening for me, using 0.4.16-2ubuntu2. As it's a new version (this bug talks about an older one), and a patch was applied, and it says it should be fixed, I opened a new bug: #409347 -- scim-bridge crashed with SIGSEGV in scim::IMEngineInstanceBase::get_frontend_data() https://bugs.launchpad.net/bugs/243344 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415446] [NEW] Unicode is not well supported when dealing with spell suggestions
Public bug reported: Binary package hint: gwibber Steps: 1. Write a line with non 1-byte characters, and a word that's not in the dictonary (eg: "ó ú *** foo ***"). 2. Right-click on the unrecognized word, go to spell suggestions. 3. See that the word that it's offering to add to the dictionary is NOT the one that you right-clicked on. What it should do: offer to add to the dictionary the word you clicked on. Hint about the problem: it may be counting bytes, not characters, when extracting the word from the line. I'm using a fully updated karmic. ProblemType: Bug Architecture: i386 Date: Tue Aug 18 12:22:34 2009 DistroRelease: Ubuntu 9.10 Package: gwibber 1.2.0~bzr346-0ubuntu3 PackageArchitecture: all ProcEnviron: PATH=(custom, user) LANG=es_ES.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-5.24-generic SourcePackage: gwibber Uname: Linux 2.6.31-5-generic i686 ** Affects: gwibber (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 -- Unicode is not well supported when dealing with spell suggestions https://bugs.launchpad.net/bugs/415446 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415446] Re: Unicode is not well supported when dealing with spell suggestions
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/30474276/Dependencies.txt -- Unicode is not well supported when dealing with spell suggestions https://bugs.launchpad.net/bugs/415446 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415599] [NEW] pyinotify.py file has mixed spaces and tabs
Public bug reported: pyinotify.py file mixes spaces and tabs, which could introduce problems, and is a no-no in Python. ProblemType: Bug Architecture: i386 Date: Tue Aug 18 17:59:10 2009 DistroRelease: Ubuntu 9.10 Package: python-pyinotify 0.8.6-2ubuntu2 PackageArchitecture: all ProcEnviron: PATH=(custom, user) LANG=es_ES.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-6.25-generic SourcePackage: pyinotify Uname: Linux 2.6.31-6-generic i686 ** Affects: pyinotify (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 -- pyinotify.py file has mixed spaces and tabs https://bugs.launchpad.net/bugs/415599 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415599] Re: pyinotify.py file has mixed spaces and tabs
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/30483073/Dependencies.txt -- pyinotify.py file has mixed spaces and tabs https://bugs.launchpad.net/bugs/415599 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 402188] Re: gvim complains about "gtk_form_set_static_gravity: assertion `static_gravity_supported' failed" in the shell it's started from
It happens to me in a fully updated karmic. ** Changed in: vim (Ubuntu) Status: New => Confirmed -- gvim complains about "gtk_form_set_static_gravity: assertion `static_gravity_supported' failed" in the shell it's started from https://bugs.launchpad.net/bugs/402188 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 410844] Re: cannot any play sound Dell XPS 1330
I have a similar issue. Before today, I had to play with pavucontrol a bit to get sound (wrong output channel, everything muted by default, etc.). But today, I updated the system (didn't update since monday, I'm in karmic alpha), and sound just stopped working. I "see the sound" in pavumeter or pavucontrol, it just doesn't output anywhere -- cannot any play sound Dell XPS 1330 https://bugs.launchpad.net/bugs/410844 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
Kamus escribió (el 14/08/09 15:28): > * Is this reproducible? Everytime I tried. > * If so, what specific steps should we take to recreate this bug? The steps I described when I opened the bug. > * Can you attach some log files If you tell me which ones, yes. > * Is this happen with other virgins CD? I tried with two, same issue (and later these CDs worked ok when burning them using gnomebaker). -- . Facundo . Canonical - Online Services -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
Kamus: syslog and messages are already uploaded!! And I don't want to debug brasero. I'm not using brasero!! Please, could you read the full bug? Thanks. -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 411460] Re: "Copy a CD" does not work -- it doesn't recognizes the inserted CD
** Changed in: brasero (Ubuntu) Status: Incomplete => New -- "Copy a CD" does not work -- it doesn't recognizes the inserted CD https://bugs.launchpad.net/bugs/411460 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415015] [NEW] Moving the mouse in and out the notification makes it "out of focus"
Public bug reported: Binary package hint: notify-osd I see a notification. I move the mouse over it and it disappears completely when I enter into the notification area (this could be ok or not, but I'm not reporting this in particular). Then, I move the mouse not, and the notification appears again, but *out of focus*. Note that I don't have any desktop effects enabled. Here I attach two small images, with the notification before and after passing the mouse over it. ProblemType: Bug Architecture: i386 Date: Mon Aug 17 16:43:59 2009 DistroRelease: Ubuntu 9.10 GtkTheme: Human IconTheme: Human MachineType: Dell Inc. XPS M1330 Package: notify-osd 0.9.17-0ubuntu1 ProcCmdLine: root=UUID=44327cd6-8a11-46fe-bc01-2080c5d617ef ro quiet splash ProcEnviron: PATH=(custom, user) LANG=es_ES.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-5.24-generic RelatedPackageVersions: xserver-xorg 1:7.4+3ubuntu5 libgl1-mesa-glx 7.5-1ubuntu1 libdrm2 2.4.12-1ubuntu1 xserver-xorg-video-intel 2:2.8.0-0ubuntu2 xserver-xorg-video-ati 1:6.12.99+git20090629.f39cafc5-0ubuntu5 SourcePackage: notify-osd Uname: Linux 2.6.31-5-generic i686 WindowManager: metacity dmi.bios.date: 07/08/2008 dmi.bios.vendor: Dell Inc. dmi.bios.version: A12 dmi.board.name: 0N6705 dmi.board.vendor: Dell Inc. dmi.chassis.type: 8 dmi.chassis.vendor: Dell Inc. dmi.modalias: dmi:bvnDellInc.:bvrA12:bd07/08/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn0N6705:rvr:cvnDellInc.:ct8:cvr: dmi.product.name: XPS M1330 dmi.sys.vendor: Dell Inc. ** Affects: notify-osd (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 -- Moving the mouse in and out the notification makes it "out of focus" https://bugs.launchpad.net/bugs/415015 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 415015] Re: Moving the mouse in and out the notification makes it "out of focus"
** Attachment added: "notifs.tar.gz" http://launchpadlibrarian.net/30428577/notifs.tar.gz ** Attachment added: "BootDmesg.txt" http://launchpadlibrarian.net/30428578/BootDmesg.txt ** Attachment added: "CurrentDmesg.txt" http://launchpadlibrarian.net/30428579/CurrentDmesg.txt ** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/30428580/Dependencies.txt ** Attachment added: "Lsmod.txt" http://launchpadlibrarian.net/30428581/Lsmod.txt ** Attachment added: "Lspci.txt" http://launchpadlibrarian.net/30428582/Lspci.txt ** Attachment added: "Lsusb.txt" http://launchpadlibrarian.net/30428583/Lsusb.txt ** Attachment added: "ProcCpuinfo.txt" http://launchpadlibrarian.net/30428584/ProcCpuinfo.txt ** Attachment added: "ProcInterrupts.txt" http://launchpadlibrarian.net/30428585/ProcInterrupts.txt ** Attachment added: "ProcModules.txt" http://launchpadlibrarian.net/30428586/ProcModules.txt ** Attachment added: "UdevDb.txt" http://launchpadlibrarian.net/30428587/UdevDb.txt ** Attachment added: "UdevLog.txt" http://launchpadlibrarian.net/30428588/UdevLog.txt ** Attachment added: "XorgConf.txt" http://launchpadlibrarian.net/30428589/XorgConf.txt ** Attachment added: "XorgLog.gz" http://launchpadlibrarian.net/30428590/XorgLog.gz ** Attachment added: "XorgLogOld.gz" http://launchpadlibrarian.net/30428591/XorgLogOld.gz ** Attachment added: "Xrandr.txt" http://launchpadlibrarian.net/30428592/Xrandr.txt ** Attachment added: "glxinfo.txt" http://launchpadlibrarian.net/30428593/glxinfo.txt ** Attachment added: "monitors.xml.txt" http://launchpadlibrarian.net/30428594/monitors.xml.txt ** Attachment added: "setxkbmap.txt" http://launchpadlibrarian.net/30428595/setxkbmap.txt ** Attachment added: "xdpyinfo.txt" http://launchpadlibrarian.net/30428596/xdpyinfo.txt -- Moving the mouse in and out the notification makes it "out of focus" https://bugs.launchpad.net/bugs/415015 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 43464] Re: Feisty’s Quod Libet ignore s keyboard shortcuts
Attached is the diff of what I touched in quodlibet.py to get Multimedia keys working, :) Now I have not only Play, as I had in Edgy, but also Next, Previous and Stop. ** Attachment added: "What I touched to get mmkeys woring" http://librarian.launchpad.net/7593769/quodlibet.py.diff -- Feisty’s Quod Libet ignores keyboard shortcuts https://bugs.launchpad.net/bugs/43464 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 120525] Re: transparency rendering problem in presentations
Same thing happens to me (fully updated Feisty system, running inside a VirtualBox, being hosted by a Win2K, with an Intel 945GM). Two details: - It doesn't matter if the object with the gradient is in the master slides or in the normal ones: when you go to presentation, full screen mode, it shows not gradient at all. - The object is still there: if it has a full color border, and a gradient fill, in presentation mode I only see the border. Regards, -- transparency rendering problem in presentations https://bugs.launchpad.net/bugs/120525 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 https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 14692] Re: hal detects written DVD as empty
Gaele, note that after I have the problem with the DVD, I went to the shop and changed it. I bought a Pioneer DVR-110, and it worked great. So, maybe, the problem is not solved, this hardware just works in Feisty. (BTW, I contacted LG, telling about the problem, they told me "we don't support Linux", so I answered "Ok, I'll change it for another brand, and I'll never buy LG hardware again, thanks"; we should do this more often...). Regards, -- hal detects written DVD as empty https://bugs.launchpad.net/bugs/14692 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 14692] Re: hal detects written DVD as empty
Hi, This is just to confirm the different behaviours... Clean install of Ubuntu Feisty Fawn, new DVD burner, a Sony DRU-830A. It's not reading the burned DVDs, always have this line in dmesg: cdrom: This disc doesn't have any tracks I recognize! No change playing with drive jumpers. This is what I get with the attached revised code (no changes noticed *after* executing it): [EMAIL PROTECTED]:~$ python test_cd.py /dev/hdb CDO_USE_FFLAGS returned 13 got drive capabilities: 3bfbef CDC_DVD_RAM support CDC_DVD_R support CDC_DVD support CDC_CD_RW support CDC_CD_R support got disc status: 0 At boot, this is how it recognize the drive: hdb: SONY DVD RW DRU-830A, ATAPI CD/DVD-ROM drive hdb: ATAPI 94X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache Uniform CD-ROM driver Revision: 3.20 BTW, the behaviour that is seeing Carlos *happens*. A friend of mine destroyed around ten DVDs that way, with an LG driver in an Edgy, until he got tired and changed the drive. Anything I could help. just ask. Thank you!! -- hal detects written DVD as empty https://bugs.launchpad.net/bugs/14692 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 79436] Filename not quoted when calling cdrecord
Public bug reported: Binary package hint: serpentine If I add a file named, for example (quotes for clarity) "03. Salsa.wav" to the main window, Serpentine uses that name (without the quotes) when calling cdrecord, actually "breaking" the command line. Example of real life: [EMAIL PROTECTED]:~$ serpentine --debug launching command: cdrecord fs=16m dev=/dev/hdc -eject driveropts=burnfree -v -copy -audio -pad /home/mirta/tmpAhl1nw.wav -copy -audio -pad /home/mirta/tmpGR3NXF.wav -copy -audio -pad /home/mirta/music/03. Salsa.wav -copy -audio -pad /home/mirta/tmpLVZAYK.wav -copy -audio -pad /home/mirta/tmpBlpZrl.wav -copy -audio -pad /home/mirta/tmpzlfGT8.wav -copy -audio -pad /home/mirta/tmpU86ZnR.wav ... That leads to cdrecord giving a cryptic message of error (No such file or directory. Cannot open ''.), and then Serpentine saying that an error ocurred. If I call cdrecord with the same as before but that problematic filename quoted, like the following sentence, everything goes ok: cdrecord fs=16m dev=/dev/hdc -eject driveropts=burnfree -v -copy -audio -pad /home/mirta/tmpAhl1nw.wav -copy -audio -pad /home/mirta/tmpGR3NXF.wav -copy -audio -pad "/home/mirta/music/03. Salsa.wav" -copy -audio -pad /home/mirta/tmpLVZAYK.wav -copy -audio -pad /home/mirta/tmpBlpZrl.wav -copy -audio -pad /home/mirta/tmpzlfGT8.wav -copy -audio -pad /home/mirta/tmpU86ZnR.wav ... Regards, ** Affects: serpentine (Ubuntu) Importance: Undecided Status: Unconfirmed -- Filename not quoted when calling cdrecord https://launchpad.net/bugs/79436 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 79436] Re: Filename not quoted when calling cdrecord
Daniel, versions: Ubuntu: Edgy (2.6.17-10-generic #2 SMP Tue Dec 5 22:28:26 UTC 2006 i686 GNU/Linux) Serpentine: 0.6.91 Tiago, nautilus-cd-burner?? why? I'm not using it. If you see in the report, I'm starting "serpentine" from command line, and it then executes "cdrecord", but it calls it badly (with a broken command line). Or do you mean that "serpentine" is not executing "cdrecord" itself? I'm getting into the trouble of opening a bug report, you could give more explanations. Please. -- Filename not quoted when calling cdrecord https://launchpad.net/bugs/79436 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 79436] Re: Filename not quoted when calling cdrecord
Ah, ok! My ignorance, :p. Another question, just to know what to do next. How can I know If Serpentine is calling nautilus-cd-burner ok? Better, how can I *prove*, that nautilus-cd-burner being called ok, is not having a good behaviour? (all this is just to open a better bug ticket in the library) Regards, -- Filename not quoted when calling cdrecord https://launchpad.net/bugs/79436 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83573] Filename not quoted when calling cdrecord
Public bug reported: Binary package hint: nautilus-cd-burner Using Serpentine, which uses nautilus-cd-burner (see bug #79436 in Serpentine package), if I add a file named, for example (quotes for clarity) "03. Salsa.wav" to the main window, nautilus-cd-burner ends using that name (without the quotes) when calling cdrecord, actually "breaking" the command line. Example of real life: [EMAIL PROTECTED]:~$ serpentine --debug launching command: cdrecord fs=16m dev=/dev/hdc -eject driveropts=burnfree -v -copy -audio -pad /home/mirta/tmpAhl1nw.wav -copy -audio -pad /home/mirta/tmpGR3NXF.wav -copy -audio -pad /home/mirta/music/03. Salsa.wav -copy -audio -pad /home/mirta/tmpLVZAYK.wav -copy -audio -pad /home/mirta/tmpBlpZrl.wav -copy -audio -pad /home/mirta/tmpzlfGT8.wav -copy -audio -pad /home/mirta/tmpU86ZnR.wav ... That leads to cdrecord giving a cryptic message of error (No such file or directory. Cannot open ''.). If I call cdrecord with the same as before but that problematic filename quoted, like the following sentence, everything goes ok: cdrecord fs=16m dev=/dev/hdc -eject driveropts=burnfree -v -copy -audio -pad /home/mirta/tmpAhl1nw.wav -copy -audio -pad /home/mirta/tmpGR3NXF.wav -copy -audio -pad "/home/mirta/music/03. Salsa.wav" -copy -audio -pad /home/mirta/tmpLVZAYK.wav -copy -audio -pad /home/mirta/tmpBlpZrl.wav -copy -audio -pad /home/mirta/tmpzlfGT8.wav -copy -audio -pad /home/mirta/tmpU86ZnR.wav ... Regards, ** Affects: nautilus-cd-burner (Ubuntu) Importance: Undecided Status: Unconfirmed -- Filename not quoted when calling cdrecord https://launchpad.net/bugs/83573 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 79436] Re: Filename not quoted when calling cdrecord
I opened the bug #83573 in nautilus-cd-burner regarding this problem (with a backreference to this bug). Please, could you close this? Thanks! -- Filename not quoted when calling cdrecord https://launchpad.net/bugs/79436 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 456629] Re: Ubuntu One doesn't synchronize all files
Hi all! In all the cases mentioned here the ubuntone-client appears to be working ok, or with a problem that we already identified and fixed for Lucid. Regarding the last comment, you should let the client go to idle (state: QUEUE_MANAGER, queues: IDLE). Note that WORKING_ON_ means that it's actually working on something, so there may be the reason that you still don't see your files. If after leaving the client to go idle, you still see any issue, we would need DEBUG logs to find the problem and fix it. You should do the following: 1. stop the syncdaemon client and be sure it's fully stopped ("ps -eaf | grep ubuntuone-client" should give you nothing). 2. put a file named syncdaemon.conf in your $HOME/.config/ubuntuone directory with the following information: [__main__] log_level = DEBUG 3. restart the client. 4. attach here the logs, just zip you $HOME/.cache/ubuntuone/log/ folder and attach the zip here. Thanks for your time and help! -- Ubuntu One doesn't synchronize all files https://bugs.launchpad.net/bugs/456629 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 456629] Re: Ubuntu One doesn't synchronize all files
** Tags added: chicharra ** Changed in: ubuntuone-client (Ubuntu) Status: Confirmed => Incomplete -- Ubuntu One doesn't synchronize all files https://bugs.launchpad.net/bugs/456629 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 530268] Re: MOVE_SELF handling renames the directory incorrectly
** Changed in: pyinotify (Ubuntu) Importance: Medium => High -- MOVE_SELF handling renames the directory incorrectly https://bugs.launchpad.net/bugs/530268 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 566850] Re: Syncdaemon is really slow to upload my files and has INTERNAL_ERRORS
Searched in the servers, and we're getting timeouts from s3 for this user: 2010-04-19 19:19:38,665 ERRORstorage.server: 39329674-f1b2-4bce-b7d7-f1aa7cba3dae 10.214.43.22:54865 statik GetContentResponse 65 Request error TimeoutError: User timeout caused connection failure. 2010-04-19 19:19:38,666 INFO storage.server: Stopping factory http://s3.amazonaws.com:80/ubuntuone-storage/69301463-0dbe-409f-906f-0e40ae489e79> This TimeoutError is translated into INTERNAL_ERROR, we need to handle better this error -- Syncdaemon is really slow to upload my files and has INTERNAL_ERRORS https://bugs.launchpad.net/bugs/566850 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 478560] Re: path must not be trusted anymore
Hi! So, I'm marking this bug as invalid, as we can not reproduce it again and we don't have enough information to proceed. Feel free to reopen it or open a new bug if something like this happens to you again. Remember that if you have any doubt it may be quicker to contact us in the #ubuntuone IRC channel, on Freenode. You can ping me directly, my nick is facundobatista. Thanks for your time and help! ** Changed in: ubuntuone-client (Ubuntu) Status: Incomplete => Invalid ** Changed in: ubuntuone-client Status: Incomplete => Invalid -- path must not be trusted anymore https://bugs.launchpad.net/bugs/478560 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 464868] Re: Ubuntu One applet crashes after authentication failed and 1GB of files to sync
** Changed in: ubuntuone-client Status: Incomplete => Invalid -- Ubuntu One applet crashes after authentication failed and 1GB of files to sync https://bugs.launchpad.net/bugs/464868 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550921] [NEW] Crashed when trying to resize an image
Public bug reported: Binary package hint: gthumb I just tried to resize an image, it crashed when saving. Apport started but finish saying that it couldn't report that kind of crashes. OTOH, I got on the terminal: gthumb: tiffcomposite.cpp:1141: virtual uint32_t Exiv2::Internal::TiffDirectory::doWrite(Exiv2::Internal::IoWrapper&, Exiv2::ByteOrder, int32_t, uint32_t, uint32_t, uint32_t&): Afirmación `sv == d' fallida. Regards, ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: gthumb 3:2.11.2.1-2 ProcVersionSignature: Ubuntu 2.6.32-18.27-generic-pae 2.6.32.10+drm33.1 Uname: Linux 2.6.32-18-generic-pae i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Mon Mar 29 11:29:23 2010 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash SourcePackage: gthumb ** Affects: gthumb (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 lucid -- Crashed when trying to resize an image https://bugs.launchpad.net/bugs/550921 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550921] Re: Crashed when trying to resize an image
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/42384518/Dependencies.txt -- Crashed when trying to resize an image https://bugs.launchpad.net/bugs/550921 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 212267] Re: Scale images strips out Exif data
I tried to test if it still lost exif data, but gthum just crashed me when tried to resize a photo :( (opened bug #550921 for this). -- Scale images strips out Exif data https://bugs.launchpad.net/bugs/212267 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550968] [NEW] When I put the mouse on a notification, it does not disappear, just gets a new border
Public bug reported: Binary package hint: notify-osd Previously, it disappeared so I could see what is in the screen under the notification. Note: I don't have any desktop effects enabled. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: notify-osd 0.9.27-0ubuntu1 ProcVersionSignature: Ubuntu 2.6.32-18.27-generic-pae 2.6.32.10+drm33.1 Uname: Linux 2.6.32-18-generic-pae i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Mon Mar 29 12:30:51 2010 GtkTheme: Ambiance IconTheme: ubuntu-mono-dark InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) MachineType: System manufacturer System Product Name ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-18-generic-pae root=UUID=36e2b8ee-57a4-4979-9a19-3e012247bf73 ro quiet splash ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash RelatedPackageVersions: xserver-xorg 1:7.5+3ubuntu1 libgl1-mesa-glx 7.7-4ubuntu1 libdrm2 2.4.18-1ubuntu2 xserver-xorg-video-intel 2:2.9.1-1ubuntu17 xserver-xorg-video-ati 1:6.12.191-1ubuntu2 SourcePackage: notify-osd WindowManager: metacity dmi.bios.date: 04/16/2008 dmi.bios.vendor: Phoenix Technologies, LTD dmi.bios.version: ASUS M2N SLI ACPI BIOS Revision 0802 dmi.board.name: M2N-SLI dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: 1.XX dmi.chassis.asset.tag: 123456789000 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2NSLIACPIBIOSRevision0802:bd04/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-SLI:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer ** Affects: notify-osd (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 lucid -- When I put the mouse on a notification, it does not disappear, just gets a new border https://bugs.launchpad.net/bugs/550968 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550968] Re: When I put the mouse on a notification, it does not disappear, just gets a new border
** Attachment added: "BootDmesg.txt" http://launchpadlibrarian.net/42390811/BootDmesg.txt ** Attachment added: "CurrentDmesg.txt" http://launchpadlibrarian.net/42390812/CurrentDmesg.txt ** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/42390813/Dependencies.txt ** Attachment added: "Lsmod.txt" http://launchpadlibrarian.net/42390814/Lsmod.txt ** Attachment added: "Lspci.txt" http://launchpadlibrarian.net/42390815/Lspci.txt ** Attachment added: "Lsusb.txt" http://launchpadlibrarian.net/42390816/Lsusb.txt ** Attachment added: "ProcCpuinfo.txt" http://launchpadlibrarian.net/42390817/ProcCpuinfo.txt ** Attachment added: "ProcInterrupts.txt" http://launchpadlibrarian.net/42390818/ProcInterrupts.txt ** Attachment added: "ProcModules.txt" http://launchpadlibrarian.net/42390819/ProcModules.txt ** Attachment added: "UdevDb.txt" http://launchpadlibrarian.net/42390820/UdevDb.txt ** Attachment added: "UdevLog.txt" http://launchpadlibrarian.net/42390821/UdevLog.txt ** Attachment added: "XorgConf.txt" http://launchpadlibrarian.net/42390822/XorgConf.txt ** Attachment added: "XorgLog.txt" http://launchpadlibrarian.net/42390823/XorgLog.txt ** Attachment added: "XorgLogOld.txt" http://launchpadlibrarian.net/42390824/XorgLogOld.txt ** Attachment added: "Xrandr.txt" http://launchpadlibrarian.net/42390825/Xrandr.txt ** Attachment added: "glxinfo.txt" http://launchpadlibrarian.net/42390826/glxinfo.txt ** Attachment added: "setxkbmap.txt" http://launchpadlibrarian.net/42390827/setxkbmap.txt ** Attachment added: "xdpyinfo.txt" http://launchpadlibrarian.net/42390828/xdpyinfo.txt -- When I put the mouse on a notification, it does not disappear, just gets a new border https://bugs.launchpad.net/bugs/550968 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550921] Re: Crashed when trying to resize an image
Done: https://bugzilla.gnome.org/show_bug.cgi?id=614265 BTW, the photo is: http://farm5.static.flickr.com/4065/4472878997_3db112d293_o_d.jpg ** Bug watch added: GNOME Bug Tracker #614265 https://bugzilla.gnome.org/show_bug.cgi?id=614265 -- Crashed when trying to resize an image https://bugs.launchpad.net/bugs/550921 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 570724] [NEW] Rhythmbox plugin calls SyncDaemon status every 5 seconds in Downloads page
Public bug reported: It should not poll SyncDaemon for this information, there's a DBus signal that can be used to react to any change. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: libubuntuone-1.0-1 0.3.1-0ubuntu1 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic-pae 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic-pae i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Tue Apr 27 10:50:54 2010 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash SourcePackage: libubuntuone ** Affects: libubuntuone (Ubuntu) Importance: High Assignee: Rodrigo Moya (rodrigo-moya) Status: Confirmed ** Tags: apport-bug i386 lucid -- Rhythmbox plugin calls SyncDaemon status every 5 seconds in Downloads page https://bugs.launchpad.net/bugs/570724 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 570724] Re: Rhythmbox plugin calls SyncDaemon status every 5 seconds in Downloads page
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/45726907/Dependencies.txt ** Changed in: libubuntuone (Ubuntu) Status: New => Confirmed ** Changed in: libubuntuone (Ubuntu) Importance: Undecided => Medium ** Changed in: libubuntuone (Ubuntu) Importance: Medium => High ** Changed in: libubuntuone (Ubuntu) Assignee: (unassigned) => Rodrigo Moya (rodrigo-moya) -- Rhythmbox plugin calls SyncDaemon status every 5 seconds in Downloads page https://bugs.launchpad.net/bugs/570724 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Re: ALSA levels drop everytime I unplug/plug my USB headset
Hi Jeremy: The bug is still alive, I'm using a fully updated Lucid. Sorry, I can not try other kernels, but note that this is a regression: this didn't happen before, and I know I'm not the only one who suffer this. Regards, ** Tags added: apport-collected ** Description changed: Binary package hint: pulseaudio Steps: - I hear music ok; alsamixer shows level at 80% (for example) - unplug the USB headset - plug the USB headset again - music is way too low; alsamixer shows level at 0% The volume should be persistent across unplug/plug. ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: facundo 29969 F pulseaudio /dev/snd/pcmC0D0p: facundo 29969 F...m pulseaudio /dev/snd/controlC1: facundo 29969 F pulseaudio Card0.Amixer.info: Card hw:0 'Headset'/'Logitech Logitech USB Headset at usb-:00:02.0-1, full speed' Mixer name : 'USB Mixer' Components : 'USB046d:0a01' Controls : 6 Simple ctrls : 2 Card1.Amixer.info: Card hw:1 'default'/'PnP Audio Device at usb-:00:02.0-7, full speed' Mixer name : 'USB Mixer' Components : 'USB0d8c:0201' Controls : 17 Simple ctrls : 6 Date: Thu Mar 25 16:30:33 2010 DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12 PciMultimedia: ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-16.25-generic-pae SourcePackage: pulseaudio Uname: Linux 2.6.32-16-generic-pae i686 + --- + AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. + Architecture: i386 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/controlC1: facundo1604 F pulseaudio + /dev/snd/pcmC1D0c: facundo1604 F...m pulseaudio + /dev/snd/pcmC1D0p: facundo1604 F...m pulseaudio + /dev/snd/controlC0: facundo1604 F pulseaudio + CRDA: Error: [Errno 2] No existe el fichero ó directorio + Card0.Amixer.info: + Card hw:0 'default'/'PnP Audio Device at usb-:00:02.0-7, full speed' +Mixer name : 'USB Mixer' +Components : 'USB0d8c:0201' +Controls : 17 +Simple ctrls : 6 + Card1.Amixer.info: + Card hw:1 'Headset'/'Logitech Logitech USB Headset at usb-:00:02.0-2, full speed' +Mixer name : 'USB Mixer' +Components : 'USB046d:0a01' +Controls : 6 +Simple ctrls : 2 + DistroRelease: Ubuntu 10.04 + HibernationDevice: RESUME=UUID=66aafc25-d6a5-4ef0-b4d9-ba58dd1f6810 + InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) + IwConfig: + lono wireless extensions. + + eth0 no wireless extensions. + + virbr0no wireless extensions. + MachineType: System manufacturer System Product Name + NonfreeKernelModules: nvidia + Package: linux (not installed) + PciMultimedia: + + ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-21-generic-pae root=UUID=36e2b8ee-57a4-4979-9a19-3e012247bf73 ro quiet splash + ProcEnviron: + PATH=(custom, user) + LANG=es_AR.UTF-8 + SHELL=/bin/bash + ProcVersionSignature: Ubuntu 2.6.32-21.32-generic-pae 2.6.32.11+drm33.2 + Regression: Yes + RelatedPackageVersions: linux-firmware 1.34 + Reproducible: Yes + RfKill: + + Tags: lucid audio regression-potential needs-upstream-testing + Uname: Linux 2.6.32-21-generic-pae i686 + UserGroups: adm admin cdrom dialout libvirtd lpadmin plugdev sambashare + WifiSyslog: + Apr 28 11:37:05 phenomenux kernel: [960534.464024] usb 2-2: new full speed USB device using ohci_hcd and address 13 + Apr 28 11:37:05 phenomenux kernel: [960534.679813] usb 2-2: configuration #1 chosen from 1 choice + Apr 28 16:12:52 phenomenux kernel: [977081.815143] usb 2-2: USB disconnect, address 13 + Apr 28 16:12:54 phenomenux kernel: [977083.484027] usb 2-2: new full speed USB device using ohci_hcd and address 14 + Apr 28 16:12:54 phenomenux kernel: [977083.704742] usb 2-2: configuration #1 chosen from 1 choice + dmi.bios.date: 04/16/2008 + dmi.bios.vendor: Phoenix Technologies, LTD + dmi.bios.version: ASUS M2N SLI ACPI BIOS Revision 0802 + dmi.board.name: M2N-SLI + dmi.board.vendor: ASUSTeK Computer INC. + dmi.board.version: 1.XX + dmi.chassis.asset.tag: 123456789000 + dmi.chassis.type: 3 + dmi.chassis.vendor: Chassis Manufacture + dmi.chassis.version: Chassis Version + dmi.modalias: dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2NSLIACPIBIOSRevision0802:bd04/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-SLI:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion: + dmi.product.name: System Product Name + dmi.product.version: System Version + dmi.sys.vendor: System manufacturer -- ALSA levels drop everytime I unplug
[Bug 547193] AlsaDevices.txt
apport information ** Attachment added: "AlsaDevices.txt" http://launchpadlibrarian.net/46033451/AlsaDevices.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] AplayDevices.txt
apport information ** Attachment added: "AplayDevices.txt" http://launchpadlibrarian.net/46033458/AplayDevices.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] ArecordDevices.txt
apport information ** Attachment added: "ArecordDevices.txt" http://launchpadlibrarian.net/46033465/ArecordDevices.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Card1.Amixer.values.txt
apport information ** Attachment added: "Card1.Amixer.values.txt" http://launchpadlibrarian.net/46033486/Card1.Amixer.values.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Lspci.txt
apport information ** Attachment added: "Lspci.txt" http://launchpadlibrarian.net/46033493/Lspci.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Lsusb.txt
apport information ** Attachment added: "Lsusb.txt" http://launchpadlibrarian.net/46033497/Lsusb.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" http://launchpadlibrarian.net/46033503/ProcInterrupts.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] BootDmesg.txt
apport information ** Attachment added: "BootDmesg.txt" http://launchpadlibrarian.net/46033474/BootDmesg.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Card0.Amixer.values.txt
apport information ** Attachment added: "Card0.Amixer.values.txt" http://launchpadlibrarian.net/46033479/Card0.Amixer.values.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" http://launchpadlibrarian.net/46033491/CurrentDmesg.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] Re: ALSA levels drop everytime I unplug/plug my USB headset
Jeremy, it seems that apport-collect updated the description here. -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" http://launchpadlibrarian.net/46033500/ProcCpuinfo.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" http://launchpadlibrarian.net/46033537/UdevDb.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" http://launchpadlibrarian.net/46033521/ProcModules.txt -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 547193] UdevLog.txt
apport information ** Attachment added: "UdevLog.txt" http://launchpadlibrarian.net/46033555/UdevLog.txt ** Changed in: linux (Ubuntu) Status: Incomplete => New -- ALSA levels drop everytime I unplug/plug my USB headset https://bugs.launchpad.net/bugs/547193 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 456629] Re: Ubuntu One doesn't synchronize all files
Hi, papukaija, NeoRazorX, this bug is marked "incomplete" as for the request in comment #23. Please read it, and if it applies to your current situation, please follow those instructions. Thank you! Regards, -- Ubuntu One doesn't synchronize all files https://bugs.launchpad.net/bugs/456629 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 456629] Re: Ubuntu One doesn't synchronize all files
** Changed in: ubuntuone-client (Ubuntu) Status: Confirmed => Incomplete -- Ubuntu One doesn't synchronize all files https://bugs.launchpad.net/bugs/456629 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 573800] Re: U1 10.04 does not sync, failed with the error:TRY_AGAIN
The TRY_AGAIN message is being handled correctly (it reconnects and tries again). However, we're logging that bad: it should not be ERROR, but INFO. OTOH, we're experiencing that too much: our systems are overloaded and we're working on that (this is why you may think that Ubuntu One is not syncing). I'm changing the title to show this better. -- U1 10.04 fails with the error: TRY_AGAIN, should log it in INFO https://bugs.launchpad.net/bugs/573800 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 573800] Re: U1 10.04 fails with the error: TRY_AGAIN, should log it in INFO
** Summary changed: - U1 10.04 does not sync, failed with the error:TRY_AGAIN + U1 10.04 fails with the error: TRY_AGAIN, should log it in INFO ** Changed in: ubuntuone-client (Ubuntu) Importance: Critical => High -- U1 10.04 fails with the error: TRY_AGAIN, should log it in INFO https://bugs.launchpad.net/bugs/573800 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 575817] Re: Uploaded file don't receive hash id from server
** Changed in: ubuntuone-client (Ubuntu) Importance: Undecided => Critical ** Changed in: ubuntuone-client (Ubuntu) Status: Confirmed => In Progress -- Uploaded file don't receive hash id from server https://bugs.launchpad.net/bugs/575817 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 575817] Re: Interrupted upload is not retried
** Branch linked: lp:~facundo/ubuntuone-client/query-no-content-file -- Interrupted upload is not retried https://bugs.launchpad.net/bugs/575817 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 489813] Re: The Syncy of Files is not accurate and takes multiple log-ins to get it right
Hi! We would need DEBUG logs to find the issue here. You should do the following: 1. stop the syncdaemon client and be sure it's fully stopped ("ps -eaf | grep ubuntuone-client" should give you nothing). 2. put a file named syncdaemon.conf in your $HOME/.config/ubuntuone directory with the following information: [__main__] log_level = DEBUG 3. restart the client. 4. attach here the logs, just zip you $HOME/.cache/ubuntuone/log/ folder and attach the zip here. Thanks for your time and help! ** Changed in: ubuntuone-client (Ubuntu) Status: Confirmed => Incomplete -- The Syncy of Files is not accurate and takes multiple log-ins to get it right https://bugs.launchpad.net/bugs/489813 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 480909] Re: UbuntuOne crash on startup
Hi! So, I'm marking this bug as invalid, as we can not reproduce it again and we don't have enough information to proceed. Feel free to reopen it or open a new bug if something like this happens to you again. Remember that if you have any doubt it may be quicker to contact us in the #ubuntuone IRC channel, on Freenode. You can ping me directly, my nick is facundobatista. Thanks for your time and help! ** Changed in: ubuntuone-client (Ubuntu) Status: Incomplete => Invalid -- UbuntuOne crash on startup https://bugs.launchpad.net/bugs/480909 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 480518] Re: Ubuntuone error
Hi! So, I'm marking this bug as invalid. Feel free to reopen it or open a new bug if something like this happens to you again. Remember that if you have any doubt it may be quicker to contact us in the #ubuntuone IRC channel, on Freenode. You can ping me directly, my nick is facundobatista. Thanks for your time and help! ** Changed in: ubuntuone-client (Ubuntu) Status: Incomplete => Invalid -- Ubuntuone error https://bugs.launchpad.net/bugs/480518 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 481687] Re: problem with upgrade script for Ubuntu 9.10
Hi! So, I'm marking this bug as invalid, as we can not reproduce it again and we don't have enough information to proceed. Feel free to reopen it or open a new bug if something like this happens to you again. Remember that if you have any doubt it may be quicker to contact us in the #ubuntuone IRC channel, on Freenode. You can ping me directly, my nick is facundobatista. Thanks for your time and help! ** Changed in: ubuntuone-client (Ubuntu) Status: Incomplete => Invalid -- problem with upgrade script for Ubuntu 9.10 https://bugs.launchpad.net/bugs/481687 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 483850] Re: Ubuntu One Broken
Dobey, I'm reassigning this to you as it decanted in a notification icon issue. ** Changed in: ubuntuone-client Assignee: Facundo Batista (facundo) => Rodney Dawes (dobey) ** Changed in: ubuntuone-client Importance: High => Medium ** Changed in: ubuntuone-client Status: Incomplete => Confirmed -- Ubuntu One Broken https://bugs.launchpad.net/bugs/483850 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.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs