[Bug 1873325] Re: update-initramfs complains of missing amdgpu firmware files

2021-03-25 Thread JD
This is still happening as of 2021-03-25.

Ubuntu 20.04
Kernel: 5.8.0-41-generic
Linux-firmware: 1.187.9

update-initramfs: Generating /boot/initrd.img-5.8.0-41-generic
W: Possible missing firmware /lib/firmware/amdgpu/navi12_gpu_info.bin for 
module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_gpu_info.bin for 
module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_ta.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_asd.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_sos.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_ta.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_asd.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sos.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_rlc.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_mec2.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_mec.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_rlc.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_mec2.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_mec.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_me.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_pfp.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_ce.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_sdma.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sdma1.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sdma.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi10_mes.bin for module 
amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_dmcu.bin for module 
amdgpu
I: The initramfs will attempt to resume from /dev/dm-2
I: (/dev/mapper/vgmint-swap_1)
I: Set the RESUME variable to override this.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1873325

Title:
  update-initramfs complains of missing amdgpu firmware files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1873325/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1807273] Re: netplan not respecting mtu

2019-03-11 Thread jd
Just wanted to say thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1807273

Title:
  netplan not respecting mtu

To manage notifications about this bug go to:
https://bugs.launchpad.net/netplan/+bug/1807273/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1724895] Re: MTU not applied on private ethernet interfaces

2018-12-05 Thread jd
I'm having a similar issue where setting the MTU to 1500 and using a match on 
mac address does not stick. This is on a EC2 T2.Medium instance. Actual 
configuration from a dev server:
network:
  version: 2
  ethernets:
eth0:
  match:
macaddress: 12:0f:ae:49:5d:06
  mtu: 1500
  dhcp4: true
  nameservers:
search: [ devbuilds.vpc, ec2.internal ]

$> cat /var/run/systemd/network/10-netplan-eth0.link
[Match]
MACAddress=12:0f:ae:49:5d:06

[Link]
WakeOnLan=off
MTUBytes=1500

$> cat /var/run/systemd/network/10-netplan-eth0.network
[Match]
MACAddress=12:0f:ae:49:5d:06

[Network]
DHCP=ipv4
Domains=devbuilds.vpc ec2.internal

[DHCP]
UseMTU=true
RouteMetric=100

$> ip link show eth0
2: eth0:  mtu 9001 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff
# manually set MTU
$> sudo ip link set dev eth0 mtu 1500
$> ip link show eth0
2: eth0:  mtu 1500 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff
$> sudo netplan generate
$> sudo netplan apply
$> ip link show eth0
2: eth0:  mtu 9001 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff

The last netplan commands could be replaced with a reboot with the same
result.  This configuration seemed to help others, so hopefully i'm
simply missing something or perhaps this is related to EC2?

Attaching output of cloud-init

** Attachment added: "Result of cloud-init collect-logs"
   
https://bugs.launchpad.net/netplan/+bug/1724895/+attachment/5219532/+files/cloud-init-logs-2018-12-05.tgz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1724895

Title:
  MTU not applied on private ethernet interfaces

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1724895/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1724895] Re: MTU not applied on private ethernet interfaces

2018-12-05 Thread jd
I'm having a similar issue where setting the MTU to 1500 and using a match on 
mac address does not stick. This is on a EC2 T2.Medium instance. Actual 
configuration from a dev server:
network:
  version: 2
  ethernets:
eth0:
  match:
macaddress: 12:0f:ae:49:5d:06
  mtu: 1500
  dhcp4: true
  nameservers:
search: [ devbuilds.vpc, ec2.internal ]

$> cat /var/run/systemd/network/10-netplan-eth0.link
[Match]
MACAddress=12:0f:ae:49:5d:06

[Link]
WakeOnLan=off
MTUBytes=1500

$> cat /var/run/systemd/network/10-netplan-eth0.network
[Match]
MACAddress=12:0f:ae:49:5d:06

[Network]
DHCP=ipv4
Domains=devbuilds.vpc ec2.internal

[DHCP]
UseMTU=true
RouteMetric=100

$> ip link show eth0
2: eth0:  mtu 9001 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff
# manually set MTU
$> sudo ip link set dev eth0 mtu 1500
$> ip link show eth0
2: eth0:  mtu 1500 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff
$> sudo netplan generate
$> sudo netplan apply
$> ip link show eth0
2: eth0:  mtu 9001 qdisc mq state UP mode 
DEFAULT group default qlen 1000
link/ether 12:0f:ae:49:5d:06 brd ff:ff:ff:ff:ff:ff

The last netplan commands could be replaced with a reboot with the same
result.  This configuration seemed to help others, so hopefully i'm
simply missing something or perhaps this is related to EC2?

Attaching output of cloud-init

** Attachment added: "Result of cloud-init collect-logs"
   
https://bugs.launchpad.net/netplan/+bug/1724895/+attachment/5219533/+files/cloud-init-logs-2018-12-05.tgz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1724895

Title:
  MTU not applied on private ethernet interfaces

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1724895/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1794949] [NEW] update-alternatives inconsistent after package upgrade

2018-09-28 Thread jd
Public bug reported:

$ gcc -v
...
gcc version 8.1.0 (Ubuntu 8.1.0-1ubuntu1)
$ sudo apt update && sudo apt upgrade
...
The following packages will be upgraded:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 cpp-8 g++ g++-7
  g++-8 gcc gcc-7 gcc-7-base gcc-8 gcc-8-base gdm3 gir1.2-gdm-1.0 lib32gcc1
  lib32stdc++6 libasan4 libasan5 libatomic1 libbinutils libcc1-0 libcilkrts5
  libgcc-7-dev libgcc-8-dev libgcc1 libgdm1 libgomp1 libitm1 liblsan0 libmpx2
  libnautilus-extension1a libobjc-7-dev libobjc4 libquadmath0 libstdc++-7-dev
  libstdc++-8-dev libstdc++6 libtsan0 libubsan0 libubsan1 nautilus
  nautilus-data python3-distupgrade tzdata ubuntu-release-upgrader-core
  ubuntu-release-upgrader-gtk
...
Setting up gcc-7 (7.3.0-27ubuntu1~18.04) ...
Setting up g++-7 (7.3.0-27ubuntu1~18.04) ...
Setting up gcc (4:7.3.0-3ubuntu2.1) ...
Setting up gcc-8 (8.2.0-1ubuntu2~18.04) ...
Setting up g++-8 (8.2.0-1ubuntu2~18.04) ...
Setting up g++ (4:7.3.0-3ubuntu2.1) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
$ gcc -v
...
gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04) 
$ update-alternatives --display gcc
gcc - auto mode
  link best version is /usr/bin/gcc-8
  link currently points to /usr/bin/gcc-8
  link gcc is /usr/bin/gcc
  slave g++ is /usr/bin/g++
/usr/bin/gcc-7 - priority 700
  slave g++: /usr/bin/g++-7
/usr/bin/gcc-8 - priority 800
  slave g++: /usr/bin/g++-8
$ $ ll /usr/bin/gcc
lrwxrwxrwx 1 root root 5 Sep 17 09:07 /usr/bin/gcc -> gcc-7*

So after the upgrades update-alternatives shows that /usr/bin/gcc points
to /usr/bin/gcc-8 as it was before the upgrades, when in fact it points
to gcc-7.

** Affects: apt (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/1794949

Title:
  update-alternatives inconsistent after package upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1794949/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1152226] Re: nautilus no longer remembers view per directory

2017-10-13 Thread JD
...still waiting...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1152226

Title:
  nautilus no longer remembers view per directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/1152226/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1697780] [NEW] installing lubuntu 16.10 on thinkpad & Grub installer is failing

2017-06-13 Thread JD Johnson
Public bug reported:

I think it's been the Grub failing,

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: ubiquity 16.10.14
ProcVersionSignature: Ubuntu 4.8.0-22.24-generic 4.8.0
Uname: Linux 4.8.0-22-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CasperVersion: 1.379
Date: Tue Jun 13 21:18:58 2017
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/lubuntu.seed 
boot=casper only-ubiquity quiet splash oem-config/enable=true ---
LiveMediaBuild: Lubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lubuntu ubiquity-16.10.14 yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1697780

Title:
  installing lubuntu 16.10 on thinkpad & Grub installer is failing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1697780/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1594989] Re: Turn off screen after n minutes does not work in Ubuntu 16.04

2017-03-28 Thread jd
I have run into this problem as well. The "inactive" in "Turn screen off
when inactive for" is a bit misleading: it's not directly about the user
being inactive.

For example: Playing an HTML5-YouTube Video in Firefox will delay the turning 
off of the screen until the video is finished playing. (This is nice, because 
you don't have to bump the mouse periodically if you're watching a long video.) 
However, this is not the behavior when playing a Flash-Video in Firefox. In 
that case, the screen will start turning off when the set timer is expired. My 
speculation is that Firefox takes some kind of "lock" and prevents Unity from 
turning off the screen but the Flash-Plugin does not (or Firefox doesn't in 
that case?)
 
I suspect that after being suspended and resumed a couple of times something 
goes wrong with this feature (until reboot.) Some application (Firefox in my 
case probably) does not properly release the "lock" and the screen always stays 
on.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1594989

Title:
  Turn off screen after n minutes does not work in Ubuntu 16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-screensaver/+bug/1594989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1649118] [NEW] Grub Failed to Install

2016-12-11 Thread JD R
Public bug reported:

I tried installing Xubuntu over an existing Xubuntu install. By default
it tried to install grub to SDA, even though I need it installed on SDE.
When I tried selecting SDE when it crashed, it refused to install to SDE
either.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: ubiquity 16.10.14 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.8.0-22.24-generic 4.8.0
Uname: Linux 4.8.0-22-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CasperVersion: 1.379
Date: Sun Dec 11 13:50:22 2016
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/xubuntu.seed 
boot=casper quiet splash --- cdrom-detect/try-usb=true noprompt persistent
LiveMediaBuild: Xubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
ProcEnviron:
 TERM=unknown
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubiquity-16.10.14 xubuntu yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1649118

Title:
  Grub Failed to Install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1649118/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1416897] Re: static image of desktop and windows displayed instead of lockscreen

2016-11-11 Thread jd
I occasionally observe this behavior on 16.04 as well, when the computer
returns from suspend.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1416897

Title:
  static image of desktop and windows displayed instead of lockscreen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-screensaver/+bug/1416897/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1575179] [NEW] Wifi not detected on Pavilion X360 fresh install

2016-04-26 Thread JD Evora
Public bug reported:

I did a fresh install on a HP Pavilion X300 model11-k001ns

The main problem is that I can connect to the Wifi,  it appears as
disabled in the Network Manager and when I enable it, it doesn't show
any SSID

I think it detects two wireless devices

~$ lsmod |grep _wmi
hp_wmi16384  0
acer_wmi 20480  0~$ 
sparse_keymap  16384  2 acer_wmi,hp_wmi
wmi   20480  2 acer_wmi,hp_wmi
video40960  2 i915,acer_wmi


~$ uname -a
Linux ubuntuHP 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:33:37 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux


~$ sudo rfkill list
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no
~$ sudo rfkill unblock wifi
~$ sudo rfkill list
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no

~$ lspci -nnk | grep 0280 -A2
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE 
PCIe Wireless Network Adapter [10ec:b723]
Subsystem: Hewlett-Packard Company RTL8723BE PCIe Wireless Network 
Adapter [103c:804c]
Kernel driver in use: rtl8723be

** Affects: gnome-nettool (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: 16.04

** Tags added: 16.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1575179

Title:
  Wifi not detected on Pavilion X360 fresh install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-nettool/+bug/1575179/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 883319] Re: xrandr --scale restricts area in which mouse moves

2016-02-09 Thread jd
Gee thanks,

Looks like you don't fix issues, you just leave them open and when you
don't feel like fixing anything, you close it so it looks like you did
something to help which you didn't. Thanks for nothing.

On Tue, Feb 9, 2016 at 4:20 AM, Marc Deslauriers <
marc.deslauri...@canonical.com> wrote:

> This particular bug has been closed for a long time. If you are still
> seeing an issue similar to this one, please file a new bug. Thanks.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/883319
>
> Title:
>   xrandr --scale restricts area in which mouse moves
>
> Status in X.Org X server:
>   Incomplete
> Status in xorg-server package in Ubuntu:
>   Fix Released
> Status in xorg-server source package in Precise:
>   Fix Released
> Status in xorg-server source package in Quantal:
>   Fix Released
> Status in xorg-server source package in Raring:
>   Fix Released
>
> Bug description:
>   SRU Request:
>
>   [IMPACT]
>   A bug in the version of xorg-server in precise prevents users from
> scaling screen resolution. When attempting to do so, as was possible in
> Natty and earlier, and which is possible in Quantal+, the mouse pointer
> remains locked inside the old resolution. This prevents users of small
> screens such as netbooks from scaling to a greater screen resolution.
>
>   [Test Case]
>   - On a netbook with intel chipset, such as a Dell Mini 9 or 10, scale
> the display by using the following command:
>
>   xrandr --output LVDS1 --panning 1280x750 --scale 1.25x1.25
>
>   See if the mouse moves correctly to all screen extremities, and is not
>   confined by a transparent border at 1024x600
>
>   [Regression Potential]
>   This is fixed with a patch backported from the xorg-server version in
> Quantal. In theory it should just affect screen which are scaled and
> panned, which is uncommon. If so, the patch can be backed out.
>
>
>
>   Original Bug Description:
>   in kubuntu (and ubuntu) 11.04 i used to enlarge my laptop screen like so
>
>   xrandr --output LVDS1 --scale 1.2x1.2
>
>   this worked fine: the desktop scaled to larger size correctly .
>After upgrading to 11.10, in kde the desktop still resizes
>   correctly, but the movement of the mouse is restricted to an area equal
> to
>   the screen size *before* issuing the scaling command. .. Ie let's say
>   the mode is 1366x768 and I do xrandr --output LVDS1 --scale 1.2x1.2 the
>   screen size changes to 1640x922 but the mouse moves in an area the size
> of
>   1366x768 in the top left of the screen and then 'hits a wall' preventing
>   it to move. I also tried ubuntu 11.10 with gnome: here the screen also
>   resizes, but I have the same issue with the mouse, and the extended area
>   of the desktop is black...
>
>   Some time ago there was a similar issue, which was resolved later. Now
> it seems
>   to be back...
>
>   jos@samsungsucks:~$ lsb_release -rd
>   Description:Ubuntu 11.10
>   Release:11.10
>
>   jos@samsungsucks:~$ xrandr --version
>   xrandr program version   1.3.5
>   Server reports RandR version 1.3
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/xorg-server/+bug/883319/+subscriptions
>


-- 
J.D. Abbey III
jdabbey...@gmail.com
Mobile (858) 349-3357
Office (714) 584-4011

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883319

Title:
  xrandr --scale restricts area in which mouse moves

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/883319/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 883319] Re: xrandr --scale restricts area in which mouse moves

2016-02-09 Thread jd
No it wasn't. I saw this issue in 13.10, 14.04, 14.10, 15.04, and now
15.10. So if it was fixed in 12.04, then it was only fixed in that version.
Funny that I have a new bug altogether and yet the symptoms are identical
in every way. More liked Occam's Razor states that either the issue was
never fixed, or more complex description of it being fixed, then a magical
being appeared from the sky and made a completely different issue that is
identical in every way, but is apparently not the same thing.

You tell me if that sounds like a completely different bug or if it's a
lazy person who didn't fix it at all or correctly.


On Tue, Feb 9, 2016 at 8:56 AM, Marc Deslauriers <
marc.deslauri...@canonical.com> wrote:

> This particular bug was indeed fixed in Ubuntu 12.04:
>
> xorg-server (2:1.11.4-0ubuntu10.12) precise-proposed; urgency=low
>
>   * debian/patches/238-xrandr-fix-panning.patch: disable CRTC cursor
> confinement when panning is enabled. (LP: #883319)
>
>  -- Marc Deslauriers  Tue, 12 Feb 2013
> 16:45:02 -0500
>
> If you are seeing similar symptoms in a more recent release, it's likely
> to be a different bug altogether.
> Please file a new bug so the issue actually gets fixed instead of
> commenting in a bug that has been long closed and doesn't show up on any
> bug lists anymore.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/883319
>
> Title:
>   xrandr --scale restricts area in which mouse moves
>
> Status in X.Org X server:
>   Incomplete
> Status in xorg-server package in Ubuntu:
>   Fix Released
> Status in xorg-server source package in Precise:
>   Fix Released
> Status in xorg-server source package in Quantal:
>   Fix Released
> Status in xorg-server source package in Raring:
>   Fix Released
>
> Bug description:
>   SRU Request:
>
>   [IMPACT]
>   A bug in the version of xorg-server in precise prevents users from
> scaling screen resolution. When attempting to do so, as was possible in
> Natty and earlier, and which is possible in Quantal+, the mouse pointer
> remains locked inside the old resolution. This prevents users of small
> screens such as netbooks from scaling to a greater screen resolution.
>
>   [Test Case]
>   - On a netbook with intel chipset, such as a Dell Mini 9 or 10, scale
> the display by using the following command:
>
>   xrandr --output LVDS1 --panning 1280x750 --scale 1.25x1.25
>
>   See if the mouse moves correctly to all screen extremities, and is not
>   confined by a transparent border at 1024x600
>
>   [Regression Potential]
>   This is fixed with a patch backported from the xorg-server version in
> Quantal. In theory it should just affect screen which are scaled and
> panned, which is uncommon. If so, the patch can be backed out.
>
>
>
>   Original Bug Description:
>   in kubuntu (and ubuntu) 11.04 i used to enlarge my laptop screen like so
>
>   xrandr --output LVDS1 --scale 1.2x1.2
>
>   this worked fine: the desktop scaled to larger size correctly .
>After upgrading to 11.10, in kde the desktop still resizes
>   correctly, but the movement of the mouse is restricted to an area equal
> to
>   the screen size *before* issuing the scaling command. .. Ie let's say
>   the mode is 1366x768 and I do xrandr --output LVDS1 --scale 1.2x1.2 the
>   screen size changes to 1640x922 but the mouse moves in an area the size
> of
>   1366x768 in the top left of the screen and then 'hits a wall' preventing
>   it to move. I also tried ubuntu 11.10 with gnome: here the screen also
>   resizes, but I have the same issue with the mouse, and the extended area
>   of the desktop is black...
>
>   Some time ago there was a similar issue, which was resolved later. Now
> it seems
>   to be back...
>
>   jos@samsungsucks:~$ lsb_release -rd
>   Description:Ubuntu 11.10
>   Release:11.10
>
>   jos@samsungsucks:~$ xrandr --version
>   xrandr program version   1.3.5
>   Server reports RandR version 1.3
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/xorg-server/+bug/883319/+subscriptions
>


-- 
J.D. Abbey III
jdabbey...@gmail.com
Mobile (858) 349-3357
Office (714) 584-4011

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883319

Title:
  xrandr --scale restricts area in which mouse moves

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/883319/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-25 Thread JD R
It seems like it now works. I updated today, as well as install linux-
cloud-tools-common and dependencies. Not sure what fixed it, but it
works now.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-25 Thread JD R
The bug is still present in both Xubuntu 15.04 and Ubuntu 15.10. In
Xubuntu 15.04, the bug goes away if I log out then log back in. This
does not fix the problem in Ubuntu 15.10.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-20 Thread JD R
** Changed in: xorg (Ubuntu)
   Status: Triaged => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-20 Thread JD R
My mistake, I accidentally clicked when looking at the different
statuses.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-20 Thread JD R
Booting from Ubuntu 15.04 with kernel 3.16.7-992-generic does not
restore functionality, dmesg does not have any messages about wacom
tablets, and Wacom Settings reports that no tablets have been detected.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-19 Thread JD R
Both live and installed do not work. The Wacom settings reports that no
tablets were detected., and dmesg doesn't have anything about any Wacom
devices.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] Re: Upgrade from 15.04 breaks serial Wacom

2015-09-18 Thread JD R
Alright, I've updated the BIOS, and there's been no changes in behavior.  The 
output from your command is:
6QET70WW (1.40 )
10/11/2012


** Changed in: xorg (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/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1497264] [NEW] Upgrade from 15.04 breaks serial Wacom

2015-09-18 Thread JD R
Public bug reported:

Both a fresh install of Xubuntu 15.04 and upgrading from 14.10 break the
Wacom and touchscreen functionality on my thinkpad X201 tablet. This
function worked in both 14.04, and eventually in 14.10.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
Uname: Linux 3.19.0-28-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.4
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: XFCE
Date: Fri Sep 18 08:43:22 2015
DistUpgraded: 2015-09-18 08:36:24,296 DEBUG enabling apt cron job
DistroCodename: vivid
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:215a]
InstallationDate: Installed on 2015-09-18 (0 days ago)
InstallationMedia: Xubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
LightdmGreeterLog:
 ** (lightdm-gtk-greeter:856): WARNING **: Failed to load user image: Failed to 
open file '/home/eight/.face': No such file or directory
 g_dbus_connection_real_closed: Remote peer vanished with error: Underlying 
GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
 upstart: indicator-power main process (880) killed by TERM signal
 upstart: indicator-application main process (882) killed by TERM signal
LightdmGreeterLogOld:
 ** (lightdm-gtk-greeter:1426): WARNING **: Failed to load user image: Failed 
to open file '/home/eight/.face': No such file or directory
 g_dbus_connection_real_closed: Remote peer vanished with error: Underlying 
GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
MachineType: LENOVO 3093AH9
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-28-generic 
root=UUID=d01d31f3-4ca6-4e5c-9a59-1ebebe22fbc9 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to vivid on 2015-09-18 (0 days ago)
dmi.bios.date: 12/17/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6QET62WW (1.32 )
dmi.board.name: 3093AH9
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6QET62WW(1.32):bd12/17/2010:svnLENOVO:pn3093AH9:pvrThinkPadX201Tablet:rvnLENOVO:rn3093AH9:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 3093AH9
dmi.product.version: ThinkPad X201 Tablet
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2
version.libgl1-mesa-dri: libgl1-mesa-dri N/A
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Fri Sep 18 08:37:03 2015
xserver.configfile: default
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   16401 
 vendor LEN
xserver.version: 2:1.17.1-0ubuntu3~trusty1

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 ubuntu vivid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1497264

Title:
  Upgrade from 15.04 breaks serial Wacom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1497264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1392887] Re: serial wacom devices gone after upgrade to utopic/14.10

2015-09-17 Thread JD R
This problem is not fixed in Xubuntu 15.04. With a fresh install on an
X201 tablet, the system does not see the tablet. Replacing the udev file
with the one from 14.04 does not fix this either.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1392887

Title:
  serial wacom devices gone after upgrade to utopic/14.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-input-wacom/+bug/1392887/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-06-28 Thread Dr JD Wallach
Hi,
This bug does not seem to affect Ubuntu 15.04 Vivid kernel 3.19.0-21
either. So, you may go ahead and close this bug as it seems to have been
corrected in later realseses of Ubuntu.
Thank you all for all the help.  

-- 
  Dr Joseph D. Wallach
  walla...@operamail.com

On Fri, Jun 26, 2015, at 11:45 AM, Christopher M. Penalver wrote:
 Dr JD Wallach, given the fix appears to have already started to make
 it's way into Ubuntu, would you need a backport to a release prior to
 Utopic, or may this be closed as Status Invalid?
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1450989
 
 Title:
   USB attached keyboard and mouse don't work at the login time to Ubuntu
   Trusty Tahr 64 bit
 
 Status in linux package in Ubuntu:
   Incomplete
 
 Bug description:
   After the update to kernel 3.13.0-51-generic from kernel 3.13.0-45
   generic, in Trusty Tahr 64 bit, USB devices don't work at login time.
   The login screen comes up but one cannot login because both the
   keyboard and the mouse are USB attached devices, and are not working.
 
   I was able to login and use the computer by using the advanced mode in
   Grub and then reverting to kernel 3.13.0-45 generic.
   I could also login if I used the advanced mode and then loged in to the
   recovery mode of kernel 3.13.0-51 and just selected the resume entry in
   the offered menu.
 
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-51-generic 3.13.0-51.84
   ProcVersionSignature: Ubuntu 3.13.0-51.84-generic 3.13.11-ckt18
   Uname: Linux 3.13.0-51-generic x86_64
   ApportVersion: 2.14.1-0ubuntu3.10
   Architecture: amd64
   AudioDevicesInUse:
USERPID ACCESS COMMAND
/dev/snd/controlC0:  trusty64   2880 F pulseaudio
/dev/snd/controlC1:  trusty64   2880 F pulseaudio
/dev/snd/pcmC1D0p:   trusty64   2880 F...m pulseaudio
   CurrentDesktop: Unity
   Date: Fri May  1 21:51:01 2015
   HibernationDevice: RESUME=UUID=cc70b21b-da9b-4702-8414-654276ec2c88
   InstallationDate: Installed on 2014-07-04 (302 days ago)
   InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64
   (20140417)
   MachineType: Dell Inc. Inspiron 3847
   ProcFB:

   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-51-generic
   root=UUID=7324c2c5-3bc8-4160-a275-1e49e0eaa19b ro recovery nomodeset
   RelatedPackageVersions:
linux-restricted-modules-3.13.0-51-generic N/A
linux-backports-modules-3.13.0-51-generic  N/A
linux-firmware 1.127.11
   SourcePackage: linux
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 04/03/2014
   dmi.bios.vendor: Dell Inc.
   dmi.bios.version: A04
   dmi.board.name: 088DT1
   dmi.board.vendor: Dell Inc.
   dmi.board.version: A01
   dmi.chassis.type: 3
   dmi.chassis.vendor: Dell Inc.
   dmi.modalias:
   
 dmi:bvnDellInc.:bvrA04:bd04/03/2014:svnDellInc.:pnInspiron3847:pvr:rvnDellInc.:rn088DT1:rvrA01:cvnDellInc.:ct3:cvr:
   dmi.product.name: Inspiron 3847
   dmi.sys.vendor: Dell Inc.
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
http://www.fastmail.com - Does exactly what it says on the tin

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-06-25 Thread Dr JD Wallach
In further testing this problem it seems that it does not occur in Ubuntu 14.10 
running with kernel 3.16.0-38
Hope this helps

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-06-09 Thread Dr JD Wallach
Hi,
A workaround for this bug is:
Start the machine from scratch with all the USB devices plugged in.
Wait for the Grub menu to show on the screen.
Using the keyboard select Ubuntu as the operating system to load.
Right after selecting the Ubuntu OS, disconnect the USB mouse (be it direct USB 
plug-in or remote).
When the Ubuntu login screen comes up it will be possible to use the keyboard 
to enter the user-name and the password.
Once the Ubuntu environment is established, reconnect the USB mouse., and use 
it normally.
Problem solved, although a bit annoying.
Hope this helps.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1440174] Re: Keyboard and Mouse don't work with latest Kernel

2015-06-04 Thread Dr JD Wallach
Hi,
Yes, WiFi was also failing for me.  The workaround solves the WiFi
problem also.
Good luck.

-- 
  Dr Joseph D. Wallach
  walla...@operamail.com

On Wed, Jun 3, 2015, at 09:56 PM, sTiVo wrote:
 You don't mention if WiFi was also failing for you.  It is for me.  Does
 your workaround solve that as well?
 
 Sent from my iPhone
 
  On Jun 3, 2015, at 4:41 PM, Dr JD Wallach walla...@operamail.com wrote:
  
  Hi,
  I have found a workaround for this bug: 
  Start the machine from scratch with all the USB devices plugged in.
  Wait for the Grub menu to show on the screen.
  Using the keyboard select Ubuntu as the operating system to load.
  Immediately after selecting the Ubuntu OS, disconnect the USB mouse (be
  it direct USB plug-in or remote).
  When the Ubuntu login screen comes up it will be possible to use the
  keyboard to enter the user-name and the password.
  Once the Ubuntu environment is established, reconnect the USB mouse.,
  and use it 
  normally.
  Problem solved, although a bit annoying.
  Hope this helps.
  
  -- 
   Dr Joseph D. Wallach
   walla...@operamail.com
  
  On Fri, May 29, 2015, at 12:44 PM, Steve Cohen wrote:
  What, please, is the status of this bug?  Is there a fix or candidate
  fix in any newer version of the kernel?
  
  Since I signed on to this bug in early April, I have been looking for
  some resolution to it.  For awhile I was checking each new kernel
  release to see if the bug was fixed.   I have downgraded to 3.13.0-46,
  the last version that works with my computer.  The later releases can
  not even be installed by the auto-installer.
  
  -- 
  You received this bug notification because you are subscribed to the bug
  report.
  https://bugs.launchpad.net/bugs/1440174
  
  Title:
   Keyboard and Mouse don't work with latest Kernel
  
  Status in linux package in Ubuntu:
   Incomplete
  
  Bug description:
   1)
   Description:Ubuntu 14.04.2 LTS
   Release:14.04
  
   2) Linux / The kernel
  
   3) I expected my usb devices to work on the login page
  
   4) They don't work :)
  
   ...
  
   Upon the upgrade to kernel 3.13.0-48-generic my USB devices don't
   work, so when I did a normal launch of my computer, I could not sign
   into it since my usb devices were not working.
  
   I was able to sign and and use my computer as normal when I revert to
   kernel 3.13.0-46-generic.
  
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-46-generic 3.13.0-46.79
   ProcVersionSignature: Ubuntu 3.13.0-46.79-generic 3.13.11-ckt15
   Uname: Linux 3.13.0-46-generic x86_64
   ApportVersion: 2.14.1-0ubuntu3.8
   Architecture: amd64
   CurrentDesktop: Unity
   Date: Fri Apr  3 13:06:36 2015
   HibernationDevice: RESUME=UUID=ae54d2d5-4931-4fcc-8996-aa3adf03cbb6
   InstallationDate: Installed on 2015-01-01 (92 days ago)
   InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64
   (20140722.2)
   MachineType: Dell Inc. Inspiron 3847
   ProcFB: 0 inteldrmfb
   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-46-generic
   root=UUID=32967a77-1e86-4f47-abfd-a3b98a6e9af6 ro quiet splash
   vt.handoff=7
   RelatedPackageVersions:
linux-restricted-modules-3.13.0-46-generic N/A
linux-backports-modules-3.13.0-46-generic  N/A
linux-firmware 1.127.11
   RfKill:
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
   SourcePackage: linux
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 04/03/2014
   dmi.bios.vendor: Dell Inc.
   dmi.bios.version: A04
   dmi.board.name: 088DT1
   dmi.board.vendor: Dell Inc.
   dmi.board.version: A01
   dmi.chassis.type: 3
   dmi.chassis.vendor: Dell Inc.
   dmi.modalias:
   
  dmi:bvnDellInc.:bvrA04:bd04/03/2014:svnDellInc.:pnInspiron3847:pvr:rvnDellInc.:rn088DT1:rvrA01:cvnDellInc.:ct3:cvr:
   dmi.product.name: Inspiron 3847
   dmi.sys.vendor: Dell Inc.
  
  To manage notifications about this bug go to:
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1440174/+subscriptions
  
  -- 
  http://www.fastmail.com - mmm... Fastmail...
  
  -- 
  You received this bug notification because you are subscribed to the bug
  report.
  https://bugs.launchpad.net/bugs/1440174
  
  Title:
   Keyboard and Mouse don't work with latest Kernel
  
  Status in linux package in Ubuntu:
   Incomplete
  
  Bug description:
   1)
   Description:Ubuntu 14.04.2 LTS
   Release:14.04
  
   2) Linux / The kernel
  
   3) I expected my usb devices to work on the login page
  
   4) They don't work :)
  
   ...
  
   Upon the upgrade to kernel 3.13.0-48-generic my USB devices don't
   work, so when I did a normal launch of my computer, I could not sign
   into it since my usb devices were not working.
  
   I was able to sign and and use my computer as normal when I revert to
   kernel 3.13.0-46-generic.
  
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-46-generic 3.13.0-46.79

Re: [Bug 1440174] Re: Keyboard and Mouse don't work with latest Kernel

2015-06-03 Thread Dr JD Wallach
Hi,
I have found a workaround for this bug: 
Start the machine from scratch with all the USB devices plugged in.
Wait for the Grub menu to show on the screen.
Using the keyboard select Ubuntu as the operating system to load.
Immediately after selecting the Ubuntu OS, disconnect the USB mouse (be
it direct USB plug-in or remote).
When the Ubuntu login screen comes up it will be possible to use the
keyboard to enter the user-name and the password.
Once the Ubuntu environment is established, reconnect the USB mouse.,
and use it 
normally.
Problem solved, although a bit annoying.
Hope this helps.

-- 
  Dr Joseph D. Wallach
  walla...@operamail.com

On Fri, May 29, 2015, at 12:44 PM, Steve Cohen wrote:
 What, please, is the status of this bug?  Is there a fix or candidate
 fix in any newer version of the kernel?
 
 Since I signed on to this bug in early April, I have been looking for
 some resolution to it.  For awhile I was checking each new kernel
 release to see if the bug was fixed.   I have downgraded to 3.13.0-46,
 the last version that works with my computer.  The later releases can
 not even be installed by the auto-installer.
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1440174
 
 Title:
   Keyboard and Mouse don't work with latest Kernel
 
 Status in linux package in Ubuntu:
   Incomplete
 
 Bug description:
   1)
   Description:Ubuntu 14.04.2 LTS
   Release:14.04
 
   2) Linux / The kernel
 
   3) I expected my usb devices to work on the login page
 
   4) They don't work :)
 
   ...
 
   Upon the upgrade to kernel 3.13.0-48-generic my USB devices don't
   work, so when I did a normal launch of my computer, I could not sign
   into it since my usb devices were not working.
 
   I was able to sign and and use my computer as normal when I revert to
   kernel 3.13.0-46-generic.
 
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-46-generic 3.13.0-46.79
   ProcVersionSignature: Ubuntu 3.13.0-46.79-generic 3.13.11-ckt15
   Uname: Linux 3.13.0-46-generic x86_64
   ApportVersion: 2.14.1-0ubuntu3.8
   Architecture: amd64
   CurrentDesktop: Unity
   Date: Fri Apr  3 13:06:36 2015
   HibernationDevice: RESUME=UUID=ae54d2d5-4931-4fcc-8996-aa3adf03cbb6
   InstallationDate: Installed on 2015-01-01 (92 days ago)
   InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64
   (20140722.2)
   MachineType: Dell Inc. Inspiron 3847
   ProcFB: 0 inteldrmfb
   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-46-generic
   root=UUID=32967a77-1e86-4f47-abfd-a3b98a6e9af6 ro quiet splash
   vt.handoff=7
   RelatedPackageVersions:
linux-restricted-modules-3.13.0-46-generic N/A
linux-backports-modules-3.13.0-46-generic  N/A
linux-firmware 1.127.11
   RfKill:
0: phy0: Wireless LAN
   Soft blocked: no
   Hard blocked: no
   SourcePackage: linux
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 04/03/2014
   dmi.bios.vendor: Dell Inc.
   dmi.bios.version: A04
   dmi.board.name: 088DT1
   dmi.board.vendor: Dell Inc.
   dmi.board.version: A01
   dmi.chassis.type: 3
   dmi.chassis.vendor: Dell Inc.
   dmi.modalias:
   
 dmi:bvnDellInc.:bvrA04:bd04/03/2014:svnDellInc.:pnInspiron3847:pvr:rvnDellInc.:rn088DT1:rvrA01:cvnDellInc.:ct3:cvr:
   dmi.product.name: Inspiron 3847
   dmi.sys.vendor: Dell Inc.
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1440174/+subscriptions

-- 
http://www.fastmail.com - mmm... Fastmail...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1440174

Title:
  Keyboard and Mouse don't work with latest Kernel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1440174/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-26 Thread Dr JD Wallach
May 26,2015
Sorry for the delay.
As requested “the reverse commit bisect from kernel 3.13 to 4.1-rc2“ was done.  
The results are as folows:

Last bad was:
3.13.11.2-trusty aka
3.13.11-03131102-generic_3.13.11-03131102.201405081435_amd64.deb

Last good was:
3.13.11.3-trusty aka
3.13.11-03131103-generic_3.13.11-03131103.201406131635_amd64.deb

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 883319] Re: xrandr --scale restricts area in which mouse moves

2015-05-22 Thread jd
Has this patch been applied to any of the newer versions of xorg? I'm
having a hell of a time getting this patched and would rather just
upgrade xorg completely.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883319

Title:
  xrandr --scale restricts area in which mouse moves

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/883319/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-08 Thread Dr JD Wallach
As per your instructions the 
linux-headers-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
linux-image-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
linux-headers-4.1.0-040100rc2_4.1.0-040100rc2.201505032335_all.deb
were downloaded and installed in the Ubuntu 14.04 64 bit operating system that 
run inside the Dell 3847 computer..
At first the installation ended with errors, but after un-installing Oracle 
corporation’s Virtual Box and re installing the above kernel headers and image 
the installation ended successfully.
When the computer was started from scratch and the advanced Grub menu was 
selected, it showed the newly installed kernel as a one of the possibilities 
for booting the computer.
Once the newly installed kernel was selected for booting the computer, it was 
possible to login into the Ubuntu operating system as both the mouse and the 
keyboard were now operable.
It should be said, however, that the resulting Ubuntu operating system 
environment was very unstable, but that was not the point of the test. 
So now what is next?

** Tags removed: trusty
** Tags added: kernel-fixed-upstreamtrusty

** Tags removed: kernel-fixed-upstreamtrusty
** Tags added: kernkernel-fixed-upstream-4.1.0-040100rc2el-fixed-upstreamtrusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-08 Thread Dr JD Wallach
Hi,
As per your instructions the
 linux-headers-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
 linux-image-4.1.0-040100rc2-generic_4.1.0-040100rc2.201505032335_amd64.deb
 linux-headers-4.1.0-040100rc2_4.1.0-040100rc2.201505032335_all.deb
 were downloaded and installed in the Ubuntu 14.04 64 bit operating
 system that run inside the Dell 3847 computer..
 At first the installation ended with errors, but after un-installing
 Oracle corporation’s Virtual Box and re installing the above kernel
 headers and image the installation ended successfully.
 When the computer was started from scratch and the advanced Grub menu
 was selected, it showed the newly installed kernel as a one of the
 possibilities for booting the computer.
 Once the newly installed kernel was selected for booting the computer,
 it was possible to login into the Ubuntu operating system as both the
 mouse and the keyboard were now operable.
 It should be said, however, that the resulting Ubuntu operating system
 environment was very unstable, but that was not the point of the test.
 So now what is next?

-- 
  Dr Joseph D. Wallach
  walla...@operamail.com

On Mon, May 4, 2015, at 10:19 PM, Christopher M. Penalver wrote:
 Dr JD Wallach, could you please test the latest upstream kernel
 available from the very top line at the top of the page (the release
 names are irrelevant for testing, and please do not test the daily
 folder) following https://wiki.ubuntu.com/KernelMainlineBuilds ? It will
 allow additional upstream developers to examine the issue.
 
 If the test did not allow you to test to the issue (ex. you couldn't boot
 into the OS) please make a comment in your report about this, and
 continue to test the next most recent kernel version until you can test
 to the issue. Once you've tested the upstream kernel, please comment on
 which kernel version specifically you tested. If this bug is fixed in the
 mainline kernel, please add the following tags by clicking on the yellow
 circle with a black pencil icon, next to the word Tags, located at the
 bottom of the report description:
 kernel-fixed-upstream
 kernel-fixed-upstream-X.Y-rcZ
 
 Where XY and Z are numbers corresponding to the kernel version.
 
 If the mainline kernel does not fix this bug, please add the following
 tags:
 kernel-bug-exists-upstream
 kernel-bug-exists-upstream-X.Y-rcZ
 
 Once testing of the upstream kernel is complete, please mark this bug's
 Status as Confirmed. Please let us know your results.
 
 ** Tags removed: bios-outdated-a06
 ** Tags added: latest-bios-a06
 
 ** Changed in: linux (Ubuntu)
Importance: Low = Medium
 
 ** Changed in: linux (Ubuntu)
Status: Confirmed = Incomplete
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1450989
 
 Title:
   USB attached keyboard and mouse don't work at the login time to Ubuntu
   Trusty Tahr 64 bit
 
 Status in linux package in Ubuntu:
   Incomplete
 
 Bug description:
   After the update to kernel 3.13.0-51-generic from kernel 3.13.0-45
   generic, in Trusty Tahr 64 bit, USB devices don't work at login time.
   The login screen comes up but one cannot login because both the
   keyboard and the mouse are USB attached devices, and are not working.
 
   I was able to login and use the computer by using the advanced mode in
   Grub and then reverting to kernel 3.13.0-45 generic.
   I could also login if I used the advanced mode and then loged in to the
   recovery mode of kernel 3.13.0-51 and just selected the resume entry in
   the offered menu.
 
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-51-generic 3.13.0-51.84
   ProcVersionSignature: Ubuntu 3.13.0-51.84-generic 3.13.11-ckt18
   Uname: Linux 3.13.0-51-generic x86_64
   ApportVersion: 2.14.1-0ubuntu3.10
   Architecture: amd64
   AudioDevicesInUse:
USERPID ACCESS COMMAND
/dev/snd/controlC0:  trusty64   2880 F pulseaudio
/dev/snd/controlC1:  trusty64   2880 F pulseaudio
/dev/snd/pcmC1D0p:   trusty64   2880 F...m pulseaudio
   CurrentDesktop: Unity
   Date: Fri May  1 21:51:01 2015
   HibernationDevice: RESUME=UUID=cc70b21b-da9b-4702-8414-654276ec2c88
   InstallationDate: Installed on 2014-07-04 (302 days ago)
   InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64
   (20140417)
   MachineType: Dell Inc. Inspiron 3847
   ProcFB:

   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-51-generic
   root=UUID=7324c2c5-3bc8-4160-a275-1e49e0eaa19b ro recovery nomodeset
   RelatedPackageVersions:
linux-restricted-modules-3.13.0-51-generic N/A
linux-backports-modules-3.13.0-51-generic  N/A
linux-firmware 1.127.11
   SourcePackage: linux
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 04/03/2014
   dmi.bios.vendor: Dell Inc.
   dmi.bios.version: A04
   dmi.board.name: 088DT1
   dmi.board.vendor: Dell Inc

[Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-04 Thread Dr JD Wallach
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1450989] Re: USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-04 Thread Dr JD Wallach
Hi,
Here are the results from the command sudo dmidecode -s bios-version 
sudo dmidecode -s bios-release-date

trusty64@trusty64-1015PX:~$ sudo dmidecode -s bios-version
A06
trusty64@trusty64-1015PX:~$ sudo dmidecode -s bios-release-date
01/15/2015


Sad to say, but after updating the Dell 3847 computer BIOS from version
A04 (4/3/2014) to version A06 successfully, and after re booting the
computer the problem is still present.

Here are several bits of information that might be of interest:

When turning the power switch on the computer, and then choosing the
Ubuntu operating system from the Grub menu, there is no connect message
and the mouse and the keyboard are inoperable and therefore it is
impossible to login into the Ubuntu operating system.

The Ubuntu operating system login screen functions only if one logs into
the windows operating system first and then RE-STARTS from there into
Grub and eventually Ubuntu..

Once one is in the Ubuntu operating system environment, one can
successfully RE-START back to Grub and eventually the Ubuntu operating
system, as both the mouse and keyboard are operable after the connect
message comes on.

The BIOS update was done within the windows 7x64 Pro environment, as the
instructions for the BIOS update on the Dell support website were
windows 7x64 Pro specific.

Once the BIOS update was done successfully he computer was RE-STARTED
back to windows 7x64 Pro via Grub. 

Once the windows 7x64 Pro environment was completely established, and
after verifying that the environment was working properly after the BIOS
update, the computer once again was RE-STARTED. 

Once the computer RE-STARTED and the Grub menu for the choice of
operating systems came on, Ubuntu 14.04 was chosen.

Eventually the Login screen came on, and immediately received a message
on the upper right hand side of the screen informing that the computer
was now connected to the network (you are now connected to etc.).

Once the connection message disappeared both the mouse and the keyboard
were operable and login was possible.

Hope this helps somewhat.

-- 
  Dr Joseph D. Wallach
  walla...@operamail.com

On Sat, May 2, 2015, at 11:43 AM, Christopher M. Penalver wrote:
 Dr JD Wallach, thank you for reporting this and helping make Ubuntu
 better. As per http://www.dell.com/support/home/us/en/04/product-
 support/product/inspiron-3847-desktop/drivers an update to your
 computer's buggy and outdated BIOS is available (A06). If you update to
 this following https://help.ubuntu.com/community/BIOSUpdate does it
 change anything?
 
 If it doesn't, could you please both specify what happened, and provide
 the output of the following terminal command:
 sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date
 
 For more on BIOS updates and linux, please see
 https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
 .
 
 Please note your current BIOS is already in the Bug Description, so
 posting this on the old BIOS would not be helpful. As well, you don't
 have to create a new bug report.
 
 Once the BIOS is updated, and the information above is provided, then
 please mark this report Status Confirmed.
 
 Thank you for your understanding.
 
 ** Tags added: bios-outdated-a06
 
 ** Changed in: linux (Ubuntu)
Importance: Undecided = Low
 
 ** Changed in: linux (Ubuntu)
Status: Confirmed = Incomplete
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1450989
 
 Title:
   USB attached keyboard and mouse don't work at the login time to Ubuntu
   Trusty Tahr 64 bit
 
 Status in linux package in Ubuntu:
   Incomplete
 
 Bug description:
   After the update to kernel 3.13.0-51-generic from kernel 3.13.0-45
   generic, in Trusty Tahr 64 bit, USB devices don't work at login time.
   The login screen comes up but one cannot login because both the
   keyboard and the mouse are USB attached devices, and are not working.
 
   I was able to login and use the computer by using the advanced mode in
   Grub and then reverting to kernel 3.13.0-45 generic.
   I could also login if I used the advanced mode and then loged in to the
   recovery mode of kernel 3.13.0-51 and just selected the resume entry in
   the offered menu.
 
   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: linux-image-3.13.0-51-generic 3.13.0-51.84
   ProcVersionSignature: Ubuntu 3.13.0-51.84-generic 3.13.11-ckt18
   Uname: Linux 3.13.0-51-generic x86_64
   ApportVersion: 2.14.1-0ubuntu3.10
   Architecture: amd64
   AudioDevicesInUse:
USERPID ACCESS COMMAND
/dev/snd/controlC0:  trusty64   2880 F pulseaudio
/dev/snd/controlC1:  trusty64   2880 F pulseaudio
/dev/snd/pcmC1D0p:   trusty64   2880 F...m pulseaudio
   CurrentDesktop: Unity
   Date: Fri May  1 21:51:01 2015
   HibernationDevice: RESUME=UUID=cc70b21b-da9b-4702-8414-654276ec2c88

[Bug 1450989] [NEW] USB attached keyboard and mouse don't work at the login time to Ubuntu Trusty Tahr 64 bit

2015-05-02 Thread Dr JD Wallach
Public bug reported:

After the update to kernel 3.13.0-51-generic from kernel 3.13.0-45
generic, in Trusty Tahr 64 bit, USB devices don't work at login time.
The login screen comes up but one cannot login because both the keyboard
and the mouse are USB attached devices, and are not working.

I was able to login and use the computer by using the advanced mode in Grub and 
then reverting to kernel 3.13.0-45 generic.
I could also login if I used the advanced mode and then loged in to the 
recovery mode of kernel 3.13.0-51 and just selected the resume entry in the 
offered menu.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-51-generic 3.13.0-51.84
ProcVersionSignature: Ubuntu 3.13.0-51.84-generic 3.13.11-ckt18
Uname: Linux 3.13.0-51-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.10
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  trusty64   2880 F pulseaudio
 /dev/snd/controlC1:  trusty64   2880 F pulseaudio
 /dev/snd/pcmC1D0p:   trusty64   2880 F...m pulseaudio
CurrentDesktop: Unity
Date: Fri May  1 21:51:01 2015
HibernationDevice: RESUME=UUID=cc70b21b-da9b-4702-8414-654276ec2c88
InstallationDate: Installed on 2014-07-04 (302 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
MachineType: Dell Inc. Inspiron 3847
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-51-generic 
root=UUID=7324c2c5-3bc8-4160-a275-1e49e0eaa19b ro recovery nomodeset
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-51-generic N/A
 linux-backports-modules-3.13.0-51-generic  N/A
 linux-firmware 1.127.11
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/03/2014
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A04
dmi.board.name: 088DT1
dmi.board.vendor: Dell Inc.
dmi.board.version: A01
dmi.chassis.type: 3
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA04:bd04/03/2014:svnDellInc.:pnInspiron3847:pvr:rvnDellInc.:rn088DT1:rvrA01:cvnDellInc.:ct3:cvr:
dmi.product.name: Inspiron 3847
dmi.sys.vendor: Dell Inc.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1450989

Title:
  USB attached keyboard and mouse don't work at the login time to Ubuntu
  Trusty Tahr 64 bit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1266572] Re: gtk-window-decorator crashes randomly

2015-03-23 Thread JD R
gtk-window-decorator can be reliably crashed by opening 'Cities: Skylines' from 
Steam. It gives the following output when run from a terminal and crashed:
(gtk-window-decorator:13457): Gdk-ERROR **: The program 'gtk-window-decorator' 
received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadMatch (invalid parameter attributes)'.
  (Details: serial 8158 error_code 8 request_code 62 (core protocol) minor_code 
0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the GDK_SYNCHRONIZE environment
   variable to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
Trace/breakpoint trap (core dumped)

The system runs fine without the decorator running, and I am using
Compiz as my window manager in Xubuntu 14.10.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1266572

Title:
  gtk-window-decorator crashes randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1266572/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1386721] Re: Graphics Slow After Upgrade 14.04 - 14.10

2015-02-18 Thread JD R
Also affects Xubuntu 14.10 on an X201 tablet. Chromium runs very slowly
unless the --disable-gpu is used.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1386721

Title:
  Graphics Slow After Upgrade 14.04 - 14.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-gnome/+bug/1386721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1421445] [NEW] AUDIO WONT PLAY

2015-02-12 Thread JD
Public bug reported:

BUILT IN SPEAKERS WONT WORK

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: xorg 1:7.7+7ubuntu2
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Feb 12 16:42:13 2015
DistUpgraded: Fresh install
DistroCodename: utopic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
0b) (prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:05f9]
InstallationDate: Installed on 2015-02-12 (0 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
MachineType: Dell Inc. Inspiron 7537
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-31-generic.efi.signed 
root=UUID=60b32089-7820-477d-ab8c-f0a0eec53d4d ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/30/2014
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A12
dmi.board.asset.tag: GFOInigger
dmi.board.name: 0TVJ73
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.asset.tag: GFOInigger
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnDellInc.:bvrA12:bd10/30/2014:svnDellInc.:pnInspiron7537:pvr:rvnDellInc.:rn0TVJ73:rvrA00:cvnDellInc.:ct8:cvr0.1:
dmi.product.name: Inspiron 7537
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.56-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.2-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.2-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1.2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4.2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu2
xserver.bootTime: Thu Feb 12 14:14:05 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   19528 
 vendor SDC
xserver.version: 2:1.16.0-1ubuntu1.2

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 ubuntu utopic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1421445

Title:
  AUDIO WONT PLAY

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1421445/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1419607] [NEW] [E4610, SigmaTel STAC9227, Green Headphone Out, Front] No sound at all

2015-02-08 Thread jd ballo
Public bug reported:

i have no clue what's going on...noi sound at all...for every question asked 
there's been answers that seemed to lready have been chosen so i just went with 
them...computers are smarter than i...  like this question..in what package did 
you find this bug...i dont know is one choice..alsa-driver is the other choice 
and the dot is filled in omn this one...   now a box in middle of screen says 
select a package...alsa-driver is already filled in the space so i guess i'll 
just hit return and go from there...also - that stuff about fgreen headphone 
outno clue what that means i only know that things are downloading but nto 
playing..this old lady is VERY FRUSTRATED...they should include a magic 
wand with every computer sold to clueless people like me...hope you can fix it 
remotely casuse i'm POSITIVE i'd not understand any instructions to do so on my 
end...so i'll just say a prayer putting all in the hands of my lord and the 
mystery entity who may or may not be reading this in some r
 emote location.  !!!AMEN...
HOPE YOU CN THLE  
THX
J

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: alsa-base 1.0.25+dfsg-0ubuntu1.1
ProcVersionSignature: Ubuntu 3.5.0-36.57~precise1-generic 3.5.7.14
Uname: Linux 3.5.0-36-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.25.
ApportVersion: 2.0.1-0ubuntu17.3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  owner  1508 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0x5032 irq 48'
   Mixer name   : 'SigmaTel STAC9227'
   Components   : 'HDA:83847618,107b5058,00100201'
   Controls  : 44
   Simple ctrls  : 24
Date: Sun Feb  8 23:54:27 2015
InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release i386 
(20130213)
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel successful
Symptom_Card: Built-in Audio - HDA Intel
Symptom_Jack: Green Headphone Out, Front
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: No sound at all
Title: [E4610, SigmaTel STAC9227, Green Headphone Out, Front] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/03/2007
dmi.bios.vendor: Intel Corp.
dmi.bios.version: CO96510J.15A.0182.2007.0403.1719
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: DQ965MT
dmi.board.vendor: Intel Corporation
dmi.board.version: AAD36265-505
dmi.chassis.type: 3
dmi.chassis.vendor: Gateway
dmi.modalias: 
dmi:bvnIntelCorp.:bvrCO96510J.15A.0182.2007.0403.1719:bd04/03/2007:svnGateway:pnE4610:pvr:rvnIntelCorporation:rnDQ965MT:rvrAAD36265-505:cvnGateway:ct3:cvr:
dmi.product.name: E4610
dmi.sys.vendor: Gateway

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1419607

Title:
  [E4610, SigmaTel STAC9227, Green Headphone Out, Front] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1419607/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1339687] Re: debootstrap crashes without reason

2014-10-03 Thread JD Lindemann
Researching this issue a bit more, I edited /usr/sbin/debootstrap and added 
KEEP_DEBOOTSTRAP_DIR=true
I notice a lot of failures in the debootstrap/debootstrap.log when vmbuilder 
was setting up the packages.
My problem was that I was attempting to create a vm with a newer Ubuntu suite 
(saucy) than I was currently running.
I was running vmbuilder on 12.04 (precise), and attempting 'saucy'.
I followed this (very nice) writeup:  
http://www.howtoforge.com/virtualization-with-kvm-on-ubuntu-12.04-lts

After changing this command:
/var/lib/libvirt/images/vm1# vmbuilder kvm ubuntu --suite=saucy 
--flavour=virtual --arch=amd64 -
-mirror=http://archive.ubuntu.com/ubuntu/ -o --libvirt=qemu:///system 
--ip=192.168.122.101 --gw=192.168.122.1 --part=vmbuilder.partition 
--templates=mytemplates --user=administrator --name=admin --pass=admin 
--addpkg=vim-nox --addpkg=unattended-upgrades --addpkg =acpid --mem=256 
--hostname=vm1 --bridge=virbr0 --debug --verbose

to --suite=precise (like the writeup said)... it worked like a charm.
Note:  there's a long pause at:  'INFO: Calling hook: bootstrap' -but if 
you tail-f debootstrap.log, it's doing a lot of work.
Eventually vmbuilder returns to showing you progress.

This bug no longer affects me.  Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in Ubuntu.
https://bugs.launchpad.net/bugs/1339687

Title:
  debootstrap crashes without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1339687/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1339687] Re: debootstrap crashes without reason

2014-10-03 Thread JD Lindemann
Researching this issue a bit more, I edited /usr/sbin/debootstrap and added 
KEEP_DEBOOTSTRAP_DIR=true
I notice a lot of failures in the debootstrap/debootstrap.log when vmbuilder 
was setting up the packages.
My problem was that I was attempting to create a vm with a newer Ubuntu suite 
(saucy) than I was currently running.
I was running vmbuilder on 12.04 (precise), and attempting 'saucy'.
I followed this (very nice) writeup:  
http://www.howtoforge.com/virtualization-with-kvm-on-ubuntu-12.04-lts

After changing this command:
/var/lib/libvirt/images/vm1# vmbuilder kvm ubuntu --suite=saucy 
--flavour=virtual --arch=amd64 -
-mirror=http://archive.ubuntu.com/ubuntu/ -o --libvirt=qemu:///system 
--ip=192.168.122.101 --gw=192.168.122.1 --part=vmbuilder.partition 
--templates=mytemplates --user=administrator --name=admin --pass=admin 
--addpkg=vim-nox --addpkg=unattended-upgrades --addpkg =acpid --mem=256 
--hostname=vm1 --bridge=virbr0 --debug --verbose

to --suite=precise (like the writeup said)... it worked like a charm.
Note:  there's a long pause at:  'INFO: Calling hook: bootstrap' -but if 
you tail-f debootstrap.log, it's doing a lot of work.
Eventually vmbuilder returns to showing you progress.

This bug no longer affects me.  Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1339687

Title:
  debootstrap crashes without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1339687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1339687] Re: debootstrap crashes without reason

2014-10-02 Thread JD Lindemann
Exact same symptom for me too.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in Ubuntu.
https://bugs.launchpad.net/bugs/1339687

Title:
  debootstrap crashes without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1339687/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1339687] Re: debootstrap crashes without reason

2014-10-02 Thread JD Lindemann
Exact same symptom for me too.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1339687

Title:
  debootstrap crashes without reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1339687/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1213035] Re: 8086:1502 [Lenovo ThinkPad W530] e1000e module sometimes prevents suspend to ram

2014-06-26 Thread JD Rogers
I can confirm this bug exists in trusty. Would be nice to fix on an LTS
release.

I had not been using ethernet (only wireless) for some time, but
recently started using wired and this bug very consistently prevents
suspend. I think the occurrance is around 100% of the time if I suspend
after ethernet has been used.

sudo rmmod e1000e; sudo modprobe e1000e is an easy enough workaround,
but it continues to be an annoyance.

up-to-date ubuntu 14.04 with Linux zem 3.13.0-29-generic #53-Ubuntu SMP
Wed Jun 4 21:00:20 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux kernel.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1213035

Title:
  8086:1502 [Lenovo ThinkPad W530] e1000e module sometimes prevents
  suspend to ram

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1213035/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281729] Re: 8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates with access point but network is unreachable

2014-03-30 Thread JD Rogers
Quick update... I have been using a mainline kernel and it has seemed to
be working ok for the past few weeks. I saw the Ubuntu kernel was
updated to  3.11.0-18 so I have been trying it again and it seems to be
working some of the time as well. Today, after resuming from suspend,
the wireless was connected according to nm-applet, but I was unable to
ping the local network. Using nm-applet, I turned off wifi and turned it
back on, and after connecting, I was still unable to ping. After about
45 seconds, the network started working again. The kernel log shows
nothing during this time.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281729

Title:
  8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates
  with access point but network is unreachable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1281729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281729] Re: 8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates with access point but network is unreachable

2014-02-24 Thread JD Rogers
Christopher, I will try to provide the testing you asked for, but it may
be challenging.

I'm not sure if I can reproduce this bug using a live USB stick since
the problems most often occur after suspend/resume. This laptop is my
primary box for everything, so re-installing the OS is non-trivial. It
may be several weeks before I will have the spare time to do testing on
the development version.

Testing the kernel OTOH is easy. I installed the mainline a few days ago
and so far it is horrible because after resume with the mainline kernel,
xorg is a mess:  mouse works, but the greeter shows up after 20second
pause or my session is already visible from before suspending, but xorg
or at least any applications seem unresponsive.

I am sure I have had the symptoms I reported even from a clean boot
because once rebooting did not solve the problem and I had to reboot a
second time, but it is more rare. The issue is much more common after a
suspend/resume cycle. So far the mainline kernel is connecting using
802.11n after suspend resume (at least once), but since I can't reliably
suspend/resume, its hard to say. I would not trust that 802.11n working
only once or twice after resume means the bug is solved because the
failure was never 100% of the time.

I will report back as soon as I can with anything useful. 
Thanks,
JDR

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281729

Title:
  8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates
  with access point but network is unreachable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1281729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281729] Re: 8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates with access point but network is unreachable

2014-02-20 Thread JD Rogers
Behaviour has not changed after BIOS update. Right after I wrote comment
#4, I lost the network, but cycling wifi via nm-applet brought it back.
Things seemed to otherwise work yesterday, but this morning after resume
from suspend it was back to the same: associated with my AP, but pages
in browser do not load. I then ping the AP and get unreachable.

$ sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date
G7ET98WW (2.58 )
12/16/2013

# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.10 icmp_seq=1 Destination Host Unreachable
^C
--- 192.168.1.1 ping statistics ---
2 packets transmitted, 0 received, +1 errors, 100% packet loss, time 1001ms

# iwconfig
eth0  no wireless extensions.

lono wireless extensions.

virbr0no wireless extensions.

wlan0 IEEE 802.11abgn  ESSID: hidden  
  Mode:Managed  Frequency:2.437 GHz  Access Point: hidden
  Bit Rate=78 Mb/s   Tx-Power=15 dBm   
  Retry  long limit:7   RTS thr:off   Fragment thr:off
  Encryption key:off
  Power Management:on
  Link Quality=70/70  Signal level=-34 dBm  
  Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
  Tx excessive retries:26  Invalid misc:52   Missed beacon:0

# dmesg |tail
[41713.948053] iwlwifi :03:00.0: L1 Enabled; Disabling L0S
[41713.954762] iwlwifi :03:00.0: Radio type=0x0-0x3-0x1
[41714.098900] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[41720.587581] wlan0: authenticate with hidden
[41720.599843] wlan0: send auth to hidden (try 1/3)
[41720.604907] wlan0: authenticated
[41720.608100] wlan0: associate with hidden (try 1/3)
[41720.611883] wlan0: RX AssocResp from hidden (capab=0x1411 status=0 aid=5)
[41720.622822] wlan0: associated
[41720.622892] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281729

Title:
  8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates
  with access point but network is unreachable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1281729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281729] [NEW] iwlwifi using 802.11n associates with access point but network is unreachable

2014-02-18 Thread JD Rogers
Public bug reported:

Similar to and possibly related to
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1034740 but my
problem is a little different. While the above bug appears to connect
and then slow down eventually failing with packet loss, my problem is
almost the opposite. If I can connect, it seems to work fine
indefinitely, but initial connections (after suspend, or right after a
reboot) only occasionally works. Sometimes, if I wait long enough the
connection starts working after several minutes, sometimes it works if I
turn off wireless and turn it back on, but often it just never works.

According to dmesg, iwlwifi is associating with the access point just
fine, but if I ping the ap, I get netowrk unreachable.

My device Intel Corporation Centrino Ultimate-N 6300 (rev 3e) works
fine on 802.11g networks or on an 802.11n capable AP if use module
option 11n_disable=1.

After associating, dmesg report:

# dmesg |tail
[101704.467324] iwlwifi :03:00.0: L1 Enabled; Disabling L0S
[101704.474053] iwlwifi :03:00.0: Radio type=0x0-0x3-0x1
[101704.621429] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[101704.717787] wlan0: authenticate with xx:xx:xx:xx:xx:xx
[101704.780532] wlan0: send auth to xx:xx:xx:xx:xx:xx (try 1/3)
[101704.793246] wlan0: authenticated
[101704.797390] wlan0: associate with xx:xx:xx:xx:xx:xx (try 1/3)
[101704.798226] wlan0: RX AssocResp from xx:xx:xx:xx:xx:xx (capab=0x1011 
status=0 aid=1)
[101704.802300] wlan0: associated
[101704.802347] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

But network is unreachable.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: linux-image-3.11.0-15-generic 3.11.0-15.25
ProcVersionSignature: Ubuntu 3.11.0-15.25-generic 3.11.10
Uname: Linux 3.11.0-15-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  jdrogers   2276 F pulseaudio
Date: Tue Feb 18 12:12:57 2014
HibernationDevice: RESUME=UUID=12dd9e3a-ab8c-468f-a7bc-f3c05e4bcddc
InstallationDate: Installed on 2014-01-01 (47 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MachineType: LENOVO 2352CTO
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-15-generic 
root=UUID=b9c20532-4cfc-4833-830a-3d4500621c0e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.11.0-15-generic N/A
 linux-backports-modules-3.11.0-15-generic  N/A
 linux-firmware 1.116.2
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/24/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: G7ET29WW (1.11 )
dmi.board.asset.tag: Not Available
dmi.board.name: 2352CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrG7ET29WW(1.11):bd05/24/2012:svnLENOVO:pn2352CTO:pvrThinkPadT430s:rvnLENOVO:rn2352CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2352CTO
dmi.product.version: ThinkPad T430s
dmi.sys.vendor: LENOVO

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug saucy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281729

Title:
  iwlwifi using 802.11n associates with access point but network is
  unreachable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1281729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281729] Re: 8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates with access point but network is unreachable

2014-02-18 Thread JD Rogers
Hi Christopher,
Thanks for the tips. If bios update turns out to solve this, I will be VERY 
annoyed since I looked at the change logs for the BIOS just 2 weeks ago, but 
all that was updated on WIFI was Added support for a new WiFi device for a 
specific country.

In any case, I just updated and 802.11n is working at the moment, though this 
would occasionally work before as well, so  I will report back tomorrow after I 
see if it can reconnect a few times. 
Thanks again, JDR

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281729

Title:
  8086:4238 [Lenovo ThinkPad T430s] iwlwifi using 802.11n associates
  with access point but network is unreachable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1281729/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1034740] Re: 8086:4238 [Lenovo ThinkPad X201] iwlwifi drops connection when using 802.11n

2014-02-16 Thread JD Rogers
I know this bug is old, but I think I'm having similar problems, and I
would love to make some progress on this.

My problem is a little different, so I may need to file a new bug
(Christopher?). While Alexander's bug appears to connect and then slow
down eventually failing with packet loss, my problem is almost the
opposite. If I can connect, it seems to work fine indefinitely, but
initial connections (after suspend, or right after a reboot) only
occasionally works. Sometimes, if I wait long enough the connection
starts working after several minutes, sometimes it works if I turn off
wireless and turn it back on, but often it just never works.

My intel wireless Intel Corporation Centrino Ultimate-N 6300 (rev 3e)
works fine on 802.11g networks. When using 802.11n, not so much.

The worst part is that I am at a loss on what is actually failing.
iwconfig reports that I am associated. No obvious errors in dmesg or
syslog. Yet if I try to ping my access point, I get network is
unreachable.

# dmesg |tail
[101704.467324] iwlwifi :03:00.0: L1 Enabled; Disabling L0S
[101704.474053] iwlwifi :03:00.0: Radio type=0x0-0x3-0x1
[101704.621429] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[101704.717787] wlan0: authenticate with xx:xx:xx:xx:xx:xx
[101704.780532] wlan0: send auth to xx:xx:xx:xx:xx:xx (try 1/3)
[101704.793246] wlan0: authenticated
[101704.797390] wlan0: associate with xx:xx:xx:xx:xx:xx (try 1/3)
[101704.798226] wlan0: RX AssocResp from xx:xx:xx:xx:xx:xx (capab=0x1011 
status=0 aid=1)
[101704.802300] wlan0: associated
[101704.802347] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

If I load the iwlwifi module using 11n_disable=1 everything works
fine, but then I don't get 802.11n speed. The problem exists on my home
router and on a commercial router at work.

# uname -a
Linux zem 3.11.0-15-generic #25-Ubuntu SMP Thu Jan 30 17:22:01 UTC 2014 x86_64 
x86_64 x86_64 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1034740

Title:
  8086:4238 [Lenovo ThinkPad X201] iwlwifi drops connection when using
  802.11n

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1034740/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1233847] Re: evolution-source-registry crashed with SIGSEGV in g_dbus_object_get_interface()

2013-10-02 Thread JD Thayn
*** This bug is a duplicate of bug 1233531 ***
https://bugs.launchpad.net/bugs/1233531

** Description changed:

- This error occurs every time I boot my machine and logon. I am currently
- running the latest beta version of Ubuntu 13.10 Saucy Salamander, and
- did not encounter this error in any earlier versions of Ubuntu.
+ *This Bug has stopped affecting me after installing recent software updates*
+ This error occurs every time I boot my machine and logon. I am currently 
running the latest beta version of Ubuntu 13.10 Saucy Salamander, and did not 
encounter this error in any earlier versions of Ubuntu.
  
  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: evolution-data-server 3.8.5-1ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
  Uname: Linux 3.11.0-9-generic x86_64
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: amd64
  Date: Tue Oct  1 15:49:23 2013
  ExecutablePath: /usr/lib/evolution/evolution-source-registry
  InstallationDate: Installed on 2013-09-27 (4 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  MarkForUpload: True
  ProcCmdline: /usr/lib/evolution/evolution-source-registry
  ProcEnviron:
-  SHELL=/bin/bash
-  XDG_RUNTIME_DIR=set
-  PATH=(custom, no user)
-  LANGUAGE=en_US
-  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+  XDG_RUNTIME_DIR=set
+  PATH=(custom, no user)
+  LANGUAGE=en_US
+  LANG=en_US.UTF-8
  SegvAnalysis:
-  Segfault happened at: 0x7f2e7711eb1f g_dbus_object_get_interface+15:   
mov(%rbx),%rdi
-  PC (0x7f2e7711eb1f) ok
-  source (%rbx) (0x) not located in a known VMA region (needed 
readable region)!
-  destination %rdi ok
+  Segfault happened at: 0x7f2e7711eb1f g_dbus_object_get_interface+15:   
mov(%rbx),%rdi
+  PC (0x7f2e7711eb1f) ok
+  source (%rbx) (0x) not located in a known VMA region (needed 
readable region)!
+  destination %rdi ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: evolution-data-server
  StacktraceTop:
-  g_dbus_object_get_interface () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
-  e_dbus_object_get_source () from /usr/lib/libebackend-1.2.so.6
-  e_server_side_source_load () from /usr/lib/libebackend-1.2.so.6
-  ?? () from /usr/lib/libebackend-1.2.so.6
-  g_initable_new_valist () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
+  g_dbus_object_get_interface () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
+  e_dbus_object_get_source () from /usr/lib/libebackend-1.2.so.6
+  e_server_side_source_load () from /usr/lib/libebackend-1.2.so.6
+  ?? () from /usr/lib/libebackend-1.2.so.6
+  g_initable_new_valist () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: evolution-source-registry crashed with SIGSEGV in 
g_dbus_object_get_interface()
  UpgradeStatus: Upgraded to saucy on 2013-09-29 (2 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1233847

Title:
  evolution-source-registry crashed with SIGSEGV in
  g_dbus_object_get_interface()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1233847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1233847] Re: evolution-source-registry crashed with SIGSEGV in g_dbus_object_get_interface()

2013-10-02 Thread JD Thayn
*** This bug is a duplicate of bug 1233531 ***
https://bugs.launchpad.net/bugs/1233531

** Information type changed from Public Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1233847

Title:
  evolution-source-registry crashed with SIGSEGV in
  g_dbus_object_get_interface()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1233847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1233531] Re: evolution-source-registry crashed with SIGSEGV in g_dbus_object_get_interface()

2013-10-02 Thread JD Thayn
This issue occurred with me too, but after running the software updater
and installing updates, it has stopped.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1233531

Title:
  evolution-source-registry crashed with SIGSEGV in
  g_dbus_object_get_interface()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1233531/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1233847] [NEW] evolution-source-registry crashed with SIGSEGV in g_dbus_object_get_interface()

2013-10-01 Thread JD Thayn
*** This bug is a security vulnerability ***

Public security bug reported:

This error occurs every time I boot my machine and logon. I am currently
running the latest beta version of Ubuntu 13.10 Saucy Salamander, and
did not encounter this error in any earlier versions of Ubuntu.

ProblemType: Crash
DistroRelease: Ubuntu 13.10
Package: evolution-data-server 3.8.5-1ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
Uname: Linux 3.11.0-9-generic x86_64
ApportVersion: 2.12.5-0ubuntu1
Architecture: amd64
Date: Tue Oct  1 15:49:23 2013
ExecutablePath: /usr/lib/evolution/evolution-source-registry
InstallationDate: Installed on 2013-09-27 (4 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
ProcCmdline: /usr/lib/evolution/evolution-source-registry
ProcEnviron:
 SHELL=/bin/bash
 XDG_RUNTIME_DIR=set
 PATH=(custom, no user)
 LANGUAGE=en_US
 LANG=en_US.UTF-8
SegvAnalysis:
 Segfault happened at: 0x7f2e7711eb1f g_dbus_object_get_interface+15: mov
(%rbx),%rdi
 PC (0x7f2e7711eb1f) ok
 source (%rbx) (0x) not located in a known VMA region (needed 
readable region)!
 destination %rdi ok
SegvReason: reading NULL VMA
Signal: 11
SourcePackage: evolution-data-server
StacktraceTop:
 g_dbus_object_get_interface () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
 e_dbus_object_get_source () from /usr/lib/libebackend-1.2.so.6
 e_server_side_source_load () from /usr/lib/libebackend-1.2.so.6
 ?? () from /usr/lib/libebackend-1.2.so.6
 g_initable_new_valist () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
Title: evolution-source-registry crashed with SIGSEGV in 
g_dbus_object_get_interface()
UpgradeStatus: Upgraded to saucy on 2013-09-29 (2 days ago)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

** Affects: evolution-data-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-crash need-amd64-retrace package-from-proposed saucy

** Information type changed from Private to Private Security

** Information type changed from Private Security to Public Security

** Summary changed:

- evolution-source-registry crashed with SIGSEGV in 
g_dbus_object_get_interface() crash happens upon boot every time I logon
+ evolution-source-registry crashed with SIGSEGV in 
g_dbus_object_get_interface()

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1233847

Title:
  evolution-source-registry crashed with SIGSEGV in
  g_dbus_object_get_interface()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1233847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189309] Re: nm-applet crashed with SIGSEGV in gtk_status_icon_set_visible()

2013-08-10 Thread jd
i installed kde plasma and while signing in(ive been using gnome with
saucy) it crashed and sending it back to unity desktop with a series of
5-6 other crashes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189309

Title:
  nm-applet crashed with SIGSEGV in gtk_status_icon_set_visible()

To manage notifications about this bug go to:
https://bugs.launchpad.net/libappindicator/+bug/1189309/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1207967] [NEW] [TOSHIBA Satellite C855D] suspend/resume failure

2013-08-03 Thread jd
Public bug reported:

crash after boot up

ProblemType: KernelOops
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-6-generic 3.10.0-6.17
ProcVersionSignature: Ubuntu 3.10.0-6.17-generic 3.10.3
Uname: Linux 3.10.0-6-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.12-0ubuntu2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  jd 2374 F pulseaudio
 /dev/snd/controlC0:  jd 2374 F pulseaudio
Date: Sat Aug  3 04:22:55 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=e6c6fe9c-a833-4296-a82f-8086707aadb9
InstallationDate: Installed on 2013-07-20 (14 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130624)
InterpreterPath: /usr/bin/python3.3
MachineType: TOSHIBA Satellite C855D
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB:
 0 radeondrmfb
 1 VESA VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-6-generic 
root=UUID=2b708c8e-ea46-47a3-9091-d0af01eefcf3 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: Daemon not 
responding.
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-6-generic N/A
 linux-backports-modules-3.10.0-6-generic  N/A
 linux-firmware1.112
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
StagingDrivers: rts5139
Title: [TOSHIBA Satellite C855D] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 08/21/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.00
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: MP
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.00:bd08/21/2012:svnTOSHIBA:pnSatelliteC855D:pvrPSCBQU-00E007:rvnTOSHIBA:rnPortablePC:rvrMP:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.name: Satellite C855D
dmi.product.version: PSCBQU-00E007
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-kerneloops resume saucy staging suspend

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1207967

Title:
  [TOSHIBA Satellite C855D] suspend/resume failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1207967/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206277] [NEW] [TOSHIBA Satellite C855D] suspend/resume failure

2013-07-29 Thread jd
Public bug reported:

crash during fallout 3

ProblemType: KernelOops
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-5-generic 3.10.0-5.15
ProcVersionSignature: Ubuntu 3.10.0-5.15-generic 3.10.2
Uname: Linux 3.10.0-5-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  jd 2415 F pulseaudio
 /dev/snd/controlC0:  jd 2415 F pulseaudio
Date: Mon Jul 29 17:22:25 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=e6c6fe9c-a833-4296-a82f-8086707aadb9
InstallationDate: Installed on 2013-07-20 (9 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130624)
InterpreterPath: /usr/bin/python3.3
MachineType: TOSHIBA Satellite C855D
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB:
 0 radeondrmfb
 1 VESA VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-5-generic 
root=UUID=2b708c8e-ea46-47a3-9091-d0af01eefcf3 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: Daemon not 
responding.
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-5-generic N/A
 linux-backports-modules-3.10.0-5-generic  N/A
 linux-firmware1.112
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
StagingDrivers: rts5139
Title: [TOSHIBA Satellite C855D] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 08/21/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.00
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: MP
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.00:bd08/21/2012:svnTOSHIBA:pnSatelliteC855D:pvrPSCBQU-00E007:rvnTOSHIBA:rnPortablePC:rvrMP:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.name: Satellite C855D
dmi.product.version: PSCBQU-00E007
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-kerneloops resume saucy staging suspend

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206277

Title:
  [TOSHIBA Satellite C855D] suspend/resume failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1206277/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206323] [NEW] [TOSHIBA Satellite C855D] suspend/resume failure

2013-07-29 Thread jd
Public bug reported:

booted up computer and ran software updater and crash occured

ProblemType: KernelOops
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-5-generic 3.10.0-5.15
ProcVersionSignature: Ubuntu 3.10.0-5.15-generic 3.10.2
Uname: Linux 3.10.0-5-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  jd 2381 F pulseaudio
 /dev/snd/controlC0:  jd 2381 F pulseaudio
Date: Mon Jul 29 21:31:57 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=e6c6fe9c-a833-4296-a82f-8086707aadb9
InstallationDate: Installed on 2013-07-20 (9 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130624)
InterpreterPath: /usr/bin/python3.3
MachineType: TOSHIBA Satellite C855D
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB:
 0 radeondrmfb
 1 VESA VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-5-generic 
root=UUID=2b708c8e-ea46-47a3-9091-d0af01eefcf3 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: Daemon not 
responding.
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-5-generic N/A
 linux-backports-modules-3.10.0-5-generic  N/A
 linux-firmware1.112
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
StagingDrivers: rts5139
Title: [TOSHIBA Satellite C855D] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 08/21/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.00
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: MP
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.00:bd08/21/2012:svnTOSHIBA:pnSatelliteC855D:pvrPSCBQU-00E007:rvnTOSHIBA:rnPortablePC:rvrMP:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.name: Satellite C855D
dmi.product.version: PSCBQU-00E007
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-kerneloops resume saucy staging suspend

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206323

Title:
  [TOSHIBA Satellite C855D] suspend/resume failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1206323/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1205991] [NEW] [TOSHIBA Satellite C855D] suspend/resume failure

2013-07-28 Thread jd
Public bug reported:

started software updater and crash occured

ProblemType: KernelOops
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-5-generic 3.10.0-5.15
ProcVersionSignature: Ubuntu 3.10.0-5.15-generic 3.10.2
Uname: Linux 3.10.0-5-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  jd 2336 F pulseaudio
 /dev/snd/controlC0:  jd 2336 F pulseaudio
Date: Mon Jul 29 00:06:57 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=e6c6fe9c-a833-4296-a82f-8086707aadb9
InstallationDate: Installed on 2013-07-20 (9 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130624)
InterpreterPath: /usr/bin/python3.3
MachineType: TOSHIBA Satellite C855D
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB:
 0 radeondrmfb
 1 VESA VGA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-5-generic 
root=UUID=2b708c8e-ea46-47a3-9091-d0af01eefcf3 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: Daemon not 
responding.
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-5-generic N/A
 linux-backports-modules-3.10.0-5-generic  N/A
 linux-firmware1.112
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
StagingDrivers: rts5139
Title: [TOSHIBA Satellite C855D] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 08/21/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.00
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: MP
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.00:bd08/21/2012:svnTOSHIBA:pnSatelliteC855D:pvrPSCBQU-00E007:rvnTOSHIBA:rnPortablePC:rvrMP:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.name: Satellite C855D
dmi.product.version: PSCBQU-00E007
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-kerneloops resume saucy staging suspend

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1205991

Title:
  [TOSHIBA Satellite C855D] suspend/resume failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1205991/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1190827] Re: After upgrade, System Crash; lost entire HDD, BIOS reports no HDD

2013-06-13 Thread Prof Stephen Palmer, MD, PhD, JD, KM
Trying to find funds for a new computer, if you can help find some go to
www.uqd-edu.eu there is a donation button there.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1190827

Title:
  After upgrade, System Crash; lost entire HDD, BIOS reports no HDD

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1190827/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1190827] [NEW] After upgrade, System Crash; lost entire HDD, BIOS reports no HDD

2013-06-13 Thread Prof Stephen Palmer, MD, PhD, JD, KM
Public bug reported:

After upgrade from 12.10 to 13.04 lost Hard Drive completely, no HDD
according to BIOS; cannot reload program or recover 11 months of work.
Running off trial of installation CD [No Skype, No YouTube, No Google
Earth, No usable programs that I normally work with] Email is limited as
I have no ability to upload or download critical data. So I am
involuntarily retired with no income;  That is for trying your unproven
software.

Computer Data:
HP 655 Notebook PC
Product # B6N19EA#ABB
System Board: ID 1885
Processor  AMD E1-1200 APU with Tadeon HD Graphics
Speed  1400 MHz
Memory 2 GB RAM  320 GB Hitache HDD
BIOS version F.04 Vendor Insyde
Serial # 5CB2310VC9
UUID: B2D33423-ADE2-ED72-F127-B4B52F2E8679
Configuration ID  07981000521000260
System Board CT# PCTVPA57V2W24G
iNSTALLED OS: non-Vista SUSE Linux Enterprise Desktop 11
Primary Battery SN 07661 06/25/2012
WLAN FCC ID: PPD-AR5B125

Repeated reports do not seem to fix errors.

I do not have your development kit, or I might find and fix the errors myself, 
and save time with the VM software installation
that I can get for Ubuntu Kernal - any chance that this is possible?

** Affects: 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/1190827

Title:
  After upgrade, System Crash; lost entire HDD, BIOS reports no HDD

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1190827/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1177852] [NEW] package fonts-unfonts-core (not installed) failed to install/upgrade: cannot copy extracted data for './usr/share/fonts/truetype/unfonts-core/UnBatangBold.ttf' to '/usr/share/fonts

2013-05-08 Thread Prof Stephen Palmer, MD, PhD, JD, KM
Public bug reported:

Where do I find the details?

ProblemType: Package
DistroRelease: Ubuntu 12.10
Package: fonts-unfonts-core (not installed)
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
ApportVersion: 2.6.1-0ubuntu3
Architecture: amd64
Date: Wed May  8 07:59:33 2013
ErrorMessage: cannot copy extracted data for 
'./usr/share/fonts/truetype/unfonts-core/UnBatangBold.ttf' to 
'/usr/share/fonts/truetype/unfonts-core/UnBatangBold.ttf.dpkg-new': unexpected 
end of file or stream
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
SourcePackage: fonts-unfonts-core
Title: package fonts-unfonts-core (not installed) failed to install/upgrade: 
cannot copy extracted data for 
'./usr/share/fonts/truetype/unfonts-core/UnBatangBold.ttf' to 
'/usr/share/fonts/truetype/unfonts-core/UnBatangBold.ttf.dpkg-new': unexpected 
end of file or stream
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: fonts-unfonts-core (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package quantal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1177852

Title:
  package fonts-unfonts-core (not installed) failed to install/upgrade:
  cannot copy extracted data for './usr/share/fonts/truetype/unfonts-
  core/UnBatangBold.ttf' to '/usr/share/fonts/truetype/unfonts-
  core/UnBatangBold.ttf.dpkg-new': unexpected end of file or stream

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fonts-unfonts-core/+bug/1177852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1063617] Re: 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to wrong values

2013-01-10 Thread JD Rogers
I can confirm Krister's experience, the Flat-file configuration and unity don't 
play well together and I lost my launcher and all functionality. I moved all my 
config files from a terminal and started with a completely fresh clean default 
including:
.compiz/
.compiz-1/
.config/
.gconf/
.gnome2/
.local/

and after login, I set a couple of keybindings in unity settings, then
launched ccsm which changed those bindings on its first run, then I
selected flat-file config in the prefs and my launcher dissapeared and I
can't yet get it back. Apparently, unity --reset is deprecated, so I
may have to wipe my new default config files again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1063617

Title:
  1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
  wrong values

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1063617/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1063617] Re: 1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to wrong values

2013-01-10 Thread JD Rogers
Well, this is nifty.. I wasn't too concerned about trying Andre's
workaround even with Krister's comment since I first backed up my
setting in ccsm. After moving the above dot files back into play, I
loaded ccsm and imported my exported settings and now none of unity's
settings are having any effect. Like Krister, launcher icon size is no
longer controlled by the system setting through unity.

@Krister, I got the icon size back using ccsm under
unityplugin-experimental-icon size, but I have no idea why these
things can no longer be set using the system settings.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1063617

Title:
  1:0.9.8+bzr3319-0ubuntu1 regression: keeps setting gsettings keys to
  wrong values

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1063617/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 939251] Re: Music sounds 'clipped', distorted.

2012-08-05 Thread Jd Franklin Atchley 111
** Changed in: pianobar (Ubuntu)
 Assignee: (unassigned) = Jd Franklin Atchley 111 (frankiebeeatchley)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/939251

Title:
  Music sounds 'clipped', distorted.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pianobar/+bug/939251/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1008876] Re: plugin package broken

2012-08-05 Thread JD Marble
This is a problem for me. I share my .hgrc across different systems.
This is impossible if I have to use hgext.git= for Ubuntu and hggit= for
every other platform. Is my problem a different bug or should this one
be reopened? Is it something I should raise with the upstream
maintainer?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1008876

Title:
  plugin package broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hg-git/+bug/1008876/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 509180] Re: ecryptfs sometimes seems to add trailing garbage to encrypted files

2012-04-20 Thread JD Rogers
Colin, I'm confused. 
Oneiric currently uses 3.0.0-17 and the messages are certainly not fixed for me.
This bug is listed as fix released for oneiric as well as older 9.10 in the 
original bug report. Should a new bug be opened for oneiric and 3.0 kernels 
even though 11.10 is listed as affected by this bug?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/509180

Title:
  ecryptfs sometimes seems to add trailing garbage to encrypted files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ecryptfs/+bug/509180/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 509180] Re: ecryptfs sometimes seems to add trailing garbage to encrypted files

2012-04-20 Thread JD Rogers
@Colin, ok, I'll gather more info and see if I need to file a new bug.
Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/509180

Title:
  ecryptfs sometimes seems to add trailing garbage to encrypted files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ecryptfs/+bug/509180/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965645] Re: Error starting ConVirt

2012-04-02 Thread Jd
You need to run the setup_convirt again.  (It might have failed the first time 
because of above mentioned error).
Or 
you are getting this, when you try on a fresh install as well.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965645

Title:
  Error starting ConVirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/convirt/+bug/965645/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965645] Re: Error starting ConVirt

2012-03-29 Thread Jd
Seems related to :
https://bugs.launchpad.net/ibid/+bug/718381

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965645

Title:
  Error starting ConVirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/convirt/+bug/965645/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 879790] Re: Sound doesn't play properly after upgrade from 11.04-11.10

2011-12-16 Thread JD Rogers
I thought this was biting me too, and I have a t60. I vaguely remember
having some sound glitches that come through when scrolling or moving
windows some time back (maybe 2 years?).

I was just testing grumpily playing around with sound settings and
noticed the sound test sounded ok. And the sound is also fine from
banshee, but everything was terrible from the browser (and I was getting
some pretty high cpu usage out of plugin-container). I upgraded the
flashplugin and sound seems to be working as good as in 10.04 for me
now.

I wouldn't be surprised if this turns out to be short lived as some
other have reported (rebooting, uninstalling something like timidity,
etc temporarily fixes things), but the good news is I seem to have
working sound for the moment. So if anyone want me to try anything for
comparison, let me know.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/879790

Title:
  Sound doesn't play properly after upgrade from 11.04-11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/879790/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 883270] [NEW] lein references incorrect clojure jar

2011-10-28 Thread JD Marble
Public bug reported:

Fresh install of Oneiric (not updated). Installed leiningen through
aptitude. When I execute lein or lein help in the terminal, I get
the following instead of a helpful message:

Exception in thread main java.lang.ExceptionInInitializerError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at clojure.lang.RT.loadClassForName(RT.java:1578)
at clojure.lang.RT.load(RT.java:399)
at clojure.lang.RT.load(RT.java:381)
at clojure.core$load$fn__4519.invoke(core.clj:4915)
at clojure.core$load.doInvoke(core.clj:4914)
at clojure.lang.RestFn.invoke(RestFn.java:408)
at clojure.core__init.load(Unknown Source)
at clojure.core__init.clinit(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at clojure.lang.RT.loadClassForName(RT.java:1578)
at clojure.lang.RT.load(RT.java:399)
at clojure.lang.RT.load(RT.java:381)
at clojure.lang.RT.doInit(RT.java:416)
at clojure.lang.RT.clinit(RT.java:302)
at clojure.main.clinit(main.java:20)
Caused by: java.lang.ClassNotFoundException: org/objectweb/asm/commons/Method
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:186)
at clojure.core_proxy__init.load(Unknown Source)
at clojure.core_proxy__init.clinit(Unknown Source)
... 18 more
Could not find the main class: clojure.main. Program will exit.

I was able to fix it by changing the CLOJURE_JAR variable in
/usr/bin/lein as described here: http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=642795#20


Description:Ubuntu 11.10
Release:11.1

leiningen:
  Installed: 1.6.1-1
  Candidate: 1.6.1-1
  Version table:
 *** 1.6.1-1 0
500 http://us.archive.ubuntu.com/ubuntu/ oneiric/universe i386 Packages
100 /var/lib/dpkg/status

** Affects: leiningen (Ubuntu)
 Importance: Undecided
 Status: New

** Summary changed:

- throws exception when executed
+ lein references incorrect clojure jar

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883270

Title:
  lein references incorrect clojure jar

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/leiningen/+bug/883270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 882281] Re: gedit is set to provide a backup file afer a save. However, gedit has not done so since its ubuntu lucid release. It just replaces the original copy of whatever file it being saved. T

2011-10-26 Thread Dr JD Wallach
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882281

Title:
  gedit is set to provide a backup file afer a save.  However, gedit has
  not done so since its ubuntu lucid release.  It just replaces the
  original copy of whatever file it being saved.  The preferences have
  been set to provide a backup.  This is not a permissions problem.  I
  can create new text files and it obviously writes them to the
  partition where I want to save the created new files.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit/+bug/882281/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 882281] [NEW] gedit is set to provide a backup file afer a save. However, gedit has not done so since its ubuntu lucid release. It just replaces the original copy of whatever file it being saved.

2011-10-26 Thread Dr JD Wallach
Public bug reported:

Gedit  does not create a backup file of a saved file even if the preferences of 
gedit are set to do so.  On a save it just over writes the original file 
without creating a backup copy of the original file (*.~ file).
This problem has been present since Ubuntu 11.04.  It is still present now in 
Ubuntu 11.10.
The problem does not exist in Ubuntu 10.04.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gedit 3.2.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Wed Oct 26 10:57:05 2011
ExecutablePath: /usr/bin/gedit
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gedit
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gedit (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug apport-lpi i386 oneiric running-unity

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882281

Title:
  gedit is set to provide a backup file afer a save.  However, gedit has
  not done so since its ubuntu lucid release.  It just replaces the
  original copy of whatever file it being saved.  The preferences have
  been set to provide a backup.  This is not a permissions problem.  I
  can create new text files and it obviously writes them to the
  partition where I want to save the created new files.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit/+bug/882281/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 727143] Re: unity-window-decorator crashes with SIGSEGV when closing Java windows

2011-05-31 Thread JD Rogers
Possible temporary workaround:

I've had this problem quite a lot since upgrading while running matlab
as others have commented. Once the error message pops up, answering
yes/no/cancel all results in losing all window decorations.

However, if instead of answering the error message, if you merely
minimize the error dialog, the window decorations continue functioning
apparently indefinitely. I only have an N of one here, so YMMV, but
until the patches come, it appears to work for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/727143

Title:
  unity-window-decorator crashes with SIGSEGV when closing Java windows

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 620289] Re: [0a5c:5801] Broadcom Corp. BCM5880 fingerprint reader not recognized in Ubuntu 10.10, fprint reports no such device on Dell XT2

2011-05-04 Thread JD Evora
Same problem with my Dell Precision M4400, it has the same device  
Bus 005 Device 002: ID 0a5c:5801 Broadcom Corp.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/620289

Title:
  [0a5c:5801] Broadcom Corp. BCM5880 fingerprint reader not recognized
  in Ubuntu 10.10, fprint reports no such device on Dell XT2

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 551477] Re: Hipo on Lucid: Could not find org.freedesktop.Hal

2011-01-27 Thread JD
Installing the following packages fixed Hipo for me.  I am not sure
which one provided the fix.

halevt (0.1.5-3)
libboolstuff-0.1-0 (0.1.12-3)
gnome-device-manager (0.2-3)
libgnome-device-manager0 (0.2-3)

Lucid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/551477

Title:
  Hipo on Lucid: Could not find org.freedesktop.Hal

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 705313] [NEW] [HDA-Intel] No digital audio output with latest kernel patch (2.6.35-25-generic-pae)

2011-01-20 Thread JD
Public bug reported:

After the upgrade to the latest kernel patch (2.6.35-25-generic-pae) no
sound is played by the Digital Audio Output.

The sound works well with the kernel patch 2.6.35-24-generic-pae.

lsb_release -rd
Description:Ubuntu 10.10
Release:10.10

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: alsa-base 1.0.23+dfsg-1ubuntu4
ProcVersionSignature: Ubuntu 2.6.35-25.43-generic-pae 2.6.35.10
Uname: Linux 2.6.35-25-generic-pae i686
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  jd 5211 F pulseaudio
 /dev/snd/controlC0:  jd 5211 F pulseaudio
 /dev/snd/pcmC0D1p:   jd 5211 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfbff8000 irq 51'
   Mixer name   : 'Realtek ALC889'
   Components   : 'HDA:10ec0889,1458a022,0014'
   Controls  : 38
   Simple ctrls  : 21
Card1.Amixer.info:
 Card hw:1 'NVidia'/'HDA NVidia at 0xf9ffc000 irq 17'
   Mixer name   : 'Nvidia GPU 11 HDMI/DP'
   Components   : 'HDA:10de0011,10de0101,00100100'
   Controls  : 16
   Simple ctrls  : 4
Card2.Amixer.info:
 Card hw:2 'SAA7134'/'saa7133[0] at 0xfb8ff000 irq 16'
   Mixer name   : 'SAA7134 Mixer'
   Components   : ''
   Controls  : 6
   Simple ctrls  : 3
Date: Thu Jan 20 09:35:19 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=it_IT.utf8
 SHELL=/bin/bash
SelectedCard: 0 Intel HDA-Intel - HDA Intel
SourcePackage: alsa-driver
Symptom: audio
Title: [HDA-Intel - HDA Intel] ALSA test tone not correctly played back
dmi.bios.date: 11/26/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: Fc7
dmi.board.name: X58A-UD7
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrFc7:bd11/26/2010:svnGigabyteTechnologyCo.,Ltd.:pnX58A-UD7:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnX58A-UD7:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: X58A-UD7
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/705313

Title:
  [HDA-Intel] No digital audio output with latest kernel patch
  (2.6.35-25-generic-pae)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 705313] Re: [HDA-Intel] No digital audio output with latest kernel pach (2.6.35-25-generic-pae)

2011-01-20 Thread JD

** Summary changed:

- [HDA-Intel] No digital audio output with latest kernel pach 
(2.6.35-25-generic-pae)
+ [HDA-Intel] No digital audio output with latest kernel patch 
(2.6.35-25-generic-pae)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/705313

Title:
  [HDA-Intel] No digital audio output with latest kernel patch
  (2.6.35-25-generic-pae)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703551] [NEW] package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to install/upgrade: el subprocés installed post-installation script retornà el codi d'eixida d'error 127

2011-01-16 Thread Lluís JD
Public bug reported:

Binary package hint: grub2

I can't solve this problem

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.32-26-generic 2.6.32-26.48
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Sun Jan 16 14:27:26 2011
ErrorMessage: el subprocés installed post-installation script retornà el codi 
d'eixida d'error 127
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: grub2
Title: package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to 
install/upgrade: el subprocés installed post-installation script retornà el 
codi d'eixida d'error 127

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703551

Title:
  package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to
  install/upgrade: el subprocés installed post-installation script
  retornà el codi d'eixida d'error 127

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 703551] Re: package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to install/upgrade: el subprocés installed post-installation script retornà el codi d'eixida d'error 127

2011-01-16 Thread Lluís JD


-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703551

Title:
  package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to
  install/upgrade: el subprocés installed post-installation script
  retornà el codi d'eixida d'error 127

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 621265] Re: Slow Wireless Connection in Intel 3945abg

2011-01-08 Thread JD
My solution was to change the router's encryption mode from WPA2 Personal - 
TKIP or AES to WPA2 Personal - AES.
Changing to AES Encryption fixed it immediately.

Router: Linksys WRT160N
Intel 3945abg
Ubuntu 10.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/621265

Title:
  Slow Wireless Connection in Intel 3945abg

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 684440] [NEW] package linux-image-generic 2 .6.32.26.28 failed to install/upgrade: problemes de dependències - es deixa sense configurar

2010-12-02 Thread Lluís JD
Public bug reported:

Binary package hint: grub2

cref

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-image-generic 2.6.32.26.28
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Wed Dec  1 20:51:58 2010
ErrorMessage: problemes de dependències - es deixa sense configurar
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: grub2
Title: package linux-image-generic 2.6.32.26.28 failed to install/upgrade: 
problemes de dependències - es deixa sense configurar

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/684440

Title:
  package linux-image-generic 2.6.32.26.28 failed to install/upgrade: problemes 
de dependències - es deixa sense configurar

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 684440] Re: package linux-image-generic 2.6 .32.26.28 failed to install/upgrade: problemes de dependències - es deixa sense configurar

2010-12-02 Thread Lluís JD


-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/684440

Title:
  package linux-image-generic 2.6.32.26.28 failed to install/upgrade: problemes 
de dependències - es deixa sense configurar

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 683292] [NEW] package linux-image-2.6.3 2-26-generic 2.6.32-26.48 failed to install/upgrade : el subprocés installed post-installation script r etornà el codi d'eixida d'error 127

2010-11-30 Thread Lluís JD
Public bug reported:

Binary package hint: grub2

hd nt rh

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.32-26-generic 2.6.32-26.48
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Tue Nov 30 19:07:08 2010
ErrorMessage: el subprocés installed post-installation script retornà el codi 
d'eixida d'error 127
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: grub2
Title: package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to 
install/upgrade: el subprocés installed post-installation script retornà el 
codi d'eixida d'error 127

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to install/upgrade: 
el subprocés installed post-installation script retornà el codi d'eixida 
d'error 127
https://bugs.launchpad.net/bugs/683292
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 683292] Re: package linux-image-2.6.32-26 -generic 2.6.32-26.48 failed to install/upgrade: e l subprocés installed post-installation script retorn à el codi d'eixida d'error 127

2010-11-30 Thread Lluís JD


-- 
package linux-image-2.6.32-26-generic 2.6.32-26.48 failed to install/upgrade: 
el subprocés installed post-installation script retornà el codi d'eixida 
d'error 127
https://bugs.launchpad.net/bugs/683292
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 680932] [NEW] package linux-image-2.6.3 2-26-generic 2.6.32-26.47 failed to install/upgrade : el subprocés installed post-installation script r etornà el codi d'eixida d'error 127

2010-11-24 Thread Lluís JD
Public bug reported:

Binary package hint: grub2

I don't know

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.32-26-generic 2.6.32-26.47
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Wed Nov 24 14:34:05 2010
ErrorMessage: el subprocés installed post-installation script retornà el codi 
d'eixida d'error 127
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: grub2
Title: package linux-image-2.6.32-26-generic 2.6.32-26.47 failed to 
install/upgrade: el subprocés installed post-installation script retornà el 
codi d'eixida d'error 127

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package linux-image-2.6.32-26-generic 2.6.32-26.47 failed to install/upgrade: 
el subprocés installed post-installation script retornà el codi d'eixida 
d'error 127
https://bugs.launchpad.net/bugs/680932
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 680932] Re: package linux-image-2.6.32-26 -generic 2.6.32-26.47 failed to install/upgrade: e l subprocés installed post-installation script retorn à el codi d'eixida d'error 127

2010-11-24 Thread Lluís JD


-- 
package linux-image-2.6.32-26-generic 2.6.32-26.47 failed to install/upgrade: 
el subprocés installed post-installation script retornà el codi d'eixida 
d'error 127
https://bugs.launchpad.net/bugs/680932
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 680939] [NEW] package grub-pc 1.98-1ubunt u8 failed to install/upgrade: el subprocés installe d post-installation script retornà el codi d'eixida d'error 127

2010-11-24 Thread Lluís JD
Public bug reported:

Binary package hint: grub2

??¿¿

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: grub-pc 1.98-1ubuntu8
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Wed Nov 24 14:34:06 2010
ErrorMessage: el subprocés installed post-installation script retornà el codi 
d'eixida d'error 127
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: grub2
Title: package grub-pc 1.98-1ubuntu8 failed to install/upgrade: el subprocés 
installed post-installation script retornà el codi d'eixida d'error 127

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package grub-pc 1.98-1ubuntu8 failed to install/upgrade: el subprocés installed 
post-installation script retornà el codi d'eixida d'error 127
https://bugs.launchpad.net/bugs/680939
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 680939] Re: package grub-pc 1.98-1ubuntu8 f ailed to install/upgrade: el subprocés installed po st-installation script retornà el codi d'eixida d 'error 127

2010-11-24 Thread Lluís JD


-- 
package grub-pc 1.98-1ubuntu8 failed to install/upgrade: el subprocés installed 
post-installation script retornà el codi d'eixida d'error 127
https://bugs.launchpad.net/bugs/680939
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 662596] Re: Unable to add directories

2010-11-21 Thread JD
Same here, on Ubuntu 10.10 32bit.

Has anyone found a workaround?

-- 
Unable to add directories
https://bugs.launchpad.net/bugs/662596
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 662596] Re: Unable to add directories

2010-11-21 Thread JD
OK, the bug seems to be fixed in the CSV:

sudo apt-get install cvs build-essential intltool automake libarchive-dev 
libexpat-dev libgtk2.0-dev libglade2-dev libgnome2-dev libvte-dev 
libgtkimageview-dev 
mkdir temp
cd temp
cvs -d:pserver:anonym...@gmameui.cvs.sourceforge.net:/cvsroot/gmameui login
cvs -z3 -d:pserver:anonym...@gmameui.cvs.sourceforge.net:/cvsroot/gmameui co .
cat INSTALL #Read this!
sh autogen.sh
./configure
make
sudo make install

-- 
Unable to add directories
https://bugs.launchpad.net/bugs/662596
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 654367] Re: Alphaabetical sorting of artists mixes first and second names

2010-11-13 Thread JD M
This is not a  bug! You can change sorting from Prename to Surname for
every single track. If you right-click on the track, go to properties
(I guess that must be the right translation for Eigenschaften - I have
a german system). Then you go to sorting and change that to pre- or
surname.

-- 
Alphaabetical sorting of artists mixes first and second names
https://bugs.launchpad.net/bugs/654367
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 674062] [NEW] Volume or balance adjustment made by pulseaudio cause a metallic audio output

2010-11-11 Thread JD
Public bug reported:

Binary package hint: pulseaudio

I've found that any volume or balance adjustment made by pulseaudiocause
a metallic audio output until the volume is adjusted again by
alsamixer (even a very minor adjustment usually solves the problem).

My soundcard: Ralteck ALC889

My alsa-info: http://www.alsa-
project.org/db/?f=613d56a1dc14dafa952d2f7b4c099945f97ad27e

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21.1
ProcVersionSignature: Ubuntu 2.6.35-23.37-generic-pae 2.6.35.7
Uname: Linux 2.6.35-23-generic-pae i686
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: i386
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfbff8000 irq 51'
   Mixer name   : 'Realtek ALC889'
   Components   : 'HDA:10ec0889,1458a022,0014'
   Controls  : 38
   Simple ctrls  : 21
Card1.Amixer.info:
 Card hw:1 'NVidia'/'HDA NVidia at 0xf9ffc000 irq 17'
   Mixer name   : 'Nvidia GPU 11 HDMI/DP'
   Components   : 'HDA:10de0011,10de0101,00100100'
   Controls  : 16
   Simple ctrls  : 4
Card2.Amixer.info:
 Card hw:2 'SAA7134'/'saa7133[0] at 0xfb8ff000 irq 16'
   Mixer name   : 'SAA7134 Mixer'
   Components   : ''
   Controls  : 6
   Simple ctrls  : 3
Date: Thu Nov 11 15:36:15 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=it_IT.utf8
 SHELL=/bin/bash
SourcePackage: pulseaudio
dmi.bios.date: 10/18/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: Fc3
dmi.board.name: X58A-UD7
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrFc3:bd10/18/2010:svnGigabyteTechnologyCo.,Ltd.:pnX58A-UD7:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnX58A-UD7:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: X58A-UD7
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
mtime.conffile..etc.pulse.default.pa: 2010-11-10T21:22:47.326564

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: alc889 ga-x58a

-- 
Volume or balance adjustment made by pulseaudio cause a metallic audio output
https://bugs.launchpad.net/bugs/674062
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 674062] Re: Volume or balance adjustment made by pulseaudio cause a metallic audio output

2010-11-11 Thread JD


-- 
Volume or balance adjustment made by pulseaudio cause a metallic audio output
https://bugs.launchpad.net/bugs/674062
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 651738] Re: Does not check after initial launch

2010-11-03 Thread JD
Jim: I moved over to the same gnome-gmail-notifier package as Michael
has. It took me a week or two to get used to it, but I think I now much
prefer it.

I'm still amazed that this package got dumped into the 10.10
repositories with no testing whatsoever. I too am going to assume that
its now been abandoned, which is a shame really.

-- 
Does not check after initial launch
https://bugs.launchpad.net/bugs/651738
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 651738] Re: Does not check after initial launch

2010-10-22 Thread JD
Well, I've been using this software for about 3 years now. But thanks to
it being completely broken in 10.10, and with no fix, I've now moved
across (ad gotten used to) to another package, and can't see myself
going back again!

-- 
Does not check after initial launch
https://bugs.launchpad.net/bugs/651738
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 655886] Re: Remote access to vncserver keyboard mapping

2010-10-18 Thread JD Rogers
Fix: I have no idea how or why this happens, but after upgrade to 10.10,
a keyboard shortcut is set to make 'D' minimize all windows. After
logging in, you can select the menu 'System' - 'Preferences' -
'Keyboard Shortcuts' and find the Hide all normal windows and set focus
to desktop and set this to something sane like Alt + D.

I suspect that the default is Mod4+D and when a system does not have a
Mod4 key available, it drops the modifier.

-- 
Remote access to vncserver keyboard mapping
https://bugs.launchpad.net/bugs/655886
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 651738] Re: Does not check after initial launch

2010-10-13 Thread JD
Exactly the same issue here. I did a fresh install of 10.10, and it only
checks for mail when it's initially launched. Very strange that this
wasn't picked up before release.

-- 
Does not check after initial launch
https://bugs.launchpad.net/bugs/651738
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 594257] Re: cannot disable system beep [10.04]

2010-08-21 Thread JD Evora
Lets try to improve the description.

When you open a terminal window and you hit TAB or back space you hear a
very loud BEEP.

In previous version of Ubuntu I managed to disable it  including the line 
blacklist pcspkr   in the file  /etc/modprobe.d/blacklist.conf

But looks like after upgrading to 10.04 that trick doesn't work any
more, that module is not loaded but the terminal window does produce the
beep

I'm using a Dell Precision M4400


** Changed in: ubuntu
   Status: Incomplete = Confirmed

-- 
cannot disable system beep [10.04]
https://bugs.launchpad.net/bugs/594257
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 548415] Re: Shutdown timer no longer appears

2010-08-18 Thread JD Evora
I just upgraded to 10.4 and the count down  is one of the things that I
miss.

One click and it will eventually shut down.

Any chance to make it configurable?

-- 
Shutdown timer no longer appears
https://bugs.launchpad.net/bugs/548415
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


  1   2   3   >