[Bug 227664] Re: gnome-terminal dies on creation of a new profile
gnome-terminal --name foo immediately shoots all gnome-terminal instances. Is this linked with this? I can't find --name in the man page of gnome-terminal, but it's in the man page of gnome: --name=NAME Program name as used by the window manager I'm running: Ubuntu 8.04.1 and gnome-terminal version 2.22.1-0ubuntu2 -- gnome-terminal dies on creation of a new profile https://bugs.launchpad.net/bugs/227664 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 356633] [NEW] CF cards unsupported
Public bug reported: Binary package hint: usb-creator Hi, I've made a little patch that makes usb-creator accept my CompactFlash card. My ThinkPad T61 doesn't have a CF slot, but it does have a PCMCIA slot, and I'm using my CF card in an adapter that inserts into the laptop. I wanted to try to install Ubuntu on a 1GB CF card, but the device didn't show up as a selectable target, even though Ubuntu does detect and even auto-mount it. So I looked around in the Python sources and came up with a little patch which seems to work on my PCMCIA-mounted 1GB CF card. That is, usb- creator lets me select the CF card (formatted with one large FAT16 partition) and proceed installation as usual. I was hoping my ThinkPad X30 would boot from this CF card, but unfortunately it won't, so this whole operation was perhaps just a waste of time =) Anyway here's the patch! A note: I edited the patch by hand afterwards, because I'd messed up the names of the two source trees, so it probably won't work. Still, it's really easy to understand and fix -- I simply added the pcmcia bus check: diff -Naur /usr/share/pyshared/usbcreator/backend.py /usr/share/pyshared/usbcreator-with-pcmcia-support/backend.py --- /usr/share/pyshared/usbcreator/backend.py 2009-04-06 23:26:29.0 +0200 +++ /usr/share/pyshared/usbcreator-with-pcmcia-support/backend.py 2009-04-06 23:25:05.0 +0200 @@ -354,8 +354,7 @@ d = dbus.Interface(dev_obj, 'org.freedesktop.Hal.Device') if d.GetProperty('storage.drive_type') != 'disk': continue -if d.GetProperty('storage.bus') == 'usb' and \ +if d.GetProperty('storage.bus') == 'usb' or d.GetProperty('storage.bus') == 'pcmcia' and \ d.GetProperty('storage.removable'): if d.GetProperty('block.is_volume'): if d.GetProperty('volume.fstype') == 'vfat': ** Affects: usb-creator (Ubuntu) Importance: Undecided Status: New ** Tags: cf pcmcia -- CF cards unsupported https://bugs.launchpad.net/bugs/356633 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 356633] Re: CF cards unsupported
Oh and: 23:52:18 step...@giana:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 8.10 Release:8.10 Codename: intrepid -- CF cards unsupported https://bugs.launchpad.net/bugs/356633 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 299330] Re: Alt+Tab - switching applications delay. slow
This is still a problem on Ubuntu 20.04. Since it uses a completely different desktop environment, the bug probably has a different root cause, but the annoying user experience is exactly the same. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/299330 Title: Alt+Tab - switching applications delay. slow To manage notifications about this bug go to: https://bugs.launchpad.net/metacity/+bug/299330/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location
I may be misunderstanding niemeyer's message, but just to be clear... "[...] hopefully making it good enough that people[¹] will be excited to use despite the name of a directory not being their preferred one." What's this now? "People[¹]" covers "everyone except the snap developers" you know. There are best practices for naming configuration files and directories, and they have even become standards. And even if wasn't there's still common sense. Placing a non-hidden directory in everyone's home dir conflicts with all of the above. "If there's enough support for that, we can put it in the roadmap for sooner rather than later." Good. Sooner it is then, since this bug report and all its comments clearly shows that people[¹] want it changed. Btw: Does "no longer affects: snappy" mean that is has been fixed? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1575053 Title: Please move the "$HOME/snap" directory to a less obtrusive location To manage notifications about this bug go to: https://bugs.launchpad.net/snapd/+bug/1575053/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1575053] Re: Please move snap user data from "$HOME/snap" to "$HOME/.snap" (or to "$HOME/.local/share/snap" in accordance with the XDG spec)
Today I installed an app that had unfortunately been ported to snap. Again I found my $HOME soiled with that unwanted non-hidden directory. Could this please be moved off the "wishlist" and get some attention? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1575053 Title: Please move snap user data from "$HOME/snap" to "$HOME/.snap" (or to "$HOME/.local/share/snap" in accordance with the XDG spec) To manage notifications about this bug go to: https://bugs.launchpad.net/snapd/+bug/1575053/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1713800] [NEW] Wrong variable name $OPTIONS in /etc/init.d/mediatomb; should be $MT_OPTIONS
Public bug reported: Simple naming bug, easy to fix. However, it does cause user settings to be ignored! In /etc/defaults/mediatomb all settings variables are prefixed by MT_, e.g. line 11: MT_OPTIONS="" But in /etc/init.d/mediatomb only $OPTIONS is missing its MT_ prefix, so line 80 it says: DAEMON_ARGS="-c /etc/mediatomb/config.xml -d -u $MT_USER -g $MT_GROUP -P $MT_PIDFILE -l $MT_LOGFILE $INTERFACE_ARG $OPTIONS" Effectively, any MT_OPTIONS set in /etc/defaults/mediatomb are ignored by the init script. This will fix it, almost as good as a patch: sed 's,$OPTIONS,$MT_OPTIONS,g' -i /etc/init.d/mediatomb ** Affects: mediatomb (Ubuntu) Importance: Undecided Status: New ** Description changed: - Simple naming bug, easy to fix! + Simple naming bug, easy to fix. However, it does cause user settings to + be ignored! In /etc/defaults/mediatomb all settings variables are prefixed by MT_, e.g. line 11: + MT_OPTIONS="" But in /etc/init.d/mediatomb only $OPTIONS is missing its MT_ prefix, so line 80 it says: DAEMON_ARGS="-c /etc/mediatomb/config.xml -d -u $MT_USER -g $MT_GROUP -P $MT_PIDFILE -l $MT_LOGFILE $INTERFACE_ARG $OPTIONS" - Effectively, any MT_OPTIONS set in /etc/defaults/mediatomb are ignored - by the init script. + + Effectively, any MT_OPTIONS set in /etc/defaults/mediatomb are ignored by the init script. This will fix it, almost as good as a patch: sed 's,$OPTIONS,$MT_OPTIONS,g' -i /etc/init.d/mediatomb ** Description changed: Simple naming bug, easy to fix. However, it does cause user settings to be ignored! - - In /etc/defaults/mediatomb all settings variables are prefixed by MT_, e.g. line 11: + In /etc/defaults/mediatomb all settings variables are prefixed by MT_, + e.g. line 11: MT_OPTIONS="" - - But in /etc/init.d/mediatomb only $OPTIONS is missing its MT_ prefix, so line 80 it says: + But in /etc/init.d/mediatomb only $OPTIONS is missing its MT_ prefix, so + line 80 it says: DAEMON_ARGS="-c /etc/mediatomb/config.xml -d -u $MT_USER -g $MT_GROUP -P $MT_PIDFILE -l $MT_LOGFILE $INTERFACE_ARG $OPTIONS" + Effectively, any MT_OPTIONS set in /etc/defaults/mediatomb are ignored + by the init script. - Effectively, any MT_OPTIONS set in /etc/defaults/mediatomb are ignored by the init script. This will fix it, almost as good as a patch: sed 's,$OPTIONS,$MT_OPTIONS,g' -i /etc/init.d/mediatomb -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1713800 Title: Wrong variable name $OPTIONS in /etc/init.d/mediatomb; should be $MT_OPTIONS To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mediatomb/+bug/1713800/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1612618] [NEW] Eog overlays for navigation and rotation are cluttering the image begin displayed
Public bug reported: (I've recently upgraded from Ubuntu 14.04 to 16.04) Test case: 1) Open image in eog. 2) Move mouse pointer around 3) Frustrating and useless hint overlays for nativation prev/next and rotate cw/ccw keep appearing and disappearing and clutter up my view of the image I'm trying to enjoy. I have three suggestions: 1) Remove them from code entirely. I has worked perfectly without them for ages. 2) Make an option to disable them completely. 3) Concentrate all overlay buttons to a block and place it at bottom center (where rotation are now) to make them more user friendly; it's annoying to have to move the mouse across the entire screen to navigate forth/back. But this is just an extra tip, because I basically believe that this feature should be killed all together. What I really used to like about EOG was its simplicity. It shows me my image and nothing more! Nobody wants clutter -- especially clutter they cannot disable. ** Affects: eog (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1612618 Title: Eog overlays for navigation and rotation are cluttering the image begin displayed To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/eog/+bug/1612618/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1575053] Re: User data directory should conform to XDG Base Directory Specification
This should have higher priority as it really affects everyone using snap. It is arrogant to think everyone want your ~/snap directory polluting their $HOME! It's cluttering my shell, file browser, everything! I can't even remember the last time I installed an app that pulled this stunt. Of course this should be changed in accordance with XDG standards. As a minimum this should immediately be changed to ~/.snap. It's an easy fix and is easy to migrate as well. It's 2017, come on. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1575053 Title: User data directory should conform to XDG Base Directory Specification To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1575053/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1620743] [NEW] VPN connetion failed
Public bug reported: When I deliberately disconnect from VPN using Network Indicator > VPN > Disconnect VPN I see a notification saying "VPN connection failed". But nothing has failed. Correct wording should be used e.g. "Disconnected from VPN". ** Affects: tracker (Ubuntu) Importance: Undecided Status: New ** Tags: vpn wording -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1620743 Title: VPN connetion failed To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tracker/+bug/1620743/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1543303] Re: "creating socket failed while establishing local IP - are you root?" even when root
*** This bug is a duplicate of bug 1531847 *** https://bugs.launchpad.net/bugs/1531847 Please update the package. And don't forget to backport to Ubuntu 14.04 LTS. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1543303 Title: "creating socket failed while establishing local IP - are you root?" even when root To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nethogs/+bug/1543303/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889145] Re: focus follows mouse breaks desktop interaction
*** This bug is a duplicate of bug 674138 *** https://bugs.launchpad.net/bugs/674138 Still broken in Ubuntu 14.04. Please fix. It should be a simple matter of focusing the desktop just like any other window? Giving the desktop focus on default when no windows is under the mouse? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889145 Title: focus follows mouse breaks desktop interaction To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/889145/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1325801] Re: failed to boot from USB disk with error: gfxboot.c32: not a COM32R Image boot:
I get the error when using the Startup Disk Creator on Ubuntu 14.04 to make a startup USB stick of ubuntu-15.04-desktop-amd64.iso and booting it within Startup Disk Creator (using the Test button, or running "sudo qemu-system-x86_64 -enable-kvm -m 512 -hda /dev/sdb" manually). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1325801 Title: failed to boot from USB disk with error: gfxboot.c32: not a COM32R Image boot: To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-cdimage/+bug/1325801/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450436] [NEW] Configure Chromecast as monitor
Public bug reported: THIS IS A KIND FEATURE REQUEST -- not a bug Under System "Settings > Displays" it would be really nice, if Chromecast devices were automatically detected and appeared like any normal monitor that is connected directly to the computer; ie. unity- control-center should transparently allow the Chromecast device to be used as a secondary or even a primary monitor, configure mirroring, launcher placement, scale and everything. Resolutions of a chromecast is most likely fixed. But when configuring a screencast-to-Chromecast from the Chrome browser, a image quality or speed option is present. Maybe there should be room for this somewhere in the unity-control-center's "Displays" window. Remember to state the name of the Chromecast so one can tell multiple chromecasts from another. I've added a screenshot to demonstrate the idea. Currently running Ubuntu 14.04, so I don't know if this has actually been implemented in 15.04. ** Affects: unity-control-center (Ubuntu) Importance: Undecided Status: New ** Tags: chromecast display ** Attachment added: "display-chromecast.jpg" https://bugs.launchpad.net/bugs/1450436/+attachment/4388277/+files/display-chromecast.jpg -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450436 Title: Configure Chromecast as monitor To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1450436/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450436] Re: Configure Chromecast as monitor
** Attachment removed: "display-chromecast.jpg" https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1450436/+attachment/4388277/+files/display-chromecast.jpg ** Attachment added: "Example of Chromecast having been detected and configured" https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1450436/+attachment/4388278/+files/display-chromecast.jpg ** Description changed: THIS IS A KIND FEATURE REQUEST -- not a bug Under System "Settings > Displays" it would be really nice, if Chromecast devices were automatically detected and appeared like any normal monitor that is connected directly to the computer; ie. unity- control-center should transparently allow the Chromecast device to be used as a secondary or even a primary monitor, configure mirroring, launcher placement, scale and everything. - Resolutions of a chromecast is most likely fixed. But when configuring - a screencast-to-Chromecast from the Chrome browser, a image quality or - speed option is present. Maybe there should be room for this somewhere - in the unity-control-center's "Displays" window. Remember to state the - name of the Chromecast so one can tell multiple chromecasts from - another. + Resolution of a chromecast is most likely fixed and the option should + therefore be ghosted. But when configuring a screencast-to-Chromecast + from the Chrome browser, an image-quality-vs-refresh-speed option is + present, so a dropdown for this is necessary here too. Remember to + state the Chromecast device name so one can tell multiple chromecasts + from another. I've added a screenshot to demonstrate the idea. - Currently running Ubuntu 14.04, so I don't know if this has actually - been implemented in 15.04. + I'm currently running Ubuntu 14.04, so I don't know if this has actually + been implemented in 15.04. But I haven't found any blogs describing it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450436 Title: Configure Chromecast as monitor To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1450436/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450778] [NEW] Worker for Ubuntu is 3 years out of date -- please build new package
Public bug reported: Lots of new features are missing! ** Affects: worker (Ubuntu) Importance: Undecided Status: New ** Summary changed: - Worker is 3 years behind -- please build new packages + Worker for Ubuntu is 3 years out of date -- please build new packages ** Summary changed: - Worker for Ubuntu is 3 years out of date -- please build new packages + Worker for Ubuntu is 3 years out of date -- please build new package -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450778 Title: Worker for Ubuntu is 3 years out of date -- please build new package To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/worker/+bug/1450778/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1450778] Re: Worker for Ubuntu 14.04 is 3 years out of date -- please backport
** Summary changed: - Worker for Ubuntu is 3 years out of date -- please build new package + Worker for Ubuntu 14.04 is 3 years out of date -- please backport -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1450778 Title: Worker for Ubuntu 14.04 is 3 years out of date -- please backport To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/worker/+bug/1450778/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889145] Re: focus follows mouse breaks desktop interaction
*** This bug is a duplicate of bug 674138 *** https://bugs.launchpad.net/bugs/674138 Super+D doesn't just change the focus to the desktop -- it also hides all windows, which is not what I want. The focus should follow the mouse to the desktop. Not even clicking the desktop will give it focus! This is still a bug that must be fixed. I hope it's gone in 15.04... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889145 Title: focus follows mouse breaks desktop interaction To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/889145/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 94940] Re: mdns listed in nsswitch.conf causes excessive time for dns lookups
Thank you for a detailed and competent answer. This clarifies the issue. Now it makes sense why this cannot and should not be fixed in Ubuntu. To summarize: If you experience lookup delays, change your /etc/nsswitch.conf to this: $ cat /etc/nsswitch.conf # /etc/nsswitch.conf # # Example configuration of GNU Name Service Switch functionality. # If you have the `glibc-doc-reference' and `info' packages installed, try: # `info libc "Name Service Switch"' for information about this file. passwd: compat group: compat shadow: compat # https://bugs.launchpad.net/ubuntu/+source/nss-mdns/+bug/94940 # Original, delayed lookup on improperly configured internal networks: #hosts: files mdns4_minimal [NOTFOUND=return] dns # Use this if you're not on a local network with Microsoft services or if you don't need on them: #hosts: files dns # Delays looking up hosts on your internal network, but you *will* get the best of both worlds; # multicast DNS resolution *and* resolution of your incorrectly-named internal network: hosts: files mdns4_minimal dns networks: files protocols: db files services: db files ethers: db files rpc:db files netgroup: nis -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/94940 Title: mdns listed in nsswitch.conf causes excessive time for dns lookups To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/avahi/+bug/94940/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1297790] Re: "Unknown audio device" dialog pops up every time I plug in headphones
Or what about: http://voices.canonical.com/david.henningsson/2014/03/07/headset-jacks- on-newer-laptops/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1297790 Title: "Unknown audio device" dialog pops up every time I plug in headphones To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity-settings-daemon/+bug/1297790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1297790] Re: "Unknown audio device" dialog pops up every time I plug in headphones
Crikey, someone should really add an edit button to posts! I meant this link: https://wiki.ubuntu.com/Sound#Handling_unknown_audio_jack_devices -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1297790 Title: "Unknown audio device" dialog pops up every time I plug in headphones To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity-settings-daemon/+bug/1297790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1297790] Re: "Unknown audio device" dialog pops up every time I plug in headphones
I'm getting this dialog whenever I jack in my ordinary stereo headphones in my laptop! Please add: [x] Don't show this dialog again when a similar device is plugged in. Or if that's too difficult: [x] Don't show this dialog again. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1297790 Title: "Unknown audio device" dialog pops up every time I plug in headphones To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity-settings-daemon/+bug/1297790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 794575] Re: apctest gives a FATAL ERROR in device.c at line 71
This bug report helped me read the output properly too =) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/794575 Title: apctest gives a FATAL ERROR in device.c at line 71 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apcupsd/+bug/794575/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 674138] Re: "Global" appmenu breaks sloppy focus
Horrible bug that causes data loss: 1) Open a Nautilus file browser window. 2) Focus a directory or file. 3) Create a file or directory on the desktop, while the Nautilus window is open. 4) Click on the file or directory on the desktop. 5) Press the Delete key on the keyboard to delete the newly selected item on the desktop. 6) RESULT: The selected item in the *Nautilus window* gets deleted! Please fix sloppy mouse focus on desktop. Please fix it now. It's about time. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/674138 Title: "Global" appmenu breaks sloppy focus To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/674138/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 434850] Re: [needs-packaging] pfscalibration
Bump! Still no pfscalibraiton in pfstools for Ubuntu 14.04.01. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/434850 Title: [needs-packaging] pfscalibration To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/434850/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 434850] Re: [needs-packaging] pfscalibration
Too much management. Why not just fix it? =) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/434850 Title: [needs-packaging] pfscalibration To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/434850/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 787738] Re: [Thinkpad X220/E220s/E420s] trackpoint/trackpoint displays odd behaviour
(Samsung touchpad is an Elan Tech) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/787738 Title: [Thinkpad X220/E220s/E420s] trackpoint/trackpoint displays odd behaviour To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/787738/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 642734] Re: network-manager won't use stored pin code for activate 3G modem
Same problem on 11.10 on ThinkPad X220. Maybe this doesn't have anything to do with the keyring; I can change the PIN code using the Network Manager and it gets correctly stored in /etc/NetworkManager/system-connections/MyMobileBroadbandProfile but this particular parameter appears to be ignored when read. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/642734 Title: network-manager won't use stored pin code for activate 3G modem To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/642734/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 642734] Re: network-manager won't use stored pin code for activate 3G modem
These two seem to be duplicates of this bug (and are referring each other as duplicates too) and are not yet listed as duplicates of this bug: - https://bugs.launchpad.net/bugs/704123 - https://bugs.launchpad.net/bugs/675039 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/642734 Title: network-manager won't use stored pin code for activate 3G modem To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/642734/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 787738] Re: [Thinkpad X220/E220s/E420s] trackpoint/trackpoint displays odd behaviour
I'm not sure if this information is of any use at all but here goes: I recently installed Oneiric on my girlfriends Samsung laptop, and its trackpad had the exact same behavior as described in comment #13. Note that this laptop does *not* have a Synaptics Touchpad but a different one which I of course can't remember the name of. I worked around this by installing and booting the latest 2.6 kernel from Natty instead of the 3.0 from Oneiric. The 2.6 kernel apparently has a bug that recognizes the trackpad as a Synaptics Touchpad, which I benefit from (sacrificing multitouch). More about this here: https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Touchpad_detected_as_Logitech_PS.2F2_mouse_on_a_Samsung_notebook I'm thinking that maybe downgrading the kernel could be helpful in debugging this. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/787738 Title: [Thinkpad X220/E220s/E420s] trackpoint/trackpoint displays odd behaviour To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/787738/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 207065] Re: Bad Compiz Bindings Bug
I just realised that my post is wrong (and that I cannot delete it). But what I meant to say is related: In my Ocelot resize doesn't work with the default Alt+Button2 (middle). I've managed to bind it to Alt+Button3 (right), but that's not what I want. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/207065 Title: Bad Compiz Bindings Bug To manage notifications about this bug go to: https://bugs.launchpad.net/compiz/+bug/207065/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 207065] Re: Bad Compiz Bindings Bug
Bug still appears in 11.10 ocelot. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/207065 Title: Bad Compiz Bindings Bug To manage notifications about this bug go to: https://bugs.launchpad.net/compiz/+bug/207065/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1812780] Re: Gnome Shell crashes with SIGSEGV when Android emulator started
*** This bug is a duplicate of bug 1812527 *** https://bugs.launchpad.net/bugs/1812527 This is really getting a big problem since I cannot use the emulator for my daily work. Is there anything I can do to help debug this? It is quite easy to reproduce as it happens every time I switch workspace with the emulator running, no matter what state the emulator is in; meaning the developers of this can easily reproduce this themselves: 1) Install full Android Studio with JDK, e.g. in ~/opt/android-studio to not pollute their computer 2) Start the Emulator; install any Android version in the process. 3) Switch Workspace. 4) Observe crash. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1812780 Title: Gnome Shell crashes with SIGSEGV when Android emulator started To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1812780/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1812780] Re: Gnome Shell crashes with SIGSEGV when Android emulator started
*** This bug is a duplicate of bug 1812527 *** https://bugs.launchpad.net/bugs/1812527 I see this bug has been marked as a duplicate; ignore my post, sorry. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1812780 Title: Gnome Shell crashes with SIGSEGV when Android emulator started To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gjs/+bug/1812780/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs