[Bug 1904270] Re: ubiquity does not support existing LUKS encrypted partitions

2022-05-10 Thread Tim Edwards
This problem's still there on 22.04. I simplified my notes on how to
workaround it, HTH:

**Ubuntu 22.04 and Newer: Extra Steps for Re-Using Existing LUKS Encrypted 
Partition**
This has to be done using the Kubuntu or Ubuntu desktop live CD. Using the 
Ubuntu Server Live CD (with text-based installer) doesn't work in either of 
20.04 or 22.04 as the installer will just crash a few seconds after it starts 
installing. Steps:
- Boot off Kubuntu Live CD, select Try Kubuntu to get the desktop
- Open a terminal and run: sudo cryptsetup luksOpen /dev/sdX sdX_crypt #replace 
with nvme0nXpX or whatever the machine has
- Start the installer and run through it. The LVM LV's will appear in the 
installer. Note that (as of 22.04 at least) makes you create an EFI system 
partition - hopefully you have one even if it's unformatted
- End the installer and reboot as normal. You'll find it dumps you to an 
initramfs prompt. At this point again run:
sudo cryptsetup luksOpen /dev/sdX sdX_crypt #replace with nvme0nXpX or whatever 
the machine has
exit
It'll now continue booting successfully
- Once booted, create a valid /etc/crypttab:
sudo bash
export MAINLUKSPARTITION=sda4 # other examples: nvme0n1p3, whatever the machine 
has
UUID=$(blkid -s UUID -o value /dev/${MAINLUKSPARTITION})
echo "${MAINLUKSPARTITION}_crypt UUID=${UUID} none luks,discard" >> 
/etc/crypttab
cat /etc/crypttab 
# check it looks right

update-initramfs -u -k all

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

Title:
  ubiquity does not support existing LUKS encrypted partitions

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


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

[Bug 1904270] Re: ubiquity does not support existing LUKS encrypted partitions

2020-12-04 Thread Tim Edwards
Yeah it's a pretty ridiculous bug to have in an LTS release. Disk
encryption is a must these days, and other OSes like Windows support it
by default

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

Title:
  ubiquity does not support existing LUKS encrypted partitions

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

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

[Bug 1904270] [NEW] ubiquity does not support existing LUKS encrypted partitions

2020-11-14 Thread Tim Edwards
Public bug reported:

The ubiquity installer, including both the text version on the Ubuntu
Server live CD and its GUI version does not support using existing LUKS
encrypted partitions. That means out of the box it wants to completely
wipe all existing partitions, this is a serious failure for what's now
the default installer in Ubuntu 20.04.

There is a workaround that involves running 'cryptsetup luksOpen' before
running the installer, so that it can see the LVM LV's that are on the
encrypted device and use them. But even doing this won't work properly
because the installer stuffs up the /etc/crypttab and initrd. You have
to manually create /etc/crypttab and initrd.

This is a major failure since the installer doesn't support re-using
partitions that it itself created.

Steps to reproduce:
- get a system with a blank disk, or just create a new Virtualbox VM
- install Ubuntu 20.04 on an encrypted LUKS partition (using the options in the 
ubiquity installer), creating a / (root), /home and swap LV on top of the LUKS 
partition/LVM volume group
- boot the system to verify it starts, then restart into the installer again
- try to re-use the existing partitions, you can't unless you follow the manual 
workaround below:

**Workaround**
**Ubuntu 20.04: Extra Steps for Re-Using Existing LUKS Encrypted Partition**
(replace nvme0n1p8 with your encrypted LUKS partition)

- BEFORE starting the installer (if in Ubuntu or Kubuntu live CD desktop), or 
at the first step (if using Ubuntu Server text-based live CD installer):
# open existing LUKS partition (
cryptsetup luksOpen /dev/nvme0n1p8 nvme0n1p8_crypt

- Then, either do this at the end after the installer has run, or boot into a 
live CD environment (e.g. Kubuntu) and do:
cryptsetup luksOpen /dev/nvme0n1p8 nvme0n1p8_crypt
mount -o subvol=@ /dev/mapper/MainVG-root /mnt/
mount /dev/nvme0n1p7 /mnt/boot/
mount --rbind /dev/ /mnt/dev/
mount --rbind /sys/ /mnt/sys/
mount --rbind /run/ /mnt/run/
mount --rbind /proc/ /mnt/proc/
chroot /mnt /bin/bash -l
blkid | grep crypto_LUKS
# Example: /dev/nvme0n1p8: UUID="8cb9831a-692e-4b0e-936f-72529a3ed56d" 
TYPE="crypto_LUKS" PARTUUID="139f23d2-a0ff-4f4f-b41f-8083964ac894"
apt install vim
vim /etc/crypttab
# Add a line for the encrypted partiton, e.g:
# nvme0n1p8_crypt UUID="8cb9831a-692e-4b0e-936f-72529a3ed56d" none luks
# 
# MAKE SURE There's a newline at end of /etc/crypttab

# update the initramfs
update-initramfs -u -k all

umount -l /mnt

# Optional, probably not needed
grub-install --recheck /dev/nvme0n1
grub-mkconfig -o /boot/grub/grub.cfg

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 5.4.0-53.59-generic 5.4.65
Uname: Linux 5.4.0-53-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.12
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Sat Nov 14 21:30:33 2020
InstallationDate: Installed on 2020-11-02 (11 days ago)
InstallationMedia: Kubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal

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

Title:
  ubiquity does not support existing LUKS encrypted partitions

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

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

[Bug 1806514] [NEW] Cannot use PyUno connector with Libreoffice snap

2018-12-03 Thread Tim Edwards
Public bug reported:

It's not possible to use pyoo, which uses the Uno connector to
Libreoffice, on a machine where the Libreoffice Snap is installed. The
pyoo/Uno connector works fine with the libreoffice Apt packages.

To reproduce run this script:
#!/usr/bin/env python3
import pyoo
import subprocess
import time
import shlex

# PyOO needs a running Libreoffice process to do its work
lo_proc = subprocess.Popen(shlex.split("soffice 
--accept=\"socket,host=localhost,port=2002;urp;\" --norestore --nologo 
--nodefault"))
time.sleep(3) # give Libreoffice time to actually start before trying to 
connect to it
lo_instance = pyoo.Desktop('localhost', 2002)
lo_instance.create_spreadsheet()

Expected results (seen with the Libreoffice DEB-packages from Ubuntu): A
new Calc window opens up showing a spreadsheet

Actual results:
$ ./test.py 
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1833, in 
_get_remote_context
return resolver.resolve(url)
uno.NoConnectException: Connector : couldn't connect to socket (Success)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "./test.py", line 10, in 
lo_instance = pyoo.Desktop('localhost', 2002)
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1853, in __init__
self.remote_context = _get_remote_context(resolver, url)
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1835, in 
_get_remote_context
raise IOError(resolver, url)
OSError: [Errno pyuno object 
(com.sun.star.uno.XInterface)0x1ff9450{implementationName=com.sun.star.comp.bridge.UnoUrlResolver,
 supportedServices={com.sun.star.bridge.UnoUrlResolver}, 
supportedInterfaces={com.sun.star.lang.XServiceInfo,com.sun.star.bridge.XUnoUrlResolver,com.sun.star.lang.XTypeProvider,com.sun.star.uno.XWeak}}]
 uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext


Actual results if you specify the path to the soffice binary:
lo_proc = subprocess.Popen(shlex.split("soffice 
--accept=\"socket,host=localhost,port=2002;urp;\" --norestore --nologo 
--nodefault"))

$ ./test.py 
/snap/libreoffice/90/lib/libreoffice/program/soffice.bin: error while loading 
shared libraries: libicuuc.so.55: cannot open shared object file: No such file 
or directory
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1833, in 
_get_remote_context
return resolver.resolve(url)
uno.NoConnectException: Connector : couldn't connect to socket (Success)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "./test.py", line 10, in 
lo_instance = pyoo.Desktop('localhost', 2002)
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1853, in __init__
self.remote_context = _get_remote_context(resolver, url)
  File "/usr/local/lib/python3.6/dist-packages/pyoo.py", line 1835, in 
_get_remote_context
raise IOError(resolver, url)
OSError: [Errno pyuno object 
(com.sun.star.uno.XInterface)0x1b11450{implementationName=com.sun.star.comp.bridge.UnoUrlResolver,
 supportedServices={com.sun.star.bridge.UnoUrlResolver}, 
supportedInterfaces={com.sun.star.lang.XServiceInfo,com.sun.star.bridge.XUnoUrlResolver,com.sun.star.lang.XTypeProvider,com.sun.star.uno.XWeak}}]
 uno:socket,host=localhost,port=2002;urp;StarOffice.ComponentContext

** Affects: libreoffice (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/1806514

Title:
  Cannot use PyUno connector with Libreoffice snap

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

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

[Bug 1806514] Re: Cannot use PyUno connector with Libreoffice snap

2018-12-03 Thread Tim Edwards
The second error message is when specifying the exact path in the script like 
this:
lo_proc = 
subprocess.Popen(shlex.split("/snap/libreoffice/current/lib/libreoffice/program/soffice
 --accept=\"socket,host=localhost,port=2002;urp;\" --norestore --nologo 
--nodefault"))

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

Title:
  Cannot use PyUno connector with Libreoffice snap

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

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

[Bug 1748839] Re: Problem to connect to WPA2/PEAP WIFI - gnome-shell

2018-09-26 Thread Tim Edwards
Fixed for me, I didn't do anything different or change anything, I guess
one of the Ubuntu updates must've fixed it

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

Title:
  Problem to connect to WPA2/PEAP WIFI  - gnome-shell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1748839/+subscriptions

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

[Bug 1721537] Re: No sound from headphone jack on xps13 9350 after ubuntu 17.10 dist-upgrade

2018-08-12 Thread Tim Edwards
I found this worked around the problem (Dell XPS 9360):
Open alsamixer, enable sound on 'Headphone' (next to 'Master'). If there's a 
hissing/popping sound in the background but sound at 0 on 'Headphone Mic Boost'

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

Title:
  No sound from headphone jack on xps13 9350 after ubuntu 17.10 dist-
  upgrade

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

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

[Bug 1702020] Re: snap packaged Java program shows broken old-style GTK file select dialog

2017-07-04 Thread Tim Edwards
Thanks, I'll pass that on to the developer of Filebot

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

Title:
  snap packaged Java program shows broken old-style GTK file select
  dialog

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

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


[Bug 1702020] [NEW] snap packaged Java program shows broken old-style GTK file select dialog

2017-07-03 Thread Tim Edwards
Public bug reported:

I'm trying to use the snap package for Filebot
(https://www.filebot.net). The author of this program provides both DEB
packages
(https://sourceforge.net/projects/filebot/files/filebot/FileBot_4.7.9/)
and Snap packages (snap install filebot).

The problem is that when using the Snap package in KDE5 (Kubuntu 16.04) the 
program uses an ancient and broken version of the GTK file dialog, see 
screenshot:
https://imagebin.ca/v/3RX5AxfCcloc
This file dialog is broken in that it doesn't show some mounted Btrfs 
subvolumes, even when installed with --devmode so it has permission to see 
everything. It's also not nice to look at and doesn't match the KDE desktop.

When using the DEB package the program correctly brings up the modern KDE file 
dialog:
https://imagebin.ca/v/3RX55eaNU3dm

I first asked the program's developer about this, but he thinks this
must be a bug in Snap packaging, see
https://www.filebot.net/forums/viewtopic.php?f=6=5161=29159

Steps to reproduce:
- Install Kubuntu 16.04 LTS, run all updates
- snap install filebot
- Start filebot and click 'Load'

Please fix snap so that programs can use the native file select dialog
of the desktop they're running in, and not the lowest-common denominator
default of that ancient GTK one.

** Affects: snapd (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/1702020

Title:
  snap packaged Java program shows broken old-style GTK file select
  dialog

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

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


[Bug 1702022] [NEW] There should be a Snap Plug to add specific directories outside $HOME to the list of allowed directories for a snap

2017-07-03 Thread Tim Edwards
Public bug reported:

Currently when using a desktop application inside of a snap package it's
possible for that application to access files under /home/ by
using the Home plug.

It's not currently possible to have it access any other directories
outside of your $HOME, even directories you own.

Example: 
I use Filebot to rename movie and TV show files so my media server (Emby) can 
pick them up and find the correct metadata. My movie/TV show files are on a 
Btrfs formatted partition on a separate internal hard drive in my compter - i.e 
not part of my home directory (since they're too big).
The only current way to have Filebot access this Btrfs partition is to install 
it in --devmode, but that negates many of the benefits of snap packages in the 
first place.

** Affects: snapd (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/1702022

Title:
  There should be a Snap Plug to add specific directories outside $HOME
  to the list of allowed directories for a snap

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

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


[Bug 1651435] Re: BTRFS error: could not find root 8

2017-04-17 Thread Tim Edwards
Same problem here on Ubuntu 16.04 with BTRFS RAID-1 on LUKS partitions

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

Title:
  BTRFS error: could not find root 8

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

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


[Bug 1654685] Re: Desktop snaps such as Filebot or VLC can't access removeable media

2017-01-07 Thread Tim Edwards
Ok thanks, I'll use the DEB pacakge until the next version comes out

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

Title:
  Desktop snaps such as Filebot or VLC can't access removeable media

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

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


[Bug 1654685] [NEW] Desktop snaps such as Filebot or VLC can't access removeable media

2017-01-06 Thread Tim Edwards
Public bug reported:

I tried removing the Filebot DEB package and installing the snap
version. Unfortunately after installing Filebot using snap and starting
it I found that the snap Filebot was only able to access files and
directories under /home/.

This makes it pretty useless and most of my video files are stored on
USB hard drives (due to their size). I assume VLC would also have the
same problem.

The root cause is that once packaged as a snap desktop applications can
no longer access removeable media such as USB hard drives and USB
sticks, and probably not DVDs and Blurays either in the case of VLC.

** Affects: snapd (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/1654685

Title:
  Desktop snaps such as Filebot or VLC can't access removeable media

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

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


[Bug 1579471] Re: Expiration wants to delete almost all packages

2016-05-08 Thread Tim Edwards
I've looked into this a bit more and it might be to do with the new
by-hash/ feature in the Ubuntu 16.04 repos:
$ ls /srv/packages/apt-cacher-ng-wily/uburep/dists/wily/main/
binary-amd64  binary-i386  i18n  source

$ ls /srv/packages/apt-cacher-ng-xenial/uburep/dists/xenial/main/
dep11  source

I'm guessing apt-cacher-ng doesn't support this? I can't find a way to
turn it off though.
https://wiki.ubuntu.com/AptByHash

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

Title:
  Expiration wants to delete almost all packages

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

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


[Bug 1579471] [NEW] Expiration wants to delete almost all packages

2016-05-08 Thread Tim Edwards
Public bug reported:

I've setup apt-cacher-ng on an Ubuntu 16.04 box. During the installation
of all the software I use on Ubuntu it cached around 2GB of stuff:
du -sh /srv/packages/apt-cacher-ng-xenial/
2.1G/srv/packages/apt-cacher-ng-xenial/

The problem is that now whenever it runs the expiration process it wants
to delete about 1.8GB of this. I've checked several of the packages it
wants to delete and they're all still installed, and still available in
the repos (they're all from the official Ubuntu main and universe repos):

Tagging
uburep/pool/universe/b/breeze/kwin-style-breeze_5.5.5-0ubuntu1_amd64.deb
Tagging uburep/pool/main/g/gtk-sharp2/libgtk2.0-cil_2.12.10-6_amd64.deb
Tagging
uburep/pool/universe/b/breeze/qml-module-qtquick-controls-styles-breeze_5.5.5-0ubuntu1_amd64.deb
Tagging uburep/pool/universe/b/breeze/breeze_5.5.5-0ubuntu1_amd64.deb
Tagging uburep/pool/main/f/firefox/firefox_45.0.2+build1-0ubuntu1_amd64.deb
Tagging
uburep/pool/universe/b/breeze/kde-style-breeze-qt4_5.5.5-0ubuntu1_amd64.deb
Tagging
uburep/pool/universe/b/breeze/kde-style-breeze_5.5.5-0ubuntu1_amd64.deb
Tagging
uburep/pool/universe/q/qttools-opensource-src/libqt5designercomponents5_5.5.1-3build1_amd64.deb
Tagging
uburep/pool/main/g/gettext/libgettextpo-dev_0.19.7-2ubuntu3_amd64.deb
Tagging uburep/pool/universe/b/bluedevil/bluedevil_5.5.5-0ubuntu1_amd64.deb
Tagging uburep/pool/universe/b/bleachbit/bleachbit_1.10-1_all.deb
Tagging
uburep/pool/universe/b/boost1.58/libboost-python1.58.0_1.58.0+dfsg-5ubuntu3_amd64.deb
Tagging uburep/pool/main/libx/libxcomposite/libxcomposite1_0.4.4-1_amd64.deb
Tagging
uburep/pool/universe/b/banshee/banshee-extension-soundmenu_2.9.0+really2.6.2-7ubuntu2_amd64.deb

2738 package file(s) marked for removal in few days. Estimated disk
space to be released: 1.8 GiB.


I never had this problem with Ubuntu Wily and Trusty, with exactly the
same setup. Is there any way I can get the expiration working properly?
How can I debug why it's doing this?

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: apt-cacher-ng 0.9.1-1ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-22.39-generic 4.4.8
Uname: Linux 4.4.0-22-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
CurrentDesktop: KDE
Date: Sun May  8 16:58:58 2016
InstallationDate: Installed on 2016-05-01 (6 days ago)
InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.3)
SourcePackage: apt-cacher-ng
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.apt-cacher-ng.security.conf: [inaccessible: [Errno 13] 
Permission denied: '/etc/apt-cacher-ng/security.conf']
mtime.conffile..etc.apt-cacher-ng.acng.conf: 2016-05-08T16:58:35.606901
mtime.conffile..etc.cron.daily.apt-cacher-ng: 2016-05-08T16:58:35.966913

** Affects: apt-cacher-ng (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  Expiration wants to delete almost all packages

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

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


[Bug 1421184] Re: Merge latest version (2.48.3-1) with Debian

2016-04-28 Thread Tim Edwards
I was trying to sync between computers running Ubuntu 15.10 and a 16.04. I 
found it was enough to simply copy /usr/bin/unison-gtk to any random directory 
(eg. ~/Downloads) and run it from there:
chmod 750 unison-gtk
./unison-gtk

A bit ugly, but should allow me to sync between my remaining 14.04 and
15.10 computers as well as the 16.04 one until I get the time to upgrade
them all to 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/1421184

Title:
  Merge latest version (2.48.3-1) with Debian

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

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


[Bug 1421184] Re: Merge latest version (2.48.3-1) with Debian

2016-04-28 Thread Tim Edwards
*I meant copy the /usr/bin/unison-gtk from the 16.04 machine to the
15.10 one

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

Title:
  Merge latest version (2.48.3-1) with Debian

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

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


[Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread Tim Edwards
Yeah, sorry meant in the ppa. I use it on both trusty and wily: deb 
http://ppa.launchpad.net/ubuntu-l
xc/lxd-stable/ubuntu wily main

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

Title:
  'call to get_tasks_recursive failed' errors from su

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

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


[Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread Tim Edwards
Thanks!

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

Title:
  'call to get_tasks_recursive failed' errors from su

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

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


[Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread Tim Edwards
Thanks!  Would it also be possible to fix in trusty and wily?

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

Title:
  'call to get_tasks_recursive failed' errors from su

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

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


[Bug 1534090] [NEW] 'call to get_tasks_recursive failed' errors from su

2016-01-14 Thread Tim Edwards
Public bug reported:

In Ubuntu 14.04 all of a sudden I'm seeing these two error messages coming up 
every time I use su -, whether in a script or interactive shell:
call to remove-on-empty (freezer:0) failed: invalid request
call to get_tasks_recursive failed: Invalid arguments received in reply

Example and how to reproduce:

root@localhost:~# su - test "echo hello"
call to remove-on-empty (freezer:0) failed: invalid request
-su: echo hello: No such file or directory
call to get_tasks_recursive failed: Invalid arguments received in reply
call to get_tasks_recursive failed: Invalid arguments received in reply
root@localhost:~# su - test
call to remove-on-empty (freezer:0) failed: invalid request
test@localhost:~$ 


This only seems to affect Ubuntu 14.04

** Affects: shadow (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/1534090

Title:
  'call to get_tasks_recursive failed' errors from su

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

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


[Bug 969489] Re: lightdm tries (and fails) to start too early?

2015-12-20 Thread Tim Edwards
I run Ubuntu 14.04 and the workaround in #127 seems to have fixed it for
me, thanks Ciprian.

The fact that this is still happening on Ubuntu 14.04 is pretty shocking
- I know LightDM and Upstart are effectively deprecated in favour of
SDDM and systemd in the newer versions, but since this is such a high-
impact bug affecting so many users it really should be fixed in the LTS
versions.

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

Title:
  lightdm tries (and fails) to start too early?

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2015-09-10 Thread Tim Edwards
Seems this problem might not be occurring anymore with the Vivid HWE:

[11.783] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input
/event7)
[11.783] (**) ELAN Touchscreen: Applying InputClass "evdev touchscreen catc
hall"
[11.783] (II) Using input driver 'evdev' for 'ELAN Touchscreen'
[11.783] (**) ELAN Touchscreen: always reports core events
[11.783] (**) evdev: ELAN Touchscreen: Device: "/dev/input/event7"
[11.836] (--) evdev: ELAN Touchscreen: Vendor 0x4f3 Product 0x16f
[11.836] (--) evdev: ELAN Touchscreen: Found absolute axes
[11.836] (--) evdev: ELAN Touchscreen: Found absolute multitouch axes
[11.836] (II) evdev: ELAN Touchscreen: No buttons found, faking one.
[11.836] (--) evdev: ELAN Touchscreen: Found x and y absolute axes
[11.836] (--) evdev: ELAN Touchscreen: Found absolute touchscreen
[11.836] (II) evdev: ELAN Touchscreen: Configuring as touchscreen
[11.836] (**) evdev: ELAN Touchscreen: YAxisMapping: buttons 4 and 5
[11.836] (**) evdev: ELAN Touchscreen: EmulateWheelButton: 4, EmulateWheelI
nertia: 10, EmulateWheelTimeout: 200
[11.836] (**) Option "config_info" "udev:/sys/devices/pci:00/:00:14
.0/usb1/1-7/1-7:1.0/0003:04F3:016F.0005/input/input8/event7"
[11.836] (II) XINPUT: Adding extended input device "ELAN Touchscreen" (type
: TOUCHSCREEN, id 9)
[11.836] (II) evdev: ELAN Touchscreen: initialized for absolute axes.
[11.836] (**) ELAN Touchscreen: (accel) keeping acceleration scheme 1
[11.836] (**) ELAN Touchscreen: (accel) acceleration profile 0
[11.836] (**) ELAN Touchscreen: (accel) acceleration factor: 2.000
[11.836] (**) ELAN Touchscreen: (accel) acceleration threshold: 4
[11.836] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input
/mouse1)

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

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2015-08-09 Thread Tim Edwards
** Summary changed:

- Na Lenovo Yoga 2 Pro notebook PS / 2 Touchpad Synaptics rozpoznána jako 
ukazovací zařízení s Xorg
+ On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer 
device by Xorg

** Description changed:

- V aktuální verzi jádra pro trusty (linux -image 3. 13.0-35- generického
- 3.13.0-35.62) touchpadem na mém Lenevo Yoga 2 Pro notebook je správně
- rozpoznán jako touchpad zařízení. V posledním jádra v věrným-navrhl
- (linux image-3. 13.0-36- obecný 3.13.0-36.63) Toto zařízení je nesprávně
- rozpoznána jako ukazatel zařízení.
+ In the current kernel release for trusty (linux-image-3.13.0-35-generic
+ 3.13.0-35.62) the touchpad on my Lenevo Yoga 2 Pro laptop is correctly
+ detected as a touchpad device. In the latest kernel in trusty-proposed
+ (linux-image-3.13.0-36-generic 3.13.0-36.63) this device is incorrectly
+ detected as a 'pointer' device.
  
- Xorg.0.log spuštění pod linux-image- 3.13.0- 35-generic: 
- [10,706] (II) config / udev: Přidání vstupní SynPS zařízení / 2 Synaptics 
TouchPad (/ dev / input / event4) 
- [10,706] (* *) SynPS / 2 Synaptics Touch Pad: Použití InputClass evdev 
touchpad všehochuť 
- [10,706] (**) SynPS / 2 Synaptics Touch Pad: Aplikace InputClass touchpad 
všehochuť 
- [10,706] (**) SynPS / 2 Touchpad Synaptics: Použití InputClass  Výchozí 
ClickPad tlačítka  
- [10,706] (**) SynPS / 2 Synaptics Touch Pad: Aplikace InputClass touchpad 
všehochuť 
- [10,706] (II) LoadModule: Synaptics 
- [10,706] (II) Nahrávám / usr / lib / xorg / modules / vstupní / Synaptics 
_drv.so 
- [10,706] (II) Modul Synaptics: prodejce = X.Org Foundation 
- [10,706] vypracovávají za 1.15.0, verze modulu = 1.7.4 
- [10,706] Třída Modul: X.Org XInput Driver 
- [ 10,706] ABI třída: X.Org XInput driver, verze 20.0 
- [10,706] (II) Použitím vstupního ovladače synaptics pro SynPS / 2 
Synaptics TouchPad
+ Xorg.0.log run under linux-image-3.13.0-35-generic:
+ [ 10.706] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad 
(/dev/input/event4)
+ [ 10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass evdev 
touchpad catchall
+ [ 10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass touchpad 
catchall
+ [ 10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass Default 
clickpad buttons
+ [ 10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass touchpad 
catchall
+ [ 10.706] (II) LoadModule: synaptics
+ [ 10.706] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
+ [ 10.706] (II) Module synaptics: vendor=X.Org Foundation
+ [ 10.706] compiled for 1.15.0, module version = 1.7.4
+ [ 10.706] Module class: X.Org XInput Driver
+ [ 10.706] ABI class: X.Org XInput driver, version 20.0
+ [ 10.706] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
  
- Xorg.0.log spuštění pod linux-image- 3.13.0- 36-generic: 
- [10,389] (II) config / udev: Přidání vstupní zařízení PS / 2 Synaptics 
TouchPad (/ dev / input / event4) 
- [10,389] (* *) PS / 2 Touchpad Synaptics: Použití InputClass evdev ukazatele 
všehochuť 
- [10,389] (II) Použitím vstupního ovladače evdev pro PS / 2 Synaptics 
TouchPad 
- [10,389] (**) PS / 2 Touchpad Synaptics: vždy hlásí core události 
- [10,389] (**) evdev: PS / 2 Touchpad Synaptics: Device: / dev / input / 
event4 
- [10,389] (-) evdev: PS / 2 Touchpad Synaptics: 0x1 Prodejce 0x2 Product 
- [10,389] ( -) evdev: PS / 2 Touchpad Synaptics: Nalezeno 3 tlačítka myši 
- [10,389] (-) evdev: PS / 2 Synaptics TouchPad: nalezeno relativní osy 
- [10,389] (-) evdev: PS / 2 Touchpad Synaptics: Nalezené x a y relativní osy 
- [10,389] (II) evdev: PS / 2 Touchpad Synaptics: Konfigurace jako myš 
- [10,389] (**) evdev: PS / 2 Touchpad Synaptics: YAxisMapping: Tlačítka 4 a 5 
- [10,389] (**) evdev : PS / 2 Touchpad Synaptics: EmulateWheelButton: 4, 
EmulateWheelIne rtia: 10, EmulateWheelTim eout: 200 
- [10,389] (**) Option config_info udev: / sys / devices / platform / i8042 
/ serio1 / input / input5 / event4  
- [10,389] (II) XINPUT: Přidání rozšířený vstupní zařízení PS / 2 Synaptics 
TouchPad (typ: myš, ID 13)
+ Xorg.0.log run under linux-image-3.13.0-36-generic:
+ [ 10.389] (II) config/udev: Adding input device PS/2 Synaptics TouchPad 
(/dev/input/event4)
+ [ 10.389] (**) PS/2 Synaptics TouchPad: Applying InputClass evdev pointer 
catchall
+ [ 10.389] (II) Using input driver 'evdev' for 'PS/2 Synaptics TouchPad'
+ [ 10.389] (**) PS/2 Synaptics TouchPad: always reports core events
+ [ 10.389] (**) evdev: PS/2 Synaptics TouchPad: Device: /dev/input/event4
+ [ 10.389] (--) evdev: PS/2 Synaptics TouchPad: Vendor 0x2 Product 0x1
+ [ 10.389] (--) evdev: PS/2 Synaptics TouchPad: Found 3 mouse buttons
+ [ 10.389] (--) evdev: PS/2 Synaptics TouchPad: Found relative axes
+ [ 10.389] (--) evdev: PS/2 Synaptics TouchPad: Found x and y relative axes
+ [ 10.389] (II) evdev: PS/2 Synaptics TouchPad: Configuring as mouse
+ [ 10.389] (**) evdev: PS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
+ [ 10.389] (**) evdev: PS/2 

[Bug 1066480] Re: Installer doesn't show encrypted partitions

2015-07-06 Thread Tim Edwards
Where is the fix for trusty - I see no sign of it?

https://launchpad.net/ubuntu/+source/ubiquity/+changelog
https://code.launchpad.net/ubuntu/+source/ubiquity

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

Title:
  Installer doesn't show encrypted partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1066480/+subscriptions

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


[Bug 1324095] Re: [Lenovo Yoga 2 Pro] ideapad_laptop kernel module breaks wireless

2015-06-09 Thread Tim Edwards
I no longer get this problem with the Utopic kernel from the LTS
Enablement Stack in Ubuntu 14.04.2. Previously I had to manually build a
fixed version the driver ideapad-laptop after each kernel update, this
seems to no longer be necessary on my Yoga 2 Pro.

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

Title:
  [Lenovo Yoga 2 Pro] ideapad_laptop kernel module breaks wireless

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

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


[Bug 1066480] Re: Installer doesn't show encrypted partitions

2015-01-14 Thread Tim Edwards
Install using the Ubuntu Server CD/USB image and use its text UI
installer to configure encrypted partitions. After the installation is
done use apt-get to install ubuntu-desktop (for Unity), kubuntu-desktop
(for KDE) or whatever desktop you like best.

I've done this on 2 laptops and  a desktop and it works fine (the end
result is no different from the GUI installer once you've installed your
desktop env) and is the only workaround that works AFAIK.

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

Title:
  Installer doesn't show encrypted partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1066480/+subscriptions

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


[Bug 1397517] [NEW] Unity Screen Brightness Settings not Preserved on Reboot

2014-11-29 Thread Tim Edwards
Public bug reported:

Whenever Unity starts it sets the screen brightness to maximum, even
when the laptop is on battery. Lowering the screen brightness doesn't
persist across reboots.

To reproduce:
1. Start laptop (in this case a Lenovo Yoga 2 Pro) in battery mode (i.e. 
disconnected from the AC adaptor)
2. Unity will start in maximum brightness. Lower brightness using keyboard 
brightness keys.
3. Shutdown laptop and start it back up again (still with the AC adapter 
disconnected)

Expected result:
The screen brightness settings should be preserved across reboots

Actual result:
After each new start Unity sets the screen brightness to maximum, meaning the 
user has to remember to manually reduce it or the battery will be quickly used 
up

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: unity 7.2.3+14.04.20140826-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
Uname: Linux 3.13.0-40-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,imgpng,mousepoll,vpswitch,unitymtgrabhandles,gnomecompat,regex,move,grid,place,wall,animation,snap,resize,fade,session,expo,workarounds,scale,ezoom,unityshell]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Sat Nov 29 11:59:31 2014
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
0b) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:3978]
InstallationDate: Installed on 2014-09-16 (73 days ago)
InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
MachineType: LENOVO 20266
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-40-generic.efi.signed 
root=/dev/mapper/MainVG-root ro video.use_native_backlight=1 quiet splash 
vt.handoff=7
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/25/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: 76CN35WW
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Yoga2
dmi.board.vendor: LENOVO
dmi.board.version: 31900058STD
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo Yoga 2 Pro
dmi.modalias: 
dmi:bvnLENOVO:bvr76CN35WW:bd03/25/2014:svnLENOVO:pn20266:pvrLenovoYoga2Pro:rvnLENOVO:rnYoga2:rvr31900058STD:cvnLENOVO:ct10:cvrLenovoYoga2Pro:
dmi.product.name: 20266
dmi.product.version: Lenovo Yoga 2 Pro
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.2
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.3
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Fri Nov 28 23:10:38 2014
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   16970 
 vendor SDC
xserver.version: 2:1.15.1-0ubuntu2.1

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


** Tags: amd64 apport-bug compiz-0.9 third-party-packages trusty ubuntu

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

Title:
  Unity Screen Brightness Settings not Preserved on Reboot

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

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


[Bug 1375028] Re: onboard loses the focus when attempting to type in Unity Dash

2014-11-19 Thread Tim Edwards
That's strange, I just tried to reproduce the problem but couldn't. The
original problem was that Dash was taking the focus away from onboard,
although onboard was still open and visible under Dash. But I can't
reproduce this anymore - maybe a recent change in Unity has done
something?

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

Title:
  onboard loses the focus when attempting to type in Unity Dash

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

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


[Bug 1375028] Re: onboard loses the focus when attempting to type in Unity Dash

2014-11-13 Thread Tim Edwards
I don't think I changed the 'Force window on top' setting before I used
onboard for the first time, but I can't be sure. Maybe there should be a
warning pop-up when disabling this option? I guess if there's no other
solution with the way Dash works then there's nothing to do.

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

Title:
  onboard loses the focus when attempting to type in Unity Dash

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

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


[Bug 1375223] [NEW] unity-greeter ignores lightdm display resolution and DPI settings

2014-09-29 Thread Tim Edwards
Public bug reported:

I have a laptop with a very high-res screen (Lenovo Yoga 2 Pro with 3200x1600 
screen). To make this more usable I set the display to a resolution of 
1920x1080 and a higher DPI of 120x120 in the LightDM  settings:
xserver-command=X -dpi 120
display-setup-script=xrandr --output eDP1 --mode 1920x1080  --primary

These settings are ignored or overridden by the unity-greeter. Other
greeters, e.g. lightdm-kde-greeter, correctly apply these settings.

Steps to reproduce:
1. Change your DPI and resolution settings to be something other than the 
default for your laptop's display in /etc/lightdm/lightdm.conf, using 
xserver-command and display-setup-script as above
2. Ensure lightdm is set to use the unity-greeter
2. Restart lightdm or reboot the laptop

Expected results:
The lightdm Unity login screen is shown with the resolution and DPI you set 
using xserver-command and display-setup-script in lightdm.conf

Actual results:
The settings are ignored/overridden and lightdm shows the login screen using 
the default resolution and DPI for your device

Workaround:
Use lightdm-kde-greeter:
sudo apt-get install lightdm-kde-greeter
greeter-session=lightdm-kde-greeter

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: unity-greeter 14.04.10-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
Uname: Linux 3.13.0-36-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.4
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Sep 29 12:08:56 2014
InstallationDate: Installed on 2014-09-16 (12 days ago)
InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
SourcePackage: unity-greeter
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: unity-greeter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug third-party-packages trusty

** Description changed:

  I have a laptop with a very high-res screen (Lenovo Yoga 2 Pro with 3200x1600 
screen). To make this more usable I set the display to a resolution of 
1920x1080 and a higher DPI of 120x120 in the LightDM  settings:
  xserver-command=X -dpi 120
  display-setup-script=xrandr --output eDP1 --mode 1920x1080  --primary
  
  These settings are ignored or overridden by the unity-greeter. Other
  greeters, e.g. lightdm-kde-greeter, correctly apply these settings.
  
  Steps to reproduce:
  1. Change your DPI and resolution settings to be something other than the 
default for your laptop's display in /etc/lightdm/lightdm.conf, using 
xserver-command and display-setup-script as above
  2. Ensure lightdm is set to use the unity-greeter
  2. Restart lightdm or reboot the laptop
  
  Expected results:
- The lightdm Unity login screen is shown with the resolution and DPI you set 
using xserver-command and display-setup-script a
+ The lightdm Unity login screen is shown with the resolution and DPI you set 
using xserver-command and display-setup-script in lightdm.conf
  
  Actual results:
- The settings are ignored/overridden and lightdm shows the login screen using 
the default resolution and display for your device
+ The settings are ignored/overridden and lightdm shows the login screen using 
the default resolution and DPI for your device
  
  Workaround:
  Use lightdm-kde-greeter:
  sudo apt-get install lightdm-kde-greeter
  greeter-session=lightdm-kde-greeter
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity-greeter 14.04.10-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
  Uname: Linux 3.13.0-36-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.4
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Sep 29 12:08:56 2014
  InstallationDate: Installed on 2014-09-16 (12 days ago)
  InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
  SourcePackage: unity-greeter
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  unity-greeter ignores lightdm display resolution and DPI settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1375223/+subscriptions

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


[Bug 1375028] [NEW] onboard loses the focus when attempting to type in Unity Dash

2014-09-28 Thread Tim Edwards
Public bug reported:

It's impossible to use Onboard onscreen keyboard to type in the Unity
Dash search box unless onboard is set to 'Force Window on Top' in the
Onboard preferences. Setting this shouldn't be necessary as onboard
should automatically pop-up when the user selects any object that needs
text entry.

How to reproduce:
1. Start onboard on a computer with a touchscreen with the onboard setting 
'Force Window on Top' disabled 
2. Touch the Unity 'search your computer and online sources' to open Dash
3. Touch the 'Search your computer and online sources' search field to begin 
typing

Result:
Dash takes the focus away from onboard, meaning it's impossible to type in the 
Dash search field

Expected result:
I should be able to use onboard to type in the Dash search field, without 
needing a physical keyboard or other workarounds

Workarounds:
In Onboard preferences set 'Force Window on Top'
Use a physical keyboard (defeats the purpose of Unity as a touch interface)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: onboard 1.0.0-0ubuntu4
ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
Uname: Linux 3.13.0-36-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.4
Architecture: amd64
CurrentDesktop: Unity
Date: Sun Sep 28 19:56:37 2014
InstallationDate: Installed on 2014-09-16 (11 days ago)
InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
SourcePackage: onboard
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug third-party-packages trusty

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

Title:
  onboard loses the focus when attempting to type in Unity Dash

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

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


[Bug 1249825] Re: Cannot type into Unity Dash

2014-09-28 Thread Tim Edwards
Hi Francesco,

I think it's actually the same issue as this bug (#1249825), but I
couldn't find a way to re-open this bug so I created a new one
(#1375028) opened against the onboard version in trusty.

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

Title:
  Cannot type into Unity Dash

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

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


[Bug 1249825] Re: Cannot type into Unity Dash

2014-09-27 Thread Tim Edwards
i can still reproduce the bug in 14.04 with onboard 1.0.0. Unless i have
'force window to top' enabled in preferences opening the dash steals
focus from onboard and therefore makes it impossible to type in the dash
withput using the physical keyboard.

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

Title:
  Cannot type into Unity Dash

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-27 Thread Tim Edwards
** 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/1372520

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-24 Thread Tim Edwards
The latest kernel doesn't seem to have made a difference:
[53.415] (II) config/udev: Adding input device PS/2 Synaptics TouchPad 
(/dev/input/event4)
[53.415] (**) PS/2 Synaptics TouchPad: Applying InputClass evdev pointer 
catchall
[53.415] (II) Using input driver 'evdev' for 'PS/2 Synaptics TouchPad'
[53.415] (**) PS/2 Synaptics TouchPad: always reports core events
[53.415] (**) evdev: PS/2 Synaptics TouchPad: Device: /dev/input/event4

Linux localhost 3.17.0-031700rc6-generic #201409211935 SMP Sun Sep 21
23:37:11 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux


But I also tested using the Ubuntu 14.10 beta Live USB image and the problem is 
fixed in the 14.10 beta. I'm not sure how Xorg, udev and the kernel interfact 
when deciding whether a device is a 'touchpad' or just a 'pointer' but there 
must've been some change in Xorg or Udev that gets it working in 14.10 beta.


** Attachment added: Xorg.0.log
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1372520/+attachment/4213523/+files/Xorg.0.log

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

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1324095] Re: [Lenovo Yoga 2 Pro] ideapad_laptop kernel module breaks wireless

2014-09-24 Thread Tim Edwards
I have a Yoga 2 Pro and I can confirm that the ideapad_laptop module in
3.17 rc6 is fixed. Can we look at backporting this module to the trusty
kernel as a fix? Happy to help with testing or anything like that

Linux localhost 3.17.0-031700rc6-generic #201409211935 SMP Sun Sep 21
23:37:11 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/1324095

Title:
  [Lenovo Yoga 2 Pro] ideapad_laptop kernel module breaks wireless

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

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


[Bug 1162216] Re: touchscreen does not tap - sometimes

2014-09-24 Thread Tim Edwards
Confirmed this bug on a Lenovo Yoga 2 Pro with Kubuntu 14.04

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

Title:
  touchscreen does not tap - sometimes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-workspace/+bug/1162216/+subscriptions

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-23 Thread Tim Edwards
** Attachment added: /proc/bus/input/devices
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1372520/+attachment/4212377/+files/devices

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

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-23 Thread Tim Edwards
** Attachment added: output of xinput --list
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1372520/+attachment/4212378/+files/xinput

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

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-23 Thread Tim Edwards
Xorg.0.log showing Xorg detecting the touchpad incorrectly as a mouse pointer:
[11.016] (II) config/udev: Adding input device PS/2 Synaptics TouchPad 
(/dev/input/event4)
[11.016] (**) PS/2 Synaptics TouchPad: Applying InputClass evdev pointer 
catchall
[11.016] (II) Using input driver 'evdev' for 'PS/2 Synaptics TouchPad'


** Summary changed:

- [SRU regression] PS/2 Synaptics TouchPad seen as pointer device
+ On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer 
device by Xorg

** Tags removed: package-from-proposed regression-proposed

** Attachment added: Xorg.0.log from most recent boot
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1372520/+attachment/4212375/+files/Xorg.0.log

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

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] Re: On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as pointer device by Xorg

2014-09-23 Thread Tim Edwards
I'm no longer using the kernel from -proposed - I'm using the kernel from the 
Ubuntu main (and main/updates) repos on trusty:
Linux localhost 3.13.0-36-generic #63-Ubuntu SMP Wed Sep 3 21:30:07 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/1372520

Title:
  On Lenovo Yoga 2 Pro laptop PS/2 Synaptics TouchPad detected as
  pointer device by Xorg

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

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


[Bug 1372520] [NEW] [SRU regression] PS/2 Synaptics TouchPad seen as pointer device

2014-09-22 Thread Tim Edwards
Public bug reported:

In the current kernel release for trusty (linux-image-3.13.0-35-generic
3.13.0-35.62) the touchpad on my Lenevo Yoga 2 Pro laptop is correctly
detected as a touchpad device. In the latest kernel in trusty-proposed
(linux-image-3.13.0-36-generic 3.13.0-36.63) this device is incorrectly
detected as a 'pointer' device.

Xorg.0.log run under linux-image-3.13.0-35-generic:
[10.706] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad 
(/dev/input/event4)
[10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass evdev 
touchpad catchall
[10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass touchpad 
catchall
[10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass Default 
clickpad buttons
[10.706] (**) SynPS/2 Synaptics TouchPad: Applying InputClass touchpad 
catchall
[10.706] (II) LoadModule: synaptics
[10.706] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[10.706] (II) Module synaptics: vendor=X.Org Foundation
[10.706]compiled for 1.15.0, module version = 1.7.4
[10.706]Module class: X.Org XInput Driver
[10.706]ABI class: X.Org XInput driver, version 20.0
[10.706] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics 
TouchPad'


Xorg.0.log run under linux-image-3.13.0-36-generic:
[10.389] (II) config/udev: Adding input device PS/2 Synaptics TouchPad 
(/dev/input/event4)
[10.389] (**) PS/2 Synaptics TouchPad: Applying InputClass evdev pointer 
catchall
[10.389] (II) Using input driver 'evdev' for 'PS/2 Synaptics TouchPad'
[10.389] (**) PS/2 Synaptics TouchPad: always reports core events
[10.389] (**) evdev: PS/2 Synaptics TouchPad: Device: /dev/input/event4
[10.389] (--) evdev: PS/2 Synaptics TouchPad: Vendor 0x2 Product 0x1
[10.389] (--) evdev: PS/2 Synaptics TouchPad: Found 3 mouse buttons
[10.389] (--) evdev: PS/2 Synaptics TouchPad: Found relative axes
[10.389] (--) evdev: PS/2 Synaptics TouchPad: Found x and y relative axes
[10.389] (II) evdev: PS/2 Synaptics TouchPad: Configuring as mouse
[10.389] (**) evdev: PS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
[10.389] (**) evdev: PS/2 Synaptics TouchPad: EmulateWheelButton: 4, 
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[10.389] (**) Option config_info 
udev:/sys/devices/platform/i8042/serio1/input/input5/event4
[10.389] (II) XINPUT: Adding extended input device PS/2 Synaptics 
TouchPad (type: MOUSE, id 13)

Snippet from /proc/bus/input/devices:
I: Bus=0011 Vendor=0002 Product=0001 Version=
N: Name=PS/2 Synaptics TouchPad
P: Phys=isa0060/serio1/input0
S: Sysfs=/devices/platform/i8042/serio1/input/input5
U: Uniq=
H: Handlers=mouse0 event4 
B: PROP=0
B: EV=7
B: KEY=7 0 0 0 0
B: REL=3

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-36-generic 3.13.0-36.63
ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
Uname: Linux 3.13.0-36-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.4
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  tim2825 F pulseaudio
  tim3337 F pulseaudio
 /dev/snd/controlC1:  tim2825 F pulseaudio
  tim3337 F pulseaudio
CurrentDesktop: KDE
Date: Mon Sep 22 16:33:01 2014
HibernationDevice: RESUME=/dev/mapper/MainVG-swap
InstallationDate: Installed on 2014-09-16 (5 days ago)
InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
MachineType: LENOVO 20266
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-36-generic.efi.signed 
root=/dev/mapper/MainVG-root ro video.use_native_backlight=1 quiet splash 
vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-36-generic N/A
 linux-backports-modules-3.13.0-36-generic  N/A
 linux-firmware 1.134
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/25/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: 76CN35WW
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Yoga2
dmi.board.vendor: LENOVO
dmi.board.version: 31900058STD
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo Yoga 2 Pro
dmi.modalias: 
dmi:bvnLENOVO:bvr76CN35WW:bd03/25/2014:svnLENOVO:pn20266:pvrLenovoYoga2Pro:rvnLENOVO:rnYoga2:rvr31900058STD:cvnLENOVO:ct10:cvrLenovoYoga2Pro:
dmi.product.name: 20266
dmi.product.version: Lenovo Yoga 2 Pro
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug package-from-proposed regression-proposed trusty

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

Title:
  [SRU regression] PS/2 Synaptics TouchPad seen as pointer device

To manage notifications about this bug go to:

[Bug 1308264] Re: Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when booting up, then resumes booting to the login screen, after 1 minute

2014-09-20 Thread Tim Edwards
You shouldn't have needed to replace the kernel, the workaround I posted
works with the normal kernels from 14.04. But anyway it doesn't do any
harm, and you don't need to worry about 'locking' the kernel - apt-get
won't replace your kernel 3.17 package with any of the ones from 14.04
because they'll all be of a lower version - 3.13.XX whereas your kernel
package will be 3.17.XX.

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

Title:
  Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when
  booting up, then resumes booting to the login screen, after 1 minute

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

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


[Bug 1309525] Re: Creating encrypted partitions fails

2014-08-04 Thread Tim Edwards
@Tomasz
Install using the Ubuntu Server CD image, which gets you the text-mode 
installer which has full support for encrypted partitioning. Then 'apt-get 
install kubuntu-desktop' to get a fully running desktop system
(since they stopped having separate kernel images for desktop and server there 
are no noticable differences between normal Ubuntu and Ubuntu Server, except of 
course that Server has the more flexible text-mode installer)

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

Title:
  Creating encrypted partitions fails

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

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


[Bug 1308264] Re: Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when booting up, then resumes booting to the login screen, after 1 minute

2014-08-04 Thread Tim Edwards
@Jackson
There's no need to downgrade the kernel anymore. The workaround, which I use on 
my C720 and it works is:
1. Open the file /etc/default/grub as root in a text editor with: gksu gedit 
/etc/default/grub
2. change the line: GRUB_CMDLINE_LINUX_DEFAULT=tpm_tis.force=1 and save 
changes
3. sudo update-grub

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

Title:
  Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when
  booting up, then resumes booting to the login screen, after 1 minute

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

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


[Bug 1317449] Re: Please update to a version 3.8.2

2014-07-28 Thread Tim Edwards
I worked around this bug on trusty by downloading  installing the following 
utopic packages from packages.ubuntu.com:
libsqlite3-0_3.8.5-2ubuntu1_amd64.deb  sqlite3_3.8.5-2ubuntu1_amd64.deb
libsqlite3-0_3.8.5-2ubuntu1_i386.deb   sqlite3_3.8.5-2ubuntu1_i386.deb

Please fix the bug properly on trusty, it's very frustrating that
digikam slideshows just crash without this workaround!

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

Title:
  Please update to a version  3.8.2

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

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


[Bug 1308264] Re: Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when booting up, then resumes booting to the login screen, after 1 minute

2014-06-24 Thread Tim Edwards
I can also confirm that setting
GRUB_CMDLINE_LINUX_DEFAULT=tpm_tis.force=1 and running sudo update-
grub fixed this problem on an Acer C720 Chromebook, running the default
kernel that installs with Ubuntu 14.04.

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

Title:
  Ubuntu 14.04 Beta 2 stuck at Switched to clocksource tsc when
  booting up, then resumes booting to the login screen, after 1 minute

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

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


[Bug 1327134] [NEW] Language kcm leaves some programs in English and others in other languages

2014-06-06 Thread Tim Edwards
Public bug reported:

The System Settings-Locale-Country/Region  Language-Languages module
is setting a wrong value for the LANGUAGE environment variable in
~/.kde/env/setlocale.sh which leaves some programs running in English
and some in other languages.

To reproduce:
1. The System Settings-Locale-Country/Region  Language-Languages
2. Install a couple of different languages, in this example British English, 
American English, German and Spanish
3. Order Preferred Languages to (top to bottom): American English, British 
English, German, Spanish
4. Apply, ok, logout of KDE, log back in

Actual Results:
Some programs are in English (KDE/QT programs, Firefox, Libreoffice), while 
some are in German (GTK programs like GIMP, all bash command line programs, 
e.g. tim@localhost:~$ ls filenotthere
ls: Zugriff auf filenotthere nicht möglich: Datei oder Verzeichnis nicht 
gefunden)

cat ~/.kde/env/setlocale.sh
export LANG=en_GB.UTF-8
export LANGUAGE=en:de:es:en
export LC_NUMERIC=en_GB.UTF-8
export LC_TIME=en_GB.UTF-8
export LC_MONETARY=en_GB.UTF-8
export LC_PAPER=en_GB.UTF-8
export LC_IDENTIFICATION=en_GB.UTF-8
export LC_NAME=en_GB.UTF-8
export LC_ADDRESS=en_GB.UTF-8
export LC_TELEPHONE=en_GB.UTF-8
export LC_MEASUREMENT=en_GB.UTF-8

Expected Results:
All programs are in English as American English and British English have the 
highest preferences, and all software includes translations for at least 
American English

Workaround
Manually set export LANGUAGE=en in ~/.kde/env/setlocale.sh

** Affects: kde-runtime (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/1327134

Title:
  Language kcm leaves some programs in English and others in other
  languages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-runtime/+bug/1327134/+subscriptions

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

[Bug 1317115] Re: language kcm doesn't write env setup script

2014-05-09 Thread Tim Edwards
Thanks for your help with this but unfortunately I don't think the fix has 
worked. 
I started off by clearing the test user's home dir and copying in just what's 
in /etc/skel. Then System Settings-Locale, add German, put German as top 
priority. Logout, log back in.

Result is that even KDE seems half German/half English (whereas before
the patch KDE was fully in German). See screenshots attached.

As for other programs, FIrefox is in German, but Libreoffice, Gimp and
bash shell are not.

test@localhost:~$ cat .kde/env/*
export LANG=de_GB.UTF-8
export LANGUAGE=de:en
export LC_NUMERIC=de_GB.UTF-8
export LC_TIME=de_GB.UTF-8
export LC_MONETARY=de_GB.UTF-8
export LC_PAPER=de_GB.UTF-8
export LC_IDENTIFICATION=de_GB.UTF-8
export LC_NAME=de_GB.UTF-8
export LC_ADDRESS=de_GB.UTF-8
export LC_TELEPHONE=de_GB.UTF-8
export LC_MEASUREMENT=de_GB.UTF-8


** Attachment added: snapshot1.png
   
https://bugs.launchpad.net/ubuntu/+source/kde-runtime/+bug/1317115/+attachment/4108718/+files/snapshot1.png

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

Title:
  language kcm doesn't write env setup script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-runtime/+bug/1317115/+subscriptions

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


[Bug 1317115] Re: language kcm doesn't write env setup script

2014-05-09 Thread Tim Edwards
That fixed it!

I also installed a 3rd language (Spanish) as an extra test, and after
adding the language and chaging the country, logout/login and everything
was consistently in Spanish. Then set it back to English(UK) and
everything's consistent in that too.

Thanks again for fixing the bug!

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

Title:
  language kcm doesn't write env setup script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-runtime/+bug/1317115/+subscriptions

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


[Bug 1317115] Re: KDE Locale module support for changing language is incomplete

2014-05-08 Thread Tim Edwards
In the home dir of the original tim user (after undoing the 
gnome-language-selector changes but with the KDE Locale module changes still 
applied):
No KDE env directory:
tim@localhost:~$ cat ~/.kde/env/*
cat: /home/tim/.kde/env/*: No such file or directory
tim@localhost:~$ find ~/.kde/ | grep env
tim@localhost:~$

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

Title:
  KDE Locale module support for changing language is incomplete

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

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


[Bug 1317115] Re: KDE Locale module support for changing language is incomplete

2014-05-08 Thread Tim Edwards
I followed your instructions exactly using a newly created user test. Still no 
kde/env directories, log from running systemsettings attached:
test@localhost:~$ cat ~/.kde/env/*
cat: /home/test/.kde/env/*: No such file or directory
test@localhost:~$ find /home/test/.kde/ | grep -i env
test@localhost:~$

This is in a VM I'm using to test 14.04 before installing it on my
laptop. So there's no problem with testing stuff, installing debug or
test packages or anything like that.

** Attachment added: systemsettings log
   
https://bugs.launchpad.net/ubuntu/+source/libkubuntu/+bug/1317115/+attachment/4107965/+files/log

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

Title:
  KDE Locale module support for changing language is incomplete

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

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


[Bug 1317115] Re: KDE Locale module support for changing language is incomplete

2014-05-08 Thread Tim Edwards
I started systemsettings and browsed into locale-language before
starting kdebugdialog and enabling everything this time. I'm not sure if
the log has got anything useful but here's the log, seems to have at
least registered that Locale was opened.

** Attachment added: log
   
https://bugs.launchpad.net/ubuntu/+source/libkubuntu/+bug/1317115/+attachment/4108033/+files/log

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

Title:
  KDE Locale module support for changing language is incomplete

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

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


[Bug 1317115] Re: KDE Locale module support for changing language is incomplete

2014-05-08 Thread Tim Edwards
Yes, I did that. Just to be sure I've tried a 3rd time:
Run systemsettings
Start kdebugdialog (with system settings still open), uncheck 'disable debug 
output', Select all, Apply, Ok
close system settings
systemsettings log
go to locale-language
move german to the right hand list
move german up to the top of the list
apply and close

log file attached

I don't think the locale module is crashing or failing to run part of
its process. AFAICT it's just go extremely limited functionality and so
doesn't replace the deprecated language-selector-kde. It's a bit like if
the KDE System Settings Printer config only configured printers for KDE
apps, and Firefox and Libreoffice or the lp* tools couldn't see the
printers it created.

** Attachment added: log
   
https://bugs.launchpad.net/ubuntu/+source/libkubuntu/+bug/1317115/+attachment/4108074/+files/log

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

Title:
  KDE Locale module support for changing language is incomplete

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

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


[Bug 1317115] Re: KDE Locale module support for changing language is incomplete

2014-05-07 Thread Tim Edwards
BTW the ProcEnviron.txt attached to this bug report is from after I
applied the workaround (i.e. used gnome-language-selector) so that's why
some of the env vars have been changed

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

Title:
  KDE Locale module support for changing language is incomplete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-workspace/+bug/1317115/+subscriptions

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


[Bug 1013626] Re: systemsettings crashed with ImportError in /usr/share/kde4/apps/language-selector/language-selector.py: No module named LanguageSelector.qt.QtLanguageSelector

2014-05-07 Thread Tim Edwards
I've opened a new bug report about the fact that in the locale kcm only changes 
language for KDE applications (and so results in a half-half system where some 
programs use one language, the others another or the default English). 
https://bugs.launchpad.net/ubuntu/+source/kde-workspace/+bug/1317115

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

Title:
  systemsettings crashed with ImportError in /usr/share/kde4/apps
  /language-selector/language-selector.py: No module named
  LanguageSelector.qt.QtLanguageSelector

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-workspace/+bug/1013626/+subscriptions

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


[Bug 1317115] [NEW] KDE Locale module support for changing language is incomplete

2014-05-07 Thread Tim Edwards
Public bug reported:

The current Kubuntu method of installing support for new languages and
changing which language gets highest preference is broken because it
only affects KDE applications. The system language (as set by the LANG
and LANGUAGE environment variables) isn't changed, and the language
support for added languages is incomplete - for example missing
localisation packages for Firefox, Libreoffice and spell checkers, among
others.

This is a side-effect of the deprecation of the language-selector-kde
package, which used to give Kubuntu users the same fuctionality as
gnome-language-selector by creating an extra module in KDE System
Settings.

The missing functionality should be integrated into the KDE System
Settings Locale control module, as mentioned in this comment
https://bugs.launchpad.net/ubuntu/+source/language-
selector/+bug/1013626/comments/4

To reproduce:
1. Freshly installed Kubuntu 14.04 system. KDE System 
Settings-Locale-Language.
2. Add language (in my example German). Wait while Locale module installs the 
necessary packages.
3. Move language (German) to top of the priority list, above the default 
American English
4. Logout of KDE, log back in

Expected Results:
All necessary language files for both KDE applications (e.g. Dolphin) and 
non-KDE applications (e.g. Firefox, Libreoffice) is installed. All programs 
which have German translations available display in German. Environment 
variables are set so that command line programs also run in German (where 
translations available), eg:
tim@localhost:~$ ls notthere
ls: Zugriff auf notthere nicht möglich: Datei oder Verzeichnis nicht gefunden

In short - the same effect you'd get by using gnome-language-selector

Actual Results:
Only the language of KDE applications is changed. Firefox, LIbreoffice, command 
line programs, bash environment vars, and all other programs remain in English. 
In other words you have a half-half system as far as language support is 
concerned.

Workaround:
sudo apt-get install gnome-language-selector
gnome-language-selector

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: kde-workspace 4:4.11.8-0ubuntu6
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CurrentDesktop: KDE
Date: Wed May  7 15:01:57 2014
InstallationDate: Installed on 2014-04-29 (7 days ago)
InstallationMedia: Ubuntu-Server 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
PackageArchitecture: all
SourcePackage: kde-workspace
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: kde-workspace (Ubuntu)
 Importance: Undecided
 Status: New


** 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/1317115

Title:
  KDE Locale module support for changing language is incomplete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-workspace/+bug/1317115/+subscriptions

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

[Bug 1283589] Re: [Samsung NP530U3C-A01] LID close, AC, and battery status events not produced anymore

2014-02-23 Thread Tim Edwards
I have a Samsung NP530U3C-A01 laptop and I can confirm this bug affects
my laptop. After applying the workaround script from juanmanuel in #3
and #4 I re-tested and the problem no longer appears.

Thanks juanmanuel for writing the fix and being so patient with Ubuntu's
ridiculous bug policies - just don't lose your laptop otherwise we'll
have to start this whole bug report process again!

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

Title:
  [Samsung NP530U3C-A01] LID close, AC, and battery status events not
  produced anymore

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

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


[Bug 1283589] Re: [Samsung NP530U3C-A01] LID close, AC, and battery status events not produced anymore

2014-02-23 Thread Tim Edwards
@andrea-lazzarotto
To be fair it does say One defect, per person, per hardware, per report at 
https://wiki.ubuntu.com/Bugs/BestPractices#X.2BAC8-Reporting.Focus_on_One_Issue.
 

The 'One defect, per person' is obviously stupid when there's 100 of us
with the same hardware and same problem, opening 100 bugs isn't going to
help anyone. But I wouldn't make it personal against the guy if he's
just a volunteer enforcing Canonical's rules.

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

Title:
  [Samsung NP530U3C-A01] LID close, AC, and battery status events not
  produced anymore

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

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


[Bug 971061] Re: acpi reports battery state incorrectly

2014-02-19 Thread Tim Edwards
Great work juanmanuel!

This suspend/resume problem was the last thing on this laptop not
properly supported by Ubuntu and now it's fixed. Hopefully you can get
the kernel developers to include a patch.

For anyone who can't get the command/data codes you need to reboot your
laptop before running dmesg | grep EC: (the kernel ring buffer that
dmesg reads only has a limited size so boot messages will eventually get
overwritten)

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

Title:
  acpi reports battery state incorrectly

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

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


[Bug 1066480] Re: Installer doesn't show encrypted partitions

2013-10-26 Thread Tim Edwards
Please fix this regression before 14.04, it's going to make installing
the next LTS a real nightmare for those of us who use encrypted
partitions. Making a note in the Release Notes is great, but not really
enough since the feature was in there before and it's changes someone
has made (dropping the alternate installer) that removed the feature.

I'm not sure what I could do programming-wise but I'd be happy to take
time to test any proposed fix on VMs or even on a desktop PC if
necessary.

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

Title:
  Installer doesn't show encrypted partitions

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

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


[Bug 1222971] [NEW] Digikam can't access photos via MTP on Nexus 4 since KDE 4.11.1 update

2013-09-09 Thread Tim Edwards
Public bug reported:

Since updating to KDE 4.11.1 from the Kubuntu Backports PPA I can't view
or download photos from my Nexus 4 using the MTP protocol (USB mode
Connected as a camera on the phone).

1. Connect phone via USB cable to computer
2. KDE Device Notifier pops-up saying a 'Camera' has been connected, asks 
whether to open in Gwenview, Digikam or Dolphin
3. Select 'Download photos with Digikam'

Expected result:
Digikam opens with device manager window showing all photos stored on the phone 
allowing me to select them and download. This is the behaviour pre-KDE 4.11.1

Actual result:
Digikam opens with device manager window showing blank, as though there are no 
photos on the phone

** Affects: kubuntu-ppa
 Importance: Undecided
 Status: New

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

Title:
  Digikam can't access photos via MTP on Nexus 4 since KDE 4.11.1 update

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1222971/+subscriptions

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


[Bug 1222971] Re: Digikam can't access photos via MTP on Nexus 4 since KDE 4.11.1 update

2013-09-09 Thread Tim Edwards
Oops, the above bug description should say 'PTP' protocol instead of
'MTP'

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

Title:
  Digikam can't access photos via MTP on Nexus 4 since KDE 4.11.1 update

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1222971/+subscriptions

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


[Bug 969520] Re: IcedTea Java Web Start fails to open .jnlp file

2013-06-21 Thread Tim Edwards
I also hit this bug trying to switch from OpenJDK 6 to 7. The solution
in comment #12 worked for me and IMHO is the best solution as it avoids
hacking script files which will be overwritten by any future package
updates.

This looks like a simple bug caused by one of the openjdk-6-* packages
not cleaning up after itself properly, can we get it fixed?

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

Title:
  IcedTea Java Web Start fails to open .jnlp file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/icedtea-web/+bug/969520/+subscriptions

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


[Bug 1081307] Re: virtualbox-dkms 4.1.12-dfsg-2ubuntu0.2: virtualbox kernel module failed to build [merge request]

2013-04-09 Thread Tim Edwards
@Doug I've had a good experience with uninstalling Virtualbox packages
that come from the Ubuntu repositories and instead getting Virtualbox
directly from virtualbox.org's repository for Ubuntu.

Instructions: http://www.itworld.com/virtualization/308757/install-
virtualbox-424-ubuntu-1204-or-1210

Works well for me even on 12.04.2 with the new kernel and it means you
always have the latest Virtualbox version.

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

Title:
  virtualbox-dkms 4.1.12-dfsg-2ubuntu0.2: virtualbox kernel module
  failed to build [merge request]

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

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


[Bug 1155146] Re: samba segfaults when LTS enablement stack is installed

2013-03-20 Thread Tim Edwards
*** This bug is a duplicate of bug 1016895 ***
https://bugs.launchpad.net/bugs/1016895

Tried the 3.5 kernel again and in the meantime Samba has been updated to
fix  the bug causing this. So this is a dupe of lp#1016895

** This bug has been marked a duplicate of bug 1016895
   smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1 group 
is causing crashes.

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

Title:
  samba segfaults when LTS enablement stack is installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1155146/+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 1155146] Re: samba segfaults when LTS enablement stack is installed

2013-03-20 Thread Tim Edwards
*** This bug is a duplicate of bug 1016895 ***
https://bugs.launchpad.net/bugs/1016895

Tried the 3.5 kernel again and in the meantime Samba has been updated to
fix  the bug causing this. So this is a dupe of lp#1016895

** This bug has been marked a duplicate of bug 1016895
   smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1 group 
is causing crashes.

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

Title:
  samba segfaults when LTS enablement stack is installed

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

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


[Bug 1155146] [NEW] samba segfaults when LTS enablement stack is installed

2013-03-14 Thread Tim Edwards
Public bug reported:

I've had a running 12.04 LTS system for several months now. I installed
the LTS Enablement Stack for 12.04.2 following the instructions at
https://wiki.ubuntu.com/Kernel/LTSEnablementStack. After doing this and
rebooting into the new kernel samba no longer works, every time I try to
access shared folders it crashes and emails me the following:

The Samba 'panic action' script, /usr/share/samba/panic-action,
was called for PID 5294 (/usr/sbin/smbd).

This means there was a problem with the program, such as a segfault.
Below is a backtrace for this process generated with gdb, which shows
the state of the program at the time the error occurred.  The Samba log
files may contain additional information about the problem.

If the problem persists, you are encouraged to first install the
samba-dbg package, which contains the debugging symbols for the Samba
binaries.  Then submit the provided information as a bug report to
Ubuntu by visiting this link:
https://launchpad.net/ubuntu/+source/samba/+filebug

[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
0x7fbdb334043e in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#0  0x7fbdb334043e in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7fbdb32c629e in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x7fbdb6718bec in smb_panic ()
#3  0x7fbdb6463be6 in ?? ()
#4  0x7fbdb6463f0f in set_sec_ctx ()
#5  0x7fbdb6452db5 in ?? ()
#6  0x7fbdb647ae2b in ?? ()
#7  0x7fbdb647b76e in ?? ()
#8  0x7fbdb647baea in make_connection ()
#9  0x7fbdb642c82c in reply_tcon_and_X ()
#10 0x7fbdb6476fa4 in ?? ()
#11 0x7fbdb64773bb in ?? ()
#12 0x7fbdb64777d3 in ?? ()
#13 0x7fbdb67288ae in run_events_poll ()
#14 0x7fbdb6478f42 in smbd_process ()
#15 0x7fbdb698666f in ?? ()
#16 0x7fbdb67288ae in run_events_poll ()
#17 0x7fbdb6728a4a in ?? ()
#18 0x7fbdb67295d0 in _tevent_loop_once ()
#19 0x7fbdb63f7030 in main ()
A debugging session is active.

Inferior 1 [process 5294] will be detached.

Quit anyway? (y or n) [answered Y; input not from terminal]

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

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

Title:
  samba segfaults when LTS enablement stack is installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1155146/+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 1155146] Re: samba segfaults when LTS enablement stack is installed

2013-03-14 Thread Tim Edwards
$ apt-cache policy samba
samba:
  Installed: 2:3.6.3-2ubuntu2.3
  Candidate: 2:3.6.3-2ubuntu2.3
  Version table:
 *** 2:3.6.3-2ubuntu2.3 0
500 http://localhost/ubuntu/ precise-updates/main amd64 Packages
100 /var/lib/dpkg/status
 2:3.6.3-2ubuntu2.1 0
500 http://localhost/ubuntu/ precise-security/main amd64 Packages
 2:3.6.3-2ubuntu2 0
500 http://localhost/ubuntu/ precise/main amd64 Packages


Linux localhost 3.5.0-25-generic #39~precise1-Ubuntu SMP Tue Feb 26 00:07:14 
UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  samba segfaults when LTS enablement stack is installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1155146/+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 1155146] [NEW] samba segfaults when LTS enablement stack is installed

2013-03-14 Thread Tim Edwards
Public bug reported:

I've had a running 12.04 LTS system for several months now. I installed
the LTS Enablement Stack for 12.04.2 following the instructions at
https://wiki.ubuntu.com/Kernel/LTSEnablementStack. After doing this and
rebooting into the new kernel samba no longer works, every time I try to
access shared folders it crashes and emails me the following:

The Samba 'panic action' script, /usr/share/samba/panic-action,
was called for PID 5294 (/usr/sbin/smbd).

This means there was a problem with the program, such as a segfault.
Below is a backtrace for this process generated with gdb, which shows
the state of the program at the time the error occurred.  The Samba log
files may contain additional information about the problem.

If the problem persists, you are encouraged to first install the
samba-dbg package, which contains the debugging symbols for the Samba
binaries.  Then submit the provided information as a bug report to
Ubuntu by visiting this link:
https://launchpad.net/ubuntu/+source/samba/+filebug

[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
0x7fbdb334043e in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#0  0x7fbdb334043e in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7fbdb32c629e in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x7fbdb6718bec in smb_panic ()
#3  0x7fbdb6463be6 in ?? ()
#4  0x7fbdb6463f0f in set_sec_ctx ()
#5  0x7fbdb6452db5 in ?? ()
#6  0x7fbdb647ae2b in ?? ()
#7  0x7fbdb647b76e in ?? ()
#8  0x7fbdb647baea in make_connection ()
#9  0x7fbdb642c82c in reply_tcon_and_X ()
#10 0x7fbdb6476fa4 in ?? ()
#11 0x7fbdb64773bb in ?? ()
#12 0x7fbdb64777d3 in ?? ()
#13 0x7fbdb67288ae in run_events_poll ()
#14 0x7fbdb6478f42 in smbd_process ()
#15 0x7fbdb698666f in ?? ()
#16 0x7fbdb67288ae in run_events_poll ()
#17 0x7fbdb6728a4a in ?? ()
#18 0x7fbdb67295d0 in _tevent_loop_once ()
#19 0x7fbdb63f7030 in main ()
A debugging session is active.

Inferior 1 [process 5294] will be detached.

Quit anyway? (y or n) [answered Y; input not from terminal]

** Affects: samba (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/1155146

Title:
  samba segfaults when LTS enablement stack is installed

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

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


[Bug 1155146] Re: samba segfaults when LTS enablement stack is installed

2013-03-14 Thread Tim Edwards
$ apt-cache policy samba
samba:
  Installed: 2:3.6.3-2ubuntu2.3
  Candidate: 2:3.6.3-2ubuntu2.3
  Version table:
 *** 2:3.6.3-2ubuntu2.3 0
500 http://localhost/ubuntu/ precise-updates/main amd64 Packages
100 /var/lib/dpkg/status
 2:3.6.3-2ubuntu2.1 0
500 http://localhost/ubuntu/ precise-security/main amd64 Packages
 2:3.6.3-2ubuntu2 0
500 http://localhost/ubuntu/ precise/main amd64 Packages


Linux localhost 3.5.0-25-generic #39~precise1-Ubuntu SMP Tue Feb 26 00:07:14 
UTC 2013 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/1155146

Title:
  samba segfaults when LTS enablement stack is installed

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

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


[Bug 1088829] Re: 8086:1e31 USB devices not detected in USB 3.0 ports

2013-03-14 Thread Tim Edwards
It would be really appreciated if someone could backport this to the
3.2.0 kernel series which the LTS is based on.

For me the LTS Enablement Stack is buggy - samba segfaults continuously
when running under the 3.5 Quantal kernel and Steam client is broken due
to a dependency problem caused by the newer xorg packages (I've raised
bugs about both).

If the answer to problems in LTS now going to be 'upgrade to the LTS
Enablement stack' it really breaks the stability of an LTS release.

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

Title:
  8086:1e31 USB devices not detected in USB 3.0 ports

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

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


[Bug 833058] Re: Muon-updater doesn't ask for password

2012-12-28 Thread Tim Edwards
Rosemary what do the following commands output on your system?:
dpkg -l | grep polkit-kde
cat /etc/os-release

The bug should be fixed in 12.10 and possibly also in the 12.04.1
release.

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

Title:
  Muon-updater doesn't ask for password

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

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


[Bug 971061] Re: acpi reports battery state incorrectly

2012-12-14 Thread Tim Edwards
Ok, you have a different model to mine which explains why I couldn't
find the firmware version you mentioned :)

I have the NP530U3C and as it currently stands the best workaround for this 
problem for me is:
- shutdown the laptop
- insert a pin or staple into the little hole on the bottom of the laptop to 
shut off power from the battery
- Then plug the laptop into the power and re-start it

After that the ACPI detection of battery state and whether the AC
adapter is plugged in or not works perfectly in Ubuntu, but eventually
stops working again after a few suspend/resume cycles.

Really annoying but not enough to stop me using the laptop.

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

Title:
  acpi reports battery state incorrectly

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

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


[Bug 971061] Re: acpi reports battery state incorrectly

2012-12-04 Thread Tim Edwards
Paolo can you give us the link where that firmware can be downloaded
from? When did you update to that firmware?

When I go to the Samsung website the most recent firmware I see
available is from May 2012. I tried with the 12.10 live CD on this
system but also no luck.

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

Title:
  acpi reports battery state incorrectly

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

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


[Bug 1066480] Re: Installer doesn't show encrypted partitions

2012-12-03 Thread Tim Edwards
Good to see that this bug is being worked on for 13.04, when I commented
it looked like the bug was closed completely with a fix of 'look in the
release notes'. Better than nothing but not really a fix for the
installer telling me my partitions are unreadable when the 12.04 and
previous alternate installer can read them fine.

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

Title:
  Installer doesn't show encrypted partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1066480/+subscriptions

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


[Bug 1066480] Re: 12.10 installer don't show encrypted partitions

2012-10-19 Thread Tim Edwards
Is there any way the regression can be fixed? As has already been
pointed out this worked fine with the Alternate CD image installer - you
just had to select 'activate existing partitions', enter your password
and they were all there in the partitioner.

It seems very user-unfriendly that someone who uses encrypted partitions
(something that IMHO should be encouraged) will have the installer tell
them the only way to install is to delete all their data. Having the
workaround in the release notes is good but doesn't fix the problem -
it's a very frustrating user experience having to search forums and
release notes.

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

Title:
  12.10 installer don't show encrypted partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1066480/+subscriptions

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


[Bug 923876] Re: FR: Limit and clean-up kernel images and headers automatically in LTS

2012-09-25 Thread Tim Edwards
I think this is being worked on for quantal, see
https://blueprints.launchpad.net/ubuntu/+spec/desktop-q-clean-old-
kernels

In the meantime here's a script that calls apt-get to remove all but the
current kernel and the 1 most recent before that.

** Attachment added: removeoldkernels.sh
   
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/923876/+attachment/3340659/+files/removeoldkernels.sh

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

Title:
  FR: Limit and clean-up kernel images and headers automatically in LTS

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

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


[Bug 1028151] Re: Samsung Series 900 Laptop brightness control issue (heavy flickering)

2012-09-21 Thread Tim Edwards
@Alexander: Ubuntu should automatically prompt you to install the update
once it's pushed out, just like normal. If this doesn't happen for some
reason run Update Manager from the menu.

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

Title:
  Samsung Series 900 Laptop brightness control issue (heavy flickering)

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

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


[Bug 1028151] Re: Samsung Series 900 Laptop brightness control issue (heavy flickering)

2012-09-11 Thread Tim Edwards
Great work on the fix! I can confirm it works for me on a Samsung
NP530U3C Ultrabook.

The kernel is the one from proposed:
3.2.0-31-generic #50-Ubuntu SMP Fri Sep 7 16:16:45 UTC 2012 x86_64 x86_64 
x86_64 GNU/Linux

tim@t:~$ dpkg -l linux
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  linux  3.2.0.31.34Generic complete Linux kernel.


Please push this fix out with the next update!

** Tags removed: verification-needed-precise
** Tags added: verification-done-precise

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

Title:
  Samsung Series 900 Laptop brightness control issue (heavy flickering)

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

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


[Bug 1028151] Re: Samsung Series 900 Laptop brightness control issue (heavy flickering)

2012-09-04 Thread Tim Edwards
Can you tell me what kernel version the fix is in? I'm currently on
3.2.0-29, will this come through in an update to 3.2.0-30?

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

Title:
  Samsung Series 900 Laptop brightness control issue (heavy flickering)

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

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


[Bug 971061] Re: acpi reports battery state incorrectly

2012-08-26 Thread Tim Edwards
I can confirm this bug on a Samsung NP530U3C ultrabook. I can also
confirm the going into suspend and then waking the computer back up
results in it being able to show the percentage of battery charge left.

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

Title:
  acpi reports battery state incorrectly

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

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


[Bug 1041846] [NEW] Regression - screen brightness worked with kernel 3.2.0-23 but not with 3.2.0-29

2012-08-26 Thread Tim Edwards
Public bug reported:

When I originally installed Ubuntu 12.04 it came with kernel 3.2.0-23
and the screen brightness controls on my Samsung NP530U3C worked out-of-
the-box.

However after I applied the updates and rebooted into the latest kernel
(3.2.0-29) the screen brightness controls no longer work.

Symptoms:
Press screen brightness function keys to either increase or decrease brightness 
OR try changing the screen brightness in either KDE or GNOME with the 'slider' 
in the respective power management GUI programs

Expected Result and Result with kernel 3.2.0-23:
Screen brightness increases or decreases accordingly

Actual Result with kernel 3.2.0-29:
Screen flickers a bit but the brightness level seems 'stuck' and won't change.

Workaround:
The funny thing is that manipulating the /sys/class/backlight/acpi_video0 files 
directly works, so:
echo 47 | sudo tee /sys/class/backlight/acpi_video0/brightness # set brightness 
to approx 50% of the maximum
--- 
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
DistroRelease: Ubuntu 12.04
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
Package: acpi 1.6-1
PackageArchitecture: amd64
ProcEnviron:
 LANGUAGE=en_AU:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Tags:  precise
Uname: Linux 3.2.0-29-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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


** Tags: apport-collected precise

** Tags added: apport-collected precise

** Description changed:

  When I originally installed Ubuntu 12.04 it came with kernel 3.2.0-23
  and the screen brightness controls on my Samsung NP530U3C worked out-of-
  the-box.
  
  However after I applied the updates and rebooted into the latest kernel
  (3.2.0-29) the screen brightness controls no longer work.
  
  Symptoms:
  Press screen brightness function keys to either increase or decrease 
brightness OR try changing the screen brightness in either KDE or GNOME with 
the 'slider' in the respective power management GUI programs
  
  Expected Result and Result with kernel 3.2.0-23:
  Screen brightness increases or decreases accordingly
  
  Actual Result with kernel 3.2.0-29:
  Screen flickers a bit but the brightness level seems 'stuck' and won't change.
  
  Workaround:
  The funny thing is that manipulating the /sys/class/backlight/acpi_video0 
files directly works, so:
  echo 47 | sudo tee /sys/class/backlight/acpi_video0/brightness # set 
brightness to approx 50% of the maximum
+ --- 
+ ApportVersion: 2.0.1-0ubuntu12
+ Architecture: amd64
+ DistroRelease: Ubuntu 12.04
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
+ Package: acpi 1.6-1
+ PackageArchitecture: amd64
+ ProcEnviron:
+  LANGUAGE=en_AU:en
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_AU.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
+ Tags:  precise
+ Uname: Linux 3.2.0-29-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ 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/1041846

Title:
  Regression - screen brightness worked with kernel 3.2.0-23 but not
  with 3.2.0-29

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

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


[Bug 1041846] Dependencies.txt

2012-08-26 Thread Tim Edwards
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1041846/+attachment/3277678/+files/Dependencies.txt

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

Title:
  Regression - screen brightness worked with kernel 3.2.0-23 but not
  with 3.2.0-29

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

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


[Bug 1041846] Re: Regression - screen brightness worked with kernel 3.2.0-23 but not with 3.2.0-29

2012-08-26 Thread Tim Edwards
sudo lspci
00:00.0 Host bridge: Intel Corporation Ivy Bridge DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Ivy Bridge Graphics 
Controller (rev 09)
00:14.0 USB controller: Intel Corporation Panther Point USB xHCI Host 
Controller (rev 04)
00:16.0 Communication controller: Intel Corporation Panther Point MEI 
Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host 
Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio 
Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 
(rev c4)
00:1c.3 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 4 
(rev c4)
00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host 
Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller 
[AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)
01:00.0 Network controller: Intel Corporation Centrino Advanced-N 6235 (rev 24)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI 
Express Gigabit Ethernet controller (rev 06)

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

Title:
  Regression - screen brightness worked with kernel 3.2.0-23 but not
  with 3.2.0-29

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

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


[Bug 998200] Re: Wrong driver for GigE Net Cards RTL8111/8168B

2012-08-23 Thread Tim Edwards
I was having problems with the ethernet cable not being detected ('Cable
Unplugged' in NetworkManager even when the cable was plugged in) when
using the r8169 module. After installing the r8168-dkms Debian package
(comment #57) the problem is gone.

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

Title:
  Wrong driver for GigE Net Cards RTL8111/8168B

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

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


[Bug 978604] Re: Banshee/Rhythmbox regularly stop playing audio when left on in the background

2012-08-22 Thread Tim Edwards
I had the problem when using Banshee and the workaround I posted 3
months ago was to disable 'Gapless Playback' in Banshee settings. I've
just re-enabled that feature and retested and songs have played now for
around 40 mins without interruption.

So in other words I can't reproduce the bug now, I guess one of the
updates in the meantime has fixed it (for Banshee at least, I can't say
anything about people using other players).

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

Title:
  Banshee/Rhythmbox regularly stop playing audio when left on in the
  background

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

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


[Bug 833058] Re: Muon-updater doesn't ask for password

2012-06-14 Thread Tim Edwards
@a_flj
The original reporter of the bug posted in the first comment Installing 
polkit-kde-1 solves the issue, should polkit be added at least to Recommends?. 
The rest of the discussion was about how best to ensure polkit-kde-1 gets 
pulled in by dependencies.

From your 2nd comment it looks like you've got it fixed, but if you see
this problem even though polkit-kde-1 is installed I reckon you've hit a
new issue and need to open a new bug.

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

Title:
  Muon-updater doesn't ask for password

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

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


[Bug 700492] Re: ntp complains about ipv6 errors every 5 minutes

2012-06-13 Thread Tim Edwards
I can confirm that this bug is still present in 12.04 (new install, not
an upgrade).

The workaround is to add the following to the end of /etc/ntp.conf and restart 
ntp:
# Prevent it flooding syslog with error messages:
interface ignore ipv6

(assuming that you're on an IPv4 network)

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

Title:
  ntp complains about ipv6 errors every 5 minutes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/700492/+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 926001] Re: Acer Aspire 1551 laptop speakers don't mute when headphones pluggedin

2012-06-13 Thread Tim Edwards
This now works in 12.04 so this bug is closed

** Changed in: alsa-driver (Ubuntu)
   Status: New = Fix Released

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

Title:
  Acer Aspire 1551 laptop speakers don't mute when headphones pluggedin

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

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


[Bug 700492] Re: ntp complains about ipv6 errors every 5 minutes

2012-06-13 Thread Tim Edwards
I can confirm that this bug is still present in 12.04 (new install, not
an upgrade).

The workaround is to add the following to the end of /etc/ntp.conf and restart 
ntp:
# Prevent it flooding syslog with error messages:
interface ignore ipv6

(assuming that you're on an IPv4 network)

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

Title:
  ntp complains about ipv6 errors every 5 minutes

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

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


[Bug 978604] Re: Banshee/Rhythmbox regularly stop playing audio when left on in the background

2012-05-23 Thread Tim Edwards
I can confirm that disabling gapless playback  in Banshee settings
(untick Edit-Preferences-Enable gapless playback) also works around
the problem. The problem only happens when gapless playback is enabled.

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

Title:
  Banshee/Rhythmbox regularly stop playing audio when left on in the
  background

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

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


[Bug 638498] Re: debmirror ignores --getcontents

2012-05-18 Thread Tim Edwards
I've emailed mirr...@ubuntu.com as that's listed as the way to report
problems with the mirrors. I'll post here if I get a response from them.

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

Title:
  debmirror ignores --getcontents

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

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


[Bug 978604] Re: Banshee/Rhythmbox regularly stop playing audio when left on in the background

2012-05-12 Thread Tim Edwards
I can confirm this too on a clean install of 12.04 64-bit. My music collection 
is a mix of ogg (about 40%) and mp3 (the rest) and I see this message in syslog 
at the time the music stops:
May 12 11:52:07 triton pulseaudio[3004]: [alsa-sink] protocol-native.c: Failed 
to push data into queue

And I'm using banshee and not rhythmbox so I doubt this issue is related
to some bug in the player itself.

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

Title:
  Banshee/Rhythmbox regularly stop playing audio when left on in the
  background

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

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


[Bug 833058] Re: Muon-updater doesn't ask for password

2012-05-11 Thread Tim Edwards
pawmar if you're still having problems after polkit-kde-1 is installed I
think that's a separate bug.

The problems reported in this bug were all resolved once polkit-kde-1
installed - the bug (now fixed) was that that package was not installed
automatically with kubuntu-desktop.

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

Title:
  Muon-updater doesn't ask for password

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

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


[Bug 833058] Re: Muon-updater doesn't ask for password

2012-03-28 Thread Tim Edwards
I think the problem is that even with the 'fix' there is no hard
dependency on polkit-kde-1.

Let's look at it logically:
Muon is specifically designed to run on the desktops of unprivileged users and 
update their systems. To do that it needs root privileges and to get those it 
needs a mechanism to ask the user to authorise it to run as root.

Therefore having polkit-kde-1 installed is necessary for Muon to
function properly, so it should be a hard dependency not a 'recommends'
or anything else.

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

Title:
  Muon-updater doesn't ask for password

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

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


[Bug 833058] Re: Muon-updater doesn't ask for password

2012-03-28 Thread Tim Edwards
Ok I didn't realise it was that complicated. In my case I install a
'Kubuntu' system by first installing Ubuntu and then installing the
kubuntu-desktop metapackage, since I want to have all the config tools
that come with Ubuntu and I find some of the GTK apps better than any
QT-based alternative (GIMP, Firefox, Libreoffice etc.).

So if kubuntu-desktop always installed polkit-kde-1 like you suggest
this should be enough to solve the problem for me, and for most people I
guess. But that wasn't the case with 11.10 when I installed it a few
months ago.

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

Title:
  Muon-updater doesn't ask for password

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

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


[Bug 919724] Re: rereading metadata from files stuck at 0% progress

2012-02-18 Thread Tim Edwards
** Bug watch added: KDE Bug Tracking System #282925
   http://bugs.kde.org/show_bug.cgi?id=282925

** Also affects: digikam via
   http://bugs.kde.org/show_bug.cgi?id=282925
   Importance: Unknown
   Status: Unknown

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

Title:
  rereading metadata from files stuck at 0% progress

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

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


[Bug 933015] Re: Please sync unison-2.40.63-2 from debian sid main

2012-02-16 Thread Tim Edwards
Thanks, I'm new to this so wasn't sure how to check the patches

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

Title:
  Please sync unison-2.40.63-2 from debian sid main

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

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


  1   2   >