[Bug 1533043] Re: AUFS can hang up; Please update to v20160111
Is this patch also going to be included in an update for the linux- generic-lts-trusty package for Ubuntu 12.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/1533043 Title: AUFS can hang up; Please update to v20160111 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1533043/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 902710] Re: Rhytmbox freezes during playback
Additional information: * Rhythmbox almost always freezes towards the end of playing the current song * Crossfading is disabled ** Summary changed: - Rhytmbox freezez + Rhytmbox freezes during playback -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/902710 Title: Rhytmbox freezes during playback To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/902710/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 902710] Re: Rhytmbox freezez
I experience this problem frequently. It usually occurs shortly after my screen fades from inactivity. I am attaching a backtrace of a recent crash. At the point of the crash, these two lines appeared in gdb: (rhythmbox:24997): GLib-CRITICAL **: g_str_has_prefix: assertion `str != NULL' failed ** (rhythmbox:24997): CRITICAL **: deactivate_group: assertion `group->active' failed ** Attachment added: "gdb-rhythmbox.txt" https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/902710/+attachment/2727870/+files/gdb-rhythmbox.txt ** Changed in: rhythmbox (Ubuntu) Status: Incomplete => New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/902710 Title: Rhytmbox freezes during playback To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/902710/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 784110] Re: modindex.html missing from HTML documentation
Why has a bugfix not been issued for this for Ubuntu 11.04? It is trivial to resolve. I have attached the missing file for those of you tired of waiting for the Ubuntu Python team to come and fix this, I have attached the missing file. Save the file and then in the Terminal, do sudo cp modindex.html /usr/share/doc/python2.7/html/ ** Attachment added: "modindex.html" https://bugs.launchpad.net/ubuntu/+source/python-defaults/+bug/784110/+attachment/2210790/+files/modindex.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/784110 Title: modindex.html missing from HTML documentation To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-defaults/+bug/784110/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 802036] Re: remove command can fail for addons, contains possible infinite loop
Here is a patch that should be applied to the file addon-manager.rb The patch fixes the errant while-loop. ** Patch added: "addon-manager.rb-while.patch" https://bugs.launchpad.net/ubuntu/+source/vim-addon-manager/+bug/802036/+attachment/2181520/+files/addon-manager.rb-while.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/802036 Title: remove command can fail for addons, contains possible infinite loop To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim-addon-manager/+bug/802036/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 802036] Re: remove command can fail for addons, contains possible infinite loop
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/802036 Title: remove command can fail for addons, contains possible infinite loop To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim-addon-manager/+bug/802036/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 802036] [NEW] remove command can fail for addons, contains possible infinite loop
Public bug reported: The Ruby script addon-manager.rb contains an error in the code for the remove command. This bug causes certain addons where the ~/.vim directory is actually a symbolic link to another directory. This is the case for the Vim R plugin, distributed as a Debian package here: http://sites.google.com/site/jalvesaq/vimrplugin Removal will fail because it attempts to invoke a rmdir on the symbolically-linked ~/.vim file, which causes a Ruby exception. Steps to reproduce the behavior: 1) Install vim-addon-manager 2) Install the Vim R plugin DEB package from http://sites.google.com/site/jalvesaq/vimrplugin 3) Move the ~/.vim folder to another location, such as ~/vimbak 4) Create a temporary folder ~/tmpvim 5) Create a symbolic link with "ln -s ~/tmpvim ~/.vim" 6) Run "vim-addons install r-plugin" 7) Run "vim-addons remove r-plugin" 8) Observe an error message like the following Info: removing installed addon 'r-plugin' from /home/chris/.vim /usr/lib/ruby/1.8/fileutils.rb:264:in `rmdir': Not a directory - /home/chris/.vim (Errno::ENOTDIR) from /usr/lib/ruby/1.8/fileutils.rb:264:in `rmdir' from /usr/lib/ruby/1.8/fileutils.rb:263:in `each' from /usr/lib/ruby/1.8/fileutils.rb:263:in `rmdir' from /usr/lib/ruby/1.8/vim/addon-manager.rb:68:in `remove' from /usr/lib/ruby/1.8/set.rb:194:in `each' from /usr/lib/ruby/1.8/set.rb:194:in `each_key' from /usr/lib/ruby/1.8/set.rb:194:in `each' from /usr/lib/ruby/1.8/vim/addon-manager.rb:80:in `remove' from /usr/lib/ruby/1.8/vim/addon-manager.rb:75:in `each' from /usr/lib/ruby/1.8/vim/addon-manager.rb:75:in `remove' from /usr/bin/vim-addons:264:in `send' from /usr/bin/vim-addons:264 The problem is that the while-loop on line 66 is written "while paths.size", which, in Ruby, will always evaluate to be true, because even the value "0" is considered true in Ruby. See: http://ruby-doc.org/docs/Newcomers/ruby.html#boolean Were it not for a fluke exception-handling within the loop, and exception raising in the case when the ~/.vim directory is a symbolic link, this would actually result in an infinite-loop. The loop should be changed to "while paths.size > 0". This bug affects the upstream Debian package of vim-addon-manager, too. ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: vim-addon-manager 0.4.3 ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2 Uname: Linux 2.6.38-8-generic x86_64 NonfreeKernelModules: nvidia wl Architecture: amd64 Date: Sat Jun 25 16:24:17 2011 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429) PackageArchitecture: all ProcEnviron: LC_TIME=en_DK.UTF-8 LANGUAGE=en_US:en PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: vim-addon-manager UpgradeStatus: Upgraded to natty on 2011-04-30 (56 days ago) ** Affects: vim-addon-manager (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug natty -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/802036 Title: remove command can fail for addons, contains possible infinite loop To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim-addon-manager/+bug/802036/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 769594] Re: gsettings-desktop-schemas 3.0.0-0ubuntu1 fails to create thumbnailers schema directory /usr/share/thumbnailers and necessary files within
Nevermind, the hanging of the system and failure to produce PDFs on NFS drives is due to bug #778638. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/769594 Title: gsettings-desktop-schemas 3.0.0-0ubuntu1 fails to create thumbnailers schema directory /usr/share/thumbnailers and necessary files within -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 769594] Re: gsettings-desktop-schemas 3.0.0-0ubuntu1 fails to create thumbnailers schema directory /usr/share/thumbnailers and necessary files within
As Fr_neo points out, the workaround thumbnailers do not work on NFS (Samba) drives. I can't tell if the thumbnailer is timing out or what, but it consumes the desktop for maybe fifteen to thirty seconds trying to make a thumbnail of each PDF file. If a directory is full of PDFs, the system slows to a crawl. Why does this not work for NFS-mounted directories? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/769594 Title: gsettings-desktop-schemas 3.0.0-0ubuntu1 fails to create thumbnailers schema directory /usr/share/thumbnailers and necessary files within -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 784110] [NEW] modindex.html missing from HTML documentation
Public bug reported: The page for the Global Module Index is missing from the Python documentation. The file should be installed as /usr/share/doc/python/html/modindex.html but it is absent for some reason in Ubuntu 11.04 Natty Narwhal. ** Affects: python-defaults (Ubuntu) Importance: Undecided Status: New ** Tags: documentation -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/784110 Title: modindex.html missing from HTML documentation -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 781180] Re: gvim loses menu with Unity interface
Niall Murphy marked Bug #771810 as a duplicate of this one, however, it should be the other way around, since James Hunt filed Bug #771810 more than a month before this one, and it contains more information than this. Regardless, both bug reports are indeed for the same issue. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/781180 Title: gvim loses menu with Unity interface -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 771810] Re: gvim occasionally shows error "Unable to register window with path... Timeout was reached"
The message actually appears when Unity fails to load the gvim menu options (e.g., "File", "Edit", "Tools", etc.) into the global menu, and the shift in the gvim buffer actually results as the gvim menu appearing in the gvim window. In some cases, however, the menu will even fail to show in the gvim window. ** Also affects: unity 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/771810 Title: gvim occasionally shows error "Unable to register window with path... Timeout was reached" -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 776074] [NEW] Unity launcher won't switch to appropriate workspace when window against desktop border
Public bug reported: The Unity launcher fails to switch to the appropriate workspace when a window is placed against an extreme horizontal edge opposite the current user's workspace. Steps to replicate behavior: 1) Switch to top-left workspace 2) Open an application, e.g., Terminal 3) Move the application window so that it touches the far left portion of the screen. It should "snap" to the edge of the screen, but it should NOT resize (e.g., should NOT maximize to one half of the screen) 4) Switch to the top-right workspace or the bottom-right workspace 5) Click the appropriate app icon for the app you launched (e.g., Terminal) in the Launcher 6) Observe that the workspace does not switch, but that Unity has the impression that the app's window has been selected. Note that this works vice versa when the app window is placed against the far right of a far right workspace and the user attempts to select the window from the Launcher while in a left-positioned workspace. ** Affects: unity Importance: Undecided Status: New ** Affects: unity (Ubuntu) Importance: Undecided Status: New ** Also affects: unity (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/776074 Title: Unity launcher won't switch to appropriate workspace when window against desktop border -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 771810] Re: gvim occasionally shows error "Unable to register window with path... Timeout was reached"
To add some more information, when I experience this bug, the Unity desktop places the bottom of the gvim window below the displayable region of the screen. There is an approximately 30 second delay between starting gvim and the appearance of the warning. After the warning appears, gvim redraws the buffer, tending to scroll down several lines. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/771810 Title: gvim occasionally shows error "Unable to register window with path... Timeout was reached" -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 667795] Re: rpy python module does not support the R shipped version (2.11.1)
Thanks to Jérémy for the PPA. Why hasn't this been fixed in Maverick, though? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/667795 Title: rpy python module does not support the R shipped version (2.11.1) -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725178] Re: egg-info directory name lacks Python version string
** Description changed: For some reason, the version of distribute that ships under the python- setuptools package for Lucid and Maverick creates egg-info directories that lack the Python version string (on Lucid and Maverick, this identifier would be "py2.6"). For example, when installing the Python package yolk version 0.4.1, the egg-info directory created is named "yolk-0.4.1.egg-info" instead of "yolk-0.4.1-py2.6.egg-info". This has created issues with pip; see issue 104: https://bitbucket.org/ianb/pip/issue/104/pip-uninstall-on-ubuntu-linux I am trying to understand why the behavior of the version of distribute that ships in the python-setuptools package is inconsistent with the upstream behavior of distribute. + + More specifically, I am concerned there may have been Debian/Ubuntu- + specific patches applied that have affected the behavior of egg-info + directory naming during creation to be simply "PKGNAME-VERSION.egg- + info", but that someone also forgot to apply a patch to the method + pkg_resources.Distribution.egg_name(), which still provides the + "PKGNAME-VERSION-py2.6.egg-info", which is the expected behavior. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/725178 Title: egg-info directory name lacks Python version string -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 725178] [NEW] egg-info directory name lacks Python version string
Public bug reported: For some reason, the version of distribute that ships under the python- setuptools package for Lucid and Maverick creates egg-info directories that lack the Python version string (on Lucid and Maverick, this identifier would be "py2.6"). For example, when installing the Python package yolk version 0.4.1, the egg-info directory created is named "yolk-0.4.1.egg-info" instead of "yolk-0.4.1-py2.6.egg-info". This has created issues with pip; see issue 104: https://bitbucket.org/ianb/pip/issue/104/pip-uninstall-on-ubuntu-linux I am trying to understand why the behavior of the version of distribute that ships in the python-setuptools package is inconsistent with the upstream behavior of distribute. ** Affects: distribute (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/725178 Title: egg-info directory name lacks Python version string -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 332381] Re: cheese records at a painfully slow fps
This bug was marked as a duplicate of Bug #252664, but these two bugs are not directly related, so I removed this duplicate status. Bug #252664 is about choppy framerate in the observation window of Cheese; this bug is about choppy framerate when using Cheese to actually record video. Framerate when not recording video is otherwise acceptable. ** This bug is no longer a duplicate of bug 252664 Cheese: choppy refresh -- cheese records at a painfully slow fps https://bugs.launchpad.net/bugs/332381 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 576698] Re: gnome-power-manager hibernates instead of suspending on idle
Thanks James! That helped a lot. -- gnome-power-manager hibernates instead of suspending on idle https://bugs.launchpad.net/bugs/576698 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 337945] Re: [Jaunty] MacBook 5.1 keyboard backlight not supported
This bug can be closed. It was resolved with the release of the nvidia- bl-dkms 0.15 series of packages. Thanks for checking. -- [Jaunty] MacBook 5.1 keyboard backlight not supported https://bugs.launchpad.net/bugs/337945 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 337947] Re: [Jaunty] No sound output by default with MacBook 5.1
This bug was resolved in Ubuntu 9.04 Karmic Koala, and can be closed. Thanks for checking. -- [Jaunty] No sound output by default with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 338083] Re: [Jaunty] MacBook 5.1 will not reboot (Restart).
This bug has been resolved for me in Ubuntu 9.04 Karmic Koala. Thanks for checking. Bug can be closed. -- [Jaunty] MacBook 5.1 will not reboot (Restart). https://bugs.launchpad.net/bugs/338083 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 530986] [NEW] evolution-sharp package not available in Ubuntu (Karmic) despite reported as such
Public bug reported: I am trying to build Tasque. http://live.gnome.org/Tasque/ When running the ./configure script, I got the following error: ... checking for EVOLUTION_SHARP... configure: error: Package requirements (evolution-sharp >= 0.18.1) were not met: No package 'evolution-sharp' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables EVOLUTION_SHARP_CFLAGS and EVOLUTION_SHARP_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ... I then tried apt-get install evolution-sharp However this failed ... E: Couldn't find package evolution-sharp So I tried looking for what package it might be in, but neither apt- cache search evolution-sharp, nor aptitude search evolution-sharp, nor the Ubuntu package search http://packages.ubuntu.com/search?suite=default§ion=all&arch=any&searchon=names&keywords =evolution-sharp returned any results. Oddly enough, by doing a Google search for "ubuntu evolution-sharp" I found this project page https://launchpad.net/ubuntu/+source/evolution-sharp which reports availability of the package in Karmic, as well as numerous previous and forthcoming releases. But clearly this package is not retrievable by apt-get, so how can it be marked as available in Ubuntu? ** Affects: evolution-sharp (Ubuntu) Importance: Undecided Status: New -- evolution-sharp package not available in Ubuntu (Karmic) despite reported as such https://bugs.launchpad.net/bugs/530986 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 516354] Re: nvidia-bl-dkms 0.15.1 update breaks backlight
$ cat /sys/class/dmi/id/product_name MacBook5,1 $ echo 0 | sudo tee /sys/class/backlight/nvidia_backlight/brightness[sudo] password for chris: 0 My backlight turned off completely upon entering the second command. -- nvidia-bl-dkms 0.15.1 update breaks backlight https://bugs.launchpad.net/bugs/516354 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 516354] Re: nvidia-bl-dkms 0.15.1 update breaks backlight
I am experiencing this bug, both with the 2.6.31-19-generic and 2.6.31-17-generic kernels. I am, however, able to adjust the screen brightness using the F1 and F2 brightness buttons (pushing them without holding down the fn key). The problem however is that the brightness increments or decrements very, very slowly and in tiny amounts. Earlier releases had much larger increment and decrement amounts, and were much more usable. Can we please get back these old values for the brightness increment/decrement? -- nvidia-bl-dkms 0.15.1 update breaks backlight https://bugs.launchpad.net/bugs/516354 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 417980] Re: Unable to send more than one file of same track artist and title to device via MTP
This bug still exists for Rhythmbox 0.12.5 on Ubuntu 9.10 Karmic Koala. -- Unable to send more than one file of same track artist and title to device via MTP https://bugs.launchpad.net/bugs/417980 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 417980] Re: Unable to send more than one file of same track artist and title to device via MTP
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/30712691/Dependencies.txt ** Attachment added: "ProcMaps.txt" http://launchpadlibrarian.net/30712692/ProcMaps.txt ** Attachment added: "ProcStatus.txt" http://launchpadlibrarian.net/30712693/ProcStatus.txt -- Unable to send more than one file of same track artist and title to device via MTP https://bugs.launchpad.net/bugs/417980 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 417980] [NEW] Unable to send more than one file of same track artist and title to device via MTP
Public bug reported: Binary package hint: rhythmbox If an external device is mounted in Rhythmbox via the MTP plugin, the user will experience an error in transferring a song to the device that has the same track artist and track title as an existing track on the external device. The error states: PTP Layer error 200f: LIBMTP_Send_File_From_File_Descriptor(): Could not send object info. This bug is highly reproducible. In my library, I have several artists for which I have multiple recordings of their songs (typically from different albums). I am only able to store at most one of these recordings on my external device when transferring music over by MTP. Is only the track artist and title used to describe the file when transferring by MTP, and if so, can something more distinguishing be used so that multiple recordings of the same song by the same artist may be transfered via MTP? ProblemType: Bug Architecture: amd64 DistroRelease: Ubuntu 9.04 ExecutablePath: /usr/bin/rhythmbox NonfreeKernelModules: nvidia wl Package: rhythmbox 0.12.0-0ubuntu4 ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: rhythmbox Uname: Linux 2.6.28-14-generic x86_64 ** Affects: rhythmbox (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- Unable to send more than one file of same track artist and title to device via MTP https://bugs.launchpad.net/bugs/417980 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 315882] Re: [Jaunty] synaptics driver needs to be updated to work with devices known as "ETPS/2 Elantech Touchpad" and "SynPS/2 Synaptics TouchPad" starting with 2.6.28 series kernels
I had to reinstall the synaptics driver first with sudo aptitude reinstall xserver-xorg-input-synaptics after which Ricardo Faria's fix worked for me. -- [Jaunty] synaptics driver needs to be updated to work with devices known as "ETPS/2 Elantech Touchpad" and "SynPS/2 Synaptics TouchPad" starting with 2.6.28 series kernels https://bugs.launchpad.net/bugs/315882 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Dunbar, I didn't install it, but I did look through the code of that ALSA snapshot. It simply includes the patches from Kacper (they have made it into mainline code of ALSA, apparently). You will not have to manually specify your model. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 91786] Re: Compiz's Panel shadows show on top of other windows
That is a working solution. I would encourage an elegant solution which follows the model of OS X's menu bar (the equivalent of a panel in GNOME). The menu bar casts a shadow, however, it does not cast it upon any other windows than the root window (desktop). The difference is subtle, but beautiful. See attached screenshot. ** Attachment added: "Shadow cast by OS X's menu bar" http://launchpadlibrarian.net/28913597/os_x_shadow.png -- Compiz's Panel shadows show on top of other windows https://bugs.launchpad.net/bugs/91786 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Would someone who has a patched version of this driver installed and working (e.g., the internal mic works) please post the output of cat /proc/asound/card0/codec#0 for me? I need to see how my sound card model differs in terms of pins, as Kacper suggested. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
If you updated your kernel in Jaunty, you will have to re-install the ALSA modules with another round of `sudo make install`. Also, see my note above that I have to move the "Master" channel up until sound finally crackles on for the rest of the system, including the headphones. Note that this patch still doesn't work perfectly for me, since apparently my soundcard has "a different PIN assignment"; e.g., I'm getting noise in the headphones and my internal mic doesn't work. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 80725] Re: gnome-dictionary won't use dictd at localhost
I'm experiencing the same issues that Kudryashov described. -- gnome-dictionary won't use dictd at localhost https://bugs.launchpad.net/bugs/80725 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
So typically on most laptops, when the headphone plug is inserted into the headphone jack, sound to the internal speakers is cut off and plays through only the headphones. (This is the behavior in OS X, for example, and I believe it was also the 8.10 behavior.) I thought this was implemented in hardware, but apparently it's implemented by the sound driver, as Kacper's patch demonstrates. I think someone else already requested this above, but would it be possible to have a patch that mutes the internal speakers when headphones are inserted? Also, and I believe this was also mentioned above, could we have a patch where Master controls the volume of the headphone output, too? Of course, this would only be useful if the above muting of speakers was implemented, as well. Kacper, are you the only developer working on this? Is anyone else involved with the ALSA project looking into this? -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 357107] Re: [Jaunty] Screen brightness settings not stored for MacBook 5.1
*** This bug is a duplicate of bug 35223 *** https://bugs.launchpad.net/bugs/35223 ** Attachment added: "Output of lspci" http://launchpadlibrarian.net/27999547/lspci.txt -- [Jaunty] Screen brightness settings not stored for MacBook 5.1 https://bugs.launchpad.net/bugs/357107 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 357107] Re: [Jaunty] Screen brightness settings not stored for MacBook 5.1
*** This bug is a duplicate of bug 35223 *** https://bugs.launchpad.net/bugs/35223 Apparently we're moving back to this bug and away from the bug this was marked as a duplicate of. Here's some more information. ** Attachment added: "Output of lsmod" http://launchpadlibrarian.net/27999540/lsmod.txt -- [Jaunty] Screen brightness settings not stored for MacBook 5.1 https://bugs.launchpad.net/bugs/357107 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 35223] Re: Laptop TFT monitor - brightness level is not saved
A few things here, in response. 1. My bug report, Bug #357107, was marked as a duplicate of this bug. It contains a detailed description of my computer (MacBook 5.1). 2. "Set display brightness to" is completely ignored on bootup. For example, I have it set to 21%, but on bootup, the brightness is *always* 100%. 3. This is not a wishlist item. The behavior of GNOME and Ubuntu prior to 9.04 was to remember the brightness setting from the last session prior to shutdown. -- Laptop TFT monitor - brightness level is not saved https://bugs.launchpad.net/bugs/35223 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
> Do you have sound output? Is mic your only problem? I do have sound output, although sometimes it gets "stuck" off until I twiddle with the volume controls (usually needing to crank the volume up until it crackles on). The two more important issues are no mic and noise in the headphone channel (confirmed by Nikos and Matteo above). -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Sorry, that last comment came off snappy. Thanks for looking into this Kacper. I would have never figured that out on my own. I guess the questions are: is it different because it's a refurb, or is it different because it's a model from a different manufacturing age than everyone else who's reported? Perhaps the better question is, can a workaround be written, in the event the chipset is of this design, rather than the design of yours? I would presume Apple didn't single me out, and that there must be other MacBooks (5.1) out there with the same hardware as mine. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
$ sudo dmidecode -s system-product-name MacBook5,1 See also my numerous bug reports against MacBook 5.1: https://bugs.launchpad.net/~chris.lasher?field.searchtext=macbook It is a refurbished MacBook 5.1 2.4GHz Intel Core 2 Duo purchased February this year. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Here is the output of `cat /proc/asound/card0/codec#0` after running `alsactl -f asound.state restore`. ** Attachment added: "Updated output of cat /proc/asound/card0/codec#0" http://launchpadlibrarian.net/27477499/asound_codec.txt -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Still no luck, restoring from your settings Kacper: $ alsactl -f asound.state restore Unknown hardware: "HDA-Intel" "Realtek ALC889A" "HDA:10ec0885,106b3f00,00100103" "" "" Hardware is initialized using a guess method alsactl: set_control:1266: failed to obtain info for control #32 (No such file or directory) alsactl: set_control:1266: failed to obtain info for control #33 (No such file or directory) I get nothing when recording, sliding the sliders up and down, clicking the little mic icon to supposedly mute/unmute the mic, just nothing. When I close and re-open Volume Control, all the mic channels are shown with the muted mic icon, too, just as I mentioned in the forum thread linked to above. Something's inconsistent between our setups. Is there any more information I can give to help pick out what's going wrong? Are there any files I can delete to restore to defaults? -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Thanks Kacper. I'm not sure how to load that file. I found I have an asound.state file under /var/lib/alsa/asound.state so I'm attaching that file. diff shows a number of (possibly important?) differences at the end, but I don't understand what they mean. ** Attachment added: "asound.state" http://launchpadlibrarian.net/27470057/asound.state -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
>>> Also, does anybody have the internal mic working? > I do http://ubuntuforums.org/showthread.php?t=1158304 https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/337314/comments/91 So, Kacper, you can confirm that you can record audio from the internal mic using GNOME Sound Recorder? And this is for a MacBook 5.1, correct? Is there some way we can compare settings to determine what's different between your configuration and mine such that I am unable to use the internal mic? I am using 64-bit Ubuntu--is this a difference? I'm using the setup as per the wiki. There is a notable difference: I do not see "Front Mic" as an option for Input Source. My options are "Mic", "Line", and "CD". My channel mode is set to 6, if that makes any difference. Do I need to split this out to a separate bug? -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
@Matteo I noticed this, too, but I think it's really just getting masked by loud-volumed music. Also, does anybody have the internal mic working? -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Is anyone else experiencing the noise issue on the headphones? -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
Sorry, I should have specified, this is a MacBook 5.1 (aluminum unibody). ** Attachment added: "Ouptut of cat /proc/asound/card0/codec#0" http://launchpadlibrarian.net/27251331/codec_info.txt -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
On further exploration, it seems that each level of the channel has its own peculiar noise. The oscillation is at level 0, but the following levels are extremely noisy: 8, 17, 27, 36, 45, 55, 64, 73, 83, 92. It's reproducible to get the noise on each of these levels. I did not experience this noise before the patch, using the default ALSA that shipped with Jaunty, and the option of snd_hda_intel model=mbp3. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 337314] Re: Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5, 1)
I get a noticeable amount of oscillating noise from the headphones now, using the patch against ALSA 1.0.19, and following the instructions on the wiki for using PulseAudio with 6 channel sound. The oscillating noise goes away when I mute the HP channel. However, when I mute it, I can hear a steady tone. If I slide the volume sliders up and down for the HP channel, the pitch will change (randomly, not directly or inversely). Additionally, the internal mic does not seem to work for me. Whenever I open Volume Control and go to the recording tab, the channel is always shown with a muted mic button. I unmute it and try to record with GNOME Sound Recorder, but it doesn't record anything. -- Left speaker doesn't work, controls mixed up on Apple MacBook[Pro] (5,1) https://bugs.launchpad.net/bugs/337314 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 338083] Re: [Jaunty] MacBook 5.1 will not reboot (Restart).
I was about to come back and comment on here myself. No, reboot does *not* work for me now... again... I don't know. It could be perhaps installation of one of the Apple hardware packages from the PPA that kicked it out again. I actually haven't tried shutting down using ``shutdown``. For a brief period in time, however, reboot really did work. -- [Jaunty] MacBook 5.1 will not reboot (Restart). https://bugs.launchpad.net/bugs/338083 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 337945] Re: [Jaunty] MacBook 5.1 keyboard backlight not supported
Nikos, please see Bug 357112. I haven't tried the PPA mentioned above by P. Dunbar, but maybe Bug 357107 and Bug 360177 still apply, too. -- [Jaunty] MacBook 5.1 keyboard backlight not supported https://bugs.launchpad.net/bugs/337945 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 337941] Re: [Jaunty] MacBook 5.1 Caps Lock LED does not light up.
*** This bug is a duplicate of bug 251830 *** https://bugs.launchpad.net/bugs/251830 Can someone please mark this as triaged or confirmed? In its current status, it's not possible to search for it. Thanks. -- [Jaunty] MacBook 5.1 Caps Lock LED does not light up. https://bugs.launchpad.net/bugs/337941 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 338083] Re: [Jaunty] MacBook 5.1 will not reboot (Restart).
It seems that rebooting now works successfully for me. Perhaps I was missing a kernel update. I just tried it, though and it rebooted fine. So for me, this bug is fixed now. -- [Jaunty] MacBook 5.1 will not reboot (Restart). https://bugs.launchpad.net/bugs/338083 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 332549] Re: compiz freezes X when some applications are used
** Attachment added: "xorg.conf" http://launchpadlibrarian.net/25759055/xorg.conf ** Also affects: compiz (Ubuntu) Importance: Undecided Status: New -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 332549] Re: compiz freezes X when some applications are used
I moved my xorg.conf file out of the way. I am attaching the Xorg.0.log file made during bootup after moving my xorg.conf file. ** Attachment added: "Xorg log after moving xorg.conf" http://launchpadlibrarian.net/25759184/Xorg.0.log -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 332549] Re: compiz freezes X when some applications are used
I should specify I only experience this bug when using Compiz, not when using Metacity. -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 332549] Re: compiz freezes X when some applications are used
** Attachment added: "lspci.txt" http://launchpadlibrarian.net/25759008/lspci.txt -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 332549] Re: compiz freezes X when some applications are used
I experience this same bug. It is extremely easy to reproduce. I simply switch over to using compiz (compiz --replace) then I open Rhythmbox. (It starts hidden, with just the status icon in the GNOME panel.) I click the status icon, which is supposed to make the full Rhythmbox window appear. The screen will lock up, sometimes in a corrupted state. Sometimes the mouse will pause for a second and then I can move it around. I can not click on anything to perform any action. No input is accepted from the keyboard. I am using Ubuntu 9.04 Jaunty 64-bit on a MacBook 5.1 with xserver-xorg 1:7.4~5ubuntu18. I am using the binary NVIDIA driver. I am attaching output from lsmod, lspci, and Xorg.log.0. ** Attachment added: "lsmod.txt" http://launchpadlibrarian.net/25758996/lsmod.txt -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 332549] Re: compiz freezes X when some applications are used
** Attachment added: "Xorg.0.log" http://launchpadlibrarian.net/25759019/Xorg.0.log -- compiz freezes X when some applications are used https://bugs.launchpad.net/bugs/332549 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 363518] Re: Rhythmbox stops playing ogg radio stream at end of every song.
I found this bug in upstream http://bugzilla.gnome.org/show_bug.cgi?id=320984 I selected the option "Use crossfading backend" and now the radio streams correctly. It seems that whatever streaming library is used without crossfading doesn't handle streams correctly. This will work fine for me. Feel free to close this bug. ** Bug watch added: GNOME Bug Tracker #320984 http://bugzilla.gnome.org/show_bug.cgi?id=320984 -- Rhythmbox stops playing ogg radio stream at end of every song. https://bugs.launchpad.net/bugs/363518 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 363518] [NEW] Rhythmbox stops playing ogg radio stream at end of every song.
Public bug reported: Binary package hint: rhythmbox Ubuntu 9.04 Jaunty 64-bit with Rhythmbox 0.12.0-0ubuntu4, for these two streams, and possibly others: http://ormgas.dracoirs.com:8000/ormgas.ogg?9235:2bf752a086 http://stream.rainwave.cc:8000/stream.ogg Always fails at the end of a song with "Internal data flow error". ** Affects: rhythmbox (Ubuntu) Importance: Undecided Status: New -- Rhythmbox stops playing ogg radio stream at end of every song. https://bugs.launchpad.net/bugs/363518 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 111502] Re: network-manager unreliable with multiple APs
I get frequent disconnects too. This is on Jaunty 64-bit with NetworkManager 0.7.1~rc4.1.cf199a964-0ubuntu2 on a MacBook 5.1. See an example of the output from syslog during a disconnect and reconnection in the attached file. There are many WAPs of the same ESSID here because this is a university. ** Attachment added: "syslog.txt" http://launchpadlibrarian.net/25712747/syslog.txt -- network-manager unreliable with multiple APs https://bugs.launchpad.net/bugs/111502 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 363490] Re: NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID.
** Attachment added: "lsmod.txt" http://launchpadlibrarian.net/25712545/lsmod.txt -- NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID. https://bugs.launchpad.net/bugs/363490 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 363490] Re: NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID.
** Attachment added: "lspci.txt" http://launchpadlibrarian.net/25712492/lspci.txt -- NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID. https://bugs.launchpad.net/bugs/363490 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 363490] Re: NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID.
** Attachment added: "syslog.txt" http://launchpadlibrarian.net/25712488/syslog.txt -- NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID. https://bugs.launchpad.net/bugs/363490 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 363490] [NEW] NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID.
Public bug reported: Binary package hint: network-manager Since about a month ago along the Jaunty development, NetworkManager lost the ability to connect to my university's unencrypted wireless network. This is a network that has many WAPs of the same ESSID on a variety of different channels, which seems to be NetworkManager's Achilles heel. (See also Bug #111502.) Disabling NetworkManager, I am able to manually connect to the network using iwconfig and dhclient. This is on a MacBook 5.1 with Ubuntu Jaunty 9.04 64-bit, kernel 2.6.28-11-generic, NetworkManager 0.7.1~rc4.1.cf199a964-0ubuntu2. I am attaching the syslog information, output of lspci, and output of lsmod. ** Affects: network-manager (Ubuntu) Importance: Undecided Status: New -- NetworkManager unable to connect ot unencrypted university network with multiple WAPs of same ESSID. https://bugs.launchpad.net/bugs/363490 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 338083] Re: [Jaunty] MacBook 5.1 will not reboot (Restart).
To echo Nikos, this does not work on a MacBook 5.1 (aluminum MacBook) under 64-bit Jaunty with the 2.6.28-11-generic kernel. -- [Jaunty] MacBook 5.1 will not reboot (Restart). https://bugs.launchpad.net/bugs/338083 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 360177] Re: [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1 when running on battery.
** Summary changed: - [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1 + [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1 when running on battery. ** Description changed: In GNOME Power Management Settings, one can set "Dim display when idle". When this option is checked, and the user allows for a period of - inactivity, the screen will dim. However, after user activity (e.g., - input from the keyboard, touchpad, or other input device), the screen is - not restored to its original brightness state, but instead remains - dimmed. + inactivity, the screen will dim. When running on battery, however, after + user activity (e.g., input from the keyboard, touchpad, or other input + device), the screen is not restored to its original brightness state, + but instead remains dimmed. Bug #357107 and this bug may be related, since this may have to do with storage of brightness settings. -- [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1 when running on battery. https://bugs.launchpad.net/bugs/360177 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 360717] [NEW] Gnome Panel should allow resizing smaller than 23 pixels.
Public bug reported: Binary package hint: gnome-panel Currently, GNOME panel cannot be resized to be smaller than 23 pixels in height. Many users desire a much smaller panel, both from an aesthetic and a usability point of view. With today's netbooks, the need to be economical with screen real estate becomes all the more critical. Given that Mark Shuttleworth states that netbooks are a central aim for upcoming releases (https://lists.ubuntu.com/archives/ubuntu-devel- announce/2009-February/000536.html), it is in line with Ubuntu's interests to improve the GNOME panel for smaller screen sizes. Questions that must be addressed: * What is actually preventing GNOME panel from being set to a smaller size? Icons? Text? * If it's icons, what steps can Ubuntu make toward providing more scaleable icons for its themes? * If it's text, can there be integration between the panel resize dialog and necessary adjustments to font sizes for the GNOME desktop? See also Bug #223075. ** Affects: gnome-panel (Ubuntu) Importance: Undecided Status: New -- Gnome Panel should allow resizing smaller than 23 pixels. https://bugs.launchpad.net/bugs/360717 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 360177] [NEW] [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1
Public bug reported: In GNOME Power Management Settings, one can set "Dim display when idle". When this option is checked, and the user allows for a period of inactivity, the screen will dim. However, after user activity (e.g., input from the keyboard, touchpad, or other input device), the screen is not restored to its original brightness state, but instead remains dimmed. Bug #357107 and this bug may be related, since this may have to do with storage of brightness settings. ** Affects: mactel-support Importance: Undecided Status: New ** Affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New ** Also affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New ** Description changed: - In GNOME Power Manager, one can set "Dim display when idle". When this - option is checked, and the user allows for a period of inactivity, the - screen will dim. However, after user activity (e.g., input from the - keyboard, touchpad, or other input device), the screen is not restored - to its original brightness state, but instead remains dimmed. + In GNOME Power Management Settings, one can set "Dim display when idle". + When this option is checked, and the user allows for a period of + inactivity, the screen will dim. However, after user activity (e.g., + input from the keyboard, touchpad, or other input device), the screen is + not restored to its original brightness state, but instead remains + dimmed. Bug #357107 and this bug may be related, since this may have to do with storage of brightness settings. -- [Jaunty] Original screen brightness not restored after activity with "dim display when idle" for MacBook 5.1 https://bugs.launchpad.net/bugs/360177 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 357107] Re: [Jaunty] Screen brightness settings not stored for MacBook 5.1
Yeah, I wasn't sure what to mark it against. GNOME? gnome-power-manager? ** Also affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New -- [Jaunty] Screen brightness settings not stored for MacBook 5.1 https://bugs.launchpad.net/bugs/357107 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
Thanks, Jim. Indeed, I placed that line in the wrong file. After correctly placing the line in /etc/modprobe.d/options, I now have audio in the headphones and the right speaker. No audio is played from the left speaker, but this is described in Bug #337314. -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 337945] Re: [Jaunty] MacBook 5.1 keyboard backlight not supported
I'm curious as to why this worked without manual modification using the Mactel PPA for Intrepid but not for Jaunty. What was provided in that package that's not provided in the Jaunty package? -- [Jaunty] MacBook 5.1 keyboard backlight not supported https://bugs.launchpad.net/bugs/337945 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 289898] Re: [bcm...] Network-manager causes system lockup when connecting to specific encrypted network
This bug and Bug #336001 could be (likely) related. -- [bcm...] Network-manager causes system lockup when connecting to specific encrypted network https://bugs.launchpad.net/bugs/289898 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
Am I the only one who does NOT have the 2 channel/6 channel option available on a MacBook 5.1? Do I have different sound hardware? (View my lspci attachment above and compare.) -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
@Alex I'm afraid I do not have that option, still. Here's what I have done up to this point: 1) In /etc/modules, I placed the following line, then rebooted: options snd_hda_intel model=mbp3 2) Right-clicked the volume icon on GNOME panel. 3) Went to Open Volume Control. 4) Ensured that HDA NVidia (Alsa mixer) was selected as "Device" 5) Clicked the Preferences Button. 6) The following appeared with checkboxes beside them. I will place a [ ] for an empty (unchecked) check box, and a [x] for a checked one: [x] Master [x] Headphone [x] PCM [x] Front [x] Surround [x] Microphone [ ] Mic Boost [ ] Capture [ ] Capture 1 [ ] IEC958 [ ] IEC958 Capture [ ] IEC958 Default PCM [ ] Input Source [ ] Input Source 7) Checked the first "Input Source". A new tab in the Volume Control window appeared called "Options" 8) Went to "Options" tab. The only thing that appears is "Input Source" from which I can select "Mic" only. 9) Checked the other "Input Source", same result, now with an additional "Input Source" and "Mic" combo in the "Options" tab. 10) Gave up again and posted to here. Further suggestions more than welcome. Chris -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 314961] Re: Kernel Panic with iwl3945 ucode
*** This bug is a duplicate of bug 336001 *** https://bugs.launchpad.net/bugs/336001 ** This bug has been marked a duplicate of bug 336001 NetworkManager causes system freeze, lock up, kernel panic -- Kernel Panic with iwl3945 ucode https://bugs.launchpad.net/bugs/314961 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 336001] Re: NetworkManager causes system freeze, lock up, kernel panic
TJ, I am unable to reproduce the lock-up in Bug 345710 on my home network. I will try tomorrow on the campus 802.1x network. -- NetworkManager causes system freeze, lock up, kernel panic https://bugs.launchpad.net/bugs/336001 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 91786] Re: Compiz's Panel shadows show on top of other windows
"But anyway, this might already have been fixed in compiz. The release included in jaunty doesn't seem to have this problem." Absolutely not true for me. I am up to date with the Jaunty releases. This "bug" is still present. nxsty, I suggest you verify your settings are at "auto" only for window types, and turn up the opacity and radius settings, then confirm you no longer see this behavior. -- Compiz's Panel shadows show on top of other windows https://bugs.launchpad.net/bugs/91786 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 91786] Re: Compiz's Panel shadows show on top of other windows
This would look awful if the user resizes, moves, or removes his/her panels. -- Compiz's Panel shadows show on top of other windows https://bugs.launchpad.net/bugs/91786 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 91786] Re: Compiz's Panel shadows show on top of other windows
This is not the desired behavior. It presents a usability problem (window title bar text and icon are partially obscured). See Bug 184551, and in particular, take a look at the screenshot.jpg presented by nxsty. Having the panel at the "same level" of windows is the intuitive, more usable, and more aesthetically pleasing arrangement. -- Compiz's Panel shadows show on top of other windows https://bugs.launchpad.net/bugs/91786 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 184551] Re: Disable panel shadow by default
*** This bug is a duplicate of bug 91786 *** https://bugs.launchpad.net/bugs/91786 This bug and Bug 91786 should be merged. ** This bug has been marked a duplicate of bug 91786 Compiz's Panel shadows show on top of other windows -- Disable panel shadow by default https://bugs.launchpad.net/bugs/184551 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
Still no luck with this, despite several kernel and Xorg updates. -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
Can I provide any more information to help? -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
Can I provide any more information to help? -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
It might, but I get no sound at all--not out of the speakers, nor out of the headphone jack. It's interesting because the users in that thread who got sound working got the ALSA libs from Jaunty, which is what I'm running (Alpha 5). There's been mention in the forum threads about needing to set the channels from 2 channel to 6 channel, but I have not found where that setting is located (pointers on the wiki page and forum don't work for me--I don't see the option in gnome-volume-control or in alsamixer). I ran the alsa.sh script and my results are here: http://www.alsa-project.org/db/?f=698959d0acde505730bbadfdd70e68ee87967808 -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
Quite possibly. Some differences: * `grep bcm5974 /proc/bus/input/devices` returns nothing (I'm attaching the file). This could be rather important--this device should show up here, no? I do have that module loaded, as confirmed by the lsmod attached above. * xserver-xorg-input-synaptics is installed by default in Jaunty Alpha 5. ** Attachment added: "output from /proc/bus/input/devices" http://launchpadlibrarian.net/23522840/devices.txt -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337941] Re: [Jaunty] MacBook 5.1 Caps Lock LED does not light up.
Alex, your solution of removing mouseemu worked well. I don't know whether to close this bug, but it's important that this is noted as the solution. Maybe the Jaunty installer can detect whether or not to install mouseemu? Thanks for the solution. -- [Jaunty] MacBook 5.1 Caps Lock LED does not light up. https://bugs.launchpad.net/bugs/337941 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 338083] [NEW] [Jaunty] MacBook 5.1 will not reboot (Restart).
Public bug reported: As of Jaunty (Ubuntu 9.04) Alpha 5, with kernel 2.6.28-8-generic, the MacBook 5.1 will hang upon attempts to reboot (restart). The screen will go blank black, and the system will hang indefinitely. I suppose this is an improvement over Intrepid (Ubuntu 8.10), where the computer would both hang and make very loud beeping noises. :-) Still, I'm marking this as a bug since reboot is currently not possible. ** Affects: mactel-support Importance: Undecided Status: New ** Affects: linux-meta (Ubuntu) Importance: Undecided Status: New ** Also affects: linux-meta (Ubuntu) Importance: Undecided Status: New -- [Jaunty] MacBook 5.1 will not reboot (Restart). https://bugs.launchpad.net/bugs/338083 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
My original xorg.conf file from the out of the box install was completely empty, apparently. As such I can't actually attach it here in Launchpad. Suffice to say, I experienced the touchpad issue using the empty xorg.conf file, even when supplying the fdi file for the hal policy. -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
Here I attach my current Xorg file, which uses the nVIDIA restricted driver. The conditions remain with this xorg.conf. ** Attachment added: "current Xorg file" http://launchpadlibrarian.net/23451502/xorg.conf -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
Sure thing. ** Attachment added: "lspci output (verbose)" http://launchpadlibrarian.net/23451471/lspci_verbose.txt -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337941] Re: [Jaunty] MacBook 5.1 Caps Lock LED does not light up.
** Description changed: The MacBook 5.1 Caps Lock key's LED does not light up when activated. + This worked in Intrepid via the Mactel PPA. Possible Mactel PPA packages + which fixed this include hal-applesmc, hid-dkms, and nvidia-bl-dkms. ** Description changed: The MacBook 5.1 Caps Lock key's LED does not light up when activated. This worked in Intrepid via the Mactel PPA. Possible Mactel PPA packages - which fixed this include hal-applesmc, hid-dkms, and nvidia-bl-dkms. + which fixed this include hal-applesmc and hid-dkms. -- [Jaunty] MacBook 5.1 Caps Lock LED does not light up. https://bugs.launchpad.net/bugs/337941 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 337945] Re: [Jaunty] MacBook 5.1 keyboard backlight not supported
** Description changed: The keyboard backlight on the MacBook 5.1 is not supported as of Jaunty (Ubuntu 9.04) Alpha 5. This is supported in Intrepid (Ubuntu 8.10) by - the Mactel PPA packages. + the Mactel PPA packages hal-applesmc, hid-dkms, and possibly nvidia-bl- + dkms, though I installed the nvidia-bl-dkms package for Jaunty. -- [Jaunty] MacBook 5.1 keyboard backlight not supported https://bugs.launchpad.net/bugs/337945 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
** Description changed: Binary package hint: xorg The touchpad for MacBook 5.1 is not supported completely in Jaunty (Ubuntu 9.04) as of Alpha 5 release. The pointer can move, and a physical left-click works, but that's it. I can not get tapping to respond as I could using the Mactel PPA packages with Intrepid (Ubuntu 8.10). I added the attached FDI policy file for the touchpad, and manually added the module bcm5974 to my /etc/modules file, however, Xorg is not loading or is not recognizing the touchpad policies. This file - worked on Intrepid. The custom bcm5974 from the Mactel PPA is likely - required. + worked on Intrepid. The custom bcm5974-dkms package from the Mactel PPA + provided support in Intrepid. -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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 337947] Re: [Jaunty] No sound output with MacBook 5.1
** Attachment added: "lspci output" http://launchpadlibrarian.net/23443046/lspci.txt ** Also affects: ubuntu Importance: Undecided Status: New -- [Jaunty] No sound output with MacBook 5.1 https://bugs.launchpad.net/bugs/337947 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 337945] Re: [Jaunty] MacBook 5.1 keyboard backlight not supported
** Attachment added: "lspci output" http://launchpadlibrarian.net/23442652/lspci.txt ** Also affects: ubuntu Importance: Undecided Status: New -- [Jaunty] MacBook 5.1 keyboard backlight not supported https://bugs.launchpad.net/bugs/337945 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 337941] Re: [Jaunty] MacBook 5.1 Caps Lock LED does not light up.
** Attachment added: "lspci output" http://launchpadlibrarian.net/23442407/lspci.txt ** Also affects: ubuntu Importance: Undecided Status: New -- [Jaunty] MacBook 5.1 Caps Lock LED does not light up. https://bugs.launchpad.net/bugs/337941 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 337935] Re: [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty)
** Attachment added: "lspci output" http://launchpadlibrarian.net/23441288/lspci.txt ** Also affects: mactel-support Importance: Undecided Status: New -- [Jaunty] MacBook 5.1 touchpad not fully supported (Alpha 5 of Jaunty) https://bugs.launchpad.net/bugs/337935 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