[Bug 1907878] Re: wrong var declaration in if-up.d/resolved (nm-dispatcher[54417]: /etc/network/if-up.d/resolved: 12: mystatedir: not found)

2022-03-25 Thread Wladimir J. van der Laan
FWIW this is still a problem as of Ubuntu 22.04. I'm aware that using
/etc/network is deprecated in favor of netplan, I guess that's why the
script can stay in a broken state for so long. I'll be looking at
porting my configuration to that.

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

Title:
  wrong var declaration in if-up.d/resolved (nm-dispatcher[54417]:
  /etc/network/if-up.d/resolved: 12: mystatedir: not found)

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


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

[Bug 1896937] Re: Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

2020-09-26 Thread Wladimir J. van der Laan
The issue has been resolved (after making sure the libvirt profile is
loading correctly again), thanks! Can be closed.

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

Title:
  Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

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

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

[Bug 1896937] Re: Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

2020-09-25 Thread Wladimir J. van der Laan
Thanks!

Right. Libvirt's apparmor wasn't in enforce mode. It didn't even load
the profile for it. Arrarmor is enabled but only enforcing for a few
things such as dhclient.

The "systemctl status apparmor.service" showed that the profile for libvirt 
wasn't loaded at all because a "/etc/apparmor.d/local/..libvirt.." file was 
missing. I was not sure what to do so created an empty file.
That made the apparmor profile load green, at least.

The "error: unsupported configuration: Security driver model 'apparmor'
is not available" did not go away, however.

Unfortunately the power supply of the machine broke (I hope this is
unrelated) so I'll likely only be able to investigate this further next
week.

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

Title:
  Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

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

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

[Bug 1896937] Re: Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

2020-09-24 Thread Wladimir J. van der Laan
I've just noticed a "Failed to start Load AppArmor profiles." "See
'systemctl status apparmor.service' for details."  error at startup. I
suspect it may be related. Will investigate.

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

Title:
  Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

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

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

[Bug 1896937] [NEW] Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

2020-09-24 Thread Wladimir J. van der Laan
Public bug reported:

This configuration seems to no longer work after upgrading a machine
from Ubuntu 18.04 to Ubuntu 20.04:



When starting a domain with this configuration in the XML definition,
the following error appears and the domain fails to start:

error: unsupported configuration: Security driver model 'apparmor'
is not available

Is this to be expected? I wouldn't expect this on first glance because
the apparmor profiles are still included:

$ dpkg -S /etc/apparmor.d/usr.sbin.libvirtd
libvirt-daemon-system: /etc/apparmor.d/usr.sbin.libvirtd
$ apt-cache policy libvirt-daemon-system
libvirt-daemon-system:
  Installed: 6.0.0-0ubuntu8.3
  Candidate: 6.0.0-0ubuntu8.3
$ apt-cache policy libvirt-daemon
libvirt-daemon:
  Installed: 6.0.0-0ubuntu8.3
  Candidate: 6.0.0-0ubuntu8.3
$ apt-cache policy apparmor
apparmor:
  Installed: 2.13.3-7ubuntu5.1
  Candidate: 2.13.3-7ubuntu5.1

Files like /etc/apparmor.d/libvirt/TEMPLATE.qemu definitely do exist.

Am I missing something, is this a driver I need to install separately?

** Affects: libvirt (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/1896937

Title:
  Error with seclabel "apparmor" since upgrading from 18.04 to 20.04

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

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

[Bug 1853740] [NEW] gcc-8-riscv64-linux-gnu produces binaries with executable stack by default

2019-11-24 Thread Wladimir J. van der Laan
Public bug reported:

The gcc 8 RISC-V cross-compiler on Ubuntu 18.04, in contrast to other
architectures such as ARM and x86, does not use noexecstack by default.

$ riscv64-linux-gnu-gcc-8 --version
'riscv64-linux-gnu-gcc-8 (Ubuntu 8.3.0-6ubuntu1~18.04.1) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ echo "int main() { return 0; }" > test.c
$ riscv64-linux-gnu-gcc-8 test.c -o test
$ readelf -lW test|grep GNU_STACK
(no output)

Expected output:

  GNU_STACK  0x00 0x 0x 0x00
0x00 RW  0x10

$ riscv64-linux-gnu-gcc-8 test.c -c -o test.o
$ scanelf -e test.o
 TYPE   STK/REL/PTL FILE 
ET_REL !WX --- --- test.o

Expected output:

 TYPE   STK/REL/PTL FILE 
ET_REL --- --- --- test.o

$ riscv64-linux-gnu-gcc-8 test.c -o test

I've checked with the RISC-V toolchain on Fedora, and that does set the
correct GNU_STACK permissions.

So I don't think this is expected behavior, and might result in cross-
compiled executables being less hardened than expected.

As a workaround, `-Wl,-z,noexecstack` can be passed to the linker, or
`-Wa,-noexecstack` to gcc.

** Affects: gcc-8-cross-ports (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/1853740

Title:
  gcc-8-riscv64-linux-gnu produces binaries with executable stack by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-8-cross-ports/+bug/1853740/+subscriptions

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

[Bug 1803924] Re: Gimp conflict with MyPaint

2019-04-27 Thread Wladimir J. van der Laan
Same issue here on Ubuntu 18.04
I guess it's time for me to check out the snap system if I want to use both 
applications

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

Title:
  Gimp conflict with MyPaint

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

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

[Bug 1752938] Re: Upgrading Ubuntu 18.04 disables GPU hardware acceleration

2018-05-30 Thread Wladimir J. van der Laan
For me, "apt-get remove libnvidia-gl-390" solved it. No idea how it came
to be installed, but for some reason the active EGL driver was nvidia,
and that interfered with the X start sequence.

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

Title:
  Upgrading Ubuntu 18.04 disables GPU hardware acceleration

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

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

[Bug 1752938] Re: Upgrading Ubuntu 18.04 disables GPU hardware acceleration

2018-05-29 Thread Wladimir J. van der Laan
Same problem here. After upgrading my laptop from Lubuntu 16.04 to
Lubuntu 18.04, there is no hardware acceleration anymore. AMD STONEY was
perfectly capable of this on the older release.

glxinfo shows:
OpenGL renderer string: llvmpipe (LLVM 6.0, 128 bits)

/var/log/Xorg.0.log shows:

[16.679] (EE) AMDGPU(0): eglGetDisplay() failed
[16.679] (EE) AMDGPU(0): glamor detected, failed to initialize EGL.
[16.685] (==) AMDGPU(0): DRI3 disabled
...
[16.692] (II) AIGLX: Screen 0 is not DRI2 capable
[16.692] (EE) AIGLX: reverting to software rendering
[16.699] (II) IGLX: enabled GLX_MESA_copy_sub_buffer
[16.700] (II) IGLX: Loaded and initialized swrast
[16.700] (II) GLX: Initialized DRISWRAST GL provider for screen 0

Nothing in the kernel log indicates that there is a problem with the
amdgpu driver.

Tried creating a xorg.conf and forcing DRI to 3, but no dice.

LIBGL_ALWAYS_SOFTWARE is not set, there is no
/etc/X11/Xsession.d/50_check_unity_support, so it's probably not bug
#1767468.

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

Title:
  Upgrading Ubuntu 18.04 disables GPU hardware acceleration

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

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

[Bug 1609772] [NEW] python-z3 package doesn't work, can't import z3

2016-08-04 Thread Wladimir J. van der Laan
Public bug reported:

I installed python-z3 but was unable to use it. I cannot import `z3`
module in my python interpreter:

$ python2.7
Python 2.7.12 (default, Jul  1 2016, 15:12:24) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from z3 import *
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named z3

The .py and .pyc files are installed to /usr/lib/python2.7/dist-
packages/z3. I do note that there is no __init__.py to mark the
directory as a package. I don't think that would be right. The usual way
to install them seems to be to put z3*.py at top level.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: python-z3 4.4.0-5
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Aug  4 14:12:09 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2011-01-29 (2013 days ago)
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
SourcePackage: z3
UpgradeStatus: Upgraded to xenial on 2016-06-11 (53 days ago)

** Affects: z3 (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/1609772

Title:
  python-z3 package doesn't work, can't import z3

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

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


[Bug 1577835] [NEW] libclc missing support for Tonga

2016-05-03 Thread Wladimir J. van der Laan
Public bug reported:

Trying to run a basic OpenCL demo on a AMD Tonga series card on Ubuntu
16.04 gives:

$ ./hello 
Error: Failed to build program executable!
fatal error: cannot open file '/usr/lib/clc/tonga-amdgcn--.bc': No such file or 
directory

I have installed the appropriate icd packages and it reports fine:

1. Device: AMD TONGA (DRM 3.1.0, LLVM 3.8.0)
 1.1 Hardware version: OpenCL 1.1 MESA 11.2.0
 1.2 Software version: 11.2.0
 1.3 OpenCL C version: OpenCL C 1.1 
 1.4 Parallel compute units: 28

But it appears that a bitcode blob is missing. Looking in /usr/lib/clc/
there are other amdgcn-* blobs, but not for my card.

https://bugzilla.redhat.com/show_bug.cgi?id=1304903 is a similar issue.
I think it is resolved by upgrading libclc.

** Affects: libclc (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/1577835

Title:
  libclc missing support for Tonga

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

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


[Bug 1573689] [NEW] python3-opengl package is unusable, needs to be upgraded

2016-04-22 Thread Wladimir J. van der Laan
Public bug reported:

Python3-opengl in Ubuntu 14.04 but even Ubuntu 16.04 has two known
issues:

- Dependency order issue in Python 3.5, see
http://bugs.python.org/issue26245

- Compiling shaders fails: https://sourceforge.net/p/pyopengl/mailman
/pyopengl-users/thread/516cbab9.5060...@vrplumber.com/

Especially the second problem makes the version unusable. Both have been
fixed in the most recent version in pip, 3.1.0, so I hope the package
will be upgraded.

** Affects: pyopengl (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/1573689

Title:
  python3-opengl package is unusable, needs to be upgraded

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

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


[Bug 1501250] Re: double clicking on a URL drops the protocol from the URL

2016-03-01 Thread Wladimir J. van der Laan
Not sure whether this is a bug, but I liked the previous behavior.

Though I didn't know that there was a "Copy Link Address" feature in the
right-click menu, will just get used to that, thanks Egmont.

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

Title:
  double clicking on a URL drops the protocol from the URL

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

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


[Bug 1416793] Re: ifquery segfaults if /run/network/ifstate file is not found

2016-02-27 Thread Wladimir J. van der Laan
(this is with the Ubuntu cloud image, networking is working fine BTW,
apart from the error message I don't think anything is wrong)

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

Title:
  ifquery segfaults if /run/network/ifstate file is not found

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

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


[Bug 1416793] Re: ifquery segfaults if /run/network/ifstate file is not found

2016-02-27 Thread Wladimir J. van der Laan
I have a similar, but different segfault at VM startup in ifquery with
Ubuntu 15.10:

[4.184292] ifquery[392]: segfault at 0 ip 7feb81430b10 sp
7ffd18d03388 error 4 in libc-2.21.so[7feb813a5000+1c]

addr2line -aipfC -e /lib/x86_64-linux-gnu/libc-2.21.so 0x8bb10
0x0008bb10: strncmp at ??:?

So it segfaults in a string comparison somewhere. Unfortunately, as I
can't reproduce it besides the startup process, I don't have more of a
traceback.

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

Title:
  ifquery segfaults if /run/network/ifstate file is not found

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

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


[Bug 1037607] Re: vmbuilder completely fails on Quantal due to kernel pae detection failure

2015-11-07 Thread Wladimir J. van der Laan
Had this problem in Wily, creating a Trusty image.
--addpkg linux-image-generic solved the issue.

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

Title:
  vmbuilder completely fails on Quantal due to kernel pae detection
  failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1037607/+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 1037607] Re: vmbuilder completely fails on Quantal due to kernel pae detection failure

2015-11-07 Thread Wladimir J. van der Laan
Had this problem in Wily, creating a Trusty image.
--addpkg linux-image-generic solved the issue.

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

Title:
  vmbuilder completely fails on Quantal due to kernel pae detection
  failure

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

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


[Bug 1436405] Re: Duplicate menu (both unity and in-app) for Qt apps

2015-11-03 Thread Wladimir J. van der Laan
I have the same issue on Ubuntu Wily, with quasselclient, a Qt5
application.

The menu shows both in the global app menu and at the top of the window.

When I start using "UBUNTU_MENUPROXY=0 quasselclient", the menu will
only show in the window but not the global menu area.

However I'd prefer the opposite, only the global menu showing.

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

Title:
  Duplicate menu (both unity and in-app) for Qt apps

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

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


[Bug 1506017] Re: TALOS-2015-0035 (CVE-2015-6031)

2015-10-21 Thread Wladimir J. van der Laan
Awesome!

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

Title:
  TALOS-2015-0035 (CVE-2015-6031)

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

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


[Bug 1350362] [NEW] Freqtweak Jack input selection fails (patch included)

2014-07-30 Thread Wladimir J. van der Laan
Public bug reported:

When trying to select an input (or output) jack port in Freqtweak's GUI,
nothing happens. An obscure message is logged to the console with a
corrupted string instead of the port name.

The reason for this is a bug in the software when using wxWindows. The
result of wxString::mb_str() is stored in an array, which is not allowed
as the returned pointer is only valid for a very short time.

** Affects: freqtweak (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/1350362

Title:
  Freqtweak Jack input selection fails (patch included)

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

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


[Bug 1350362] Re: Freqtweak Jack input selection fails (patch included)

2014-07-30 Thread Wladimir J. van der Laan
** Patch added: 0001-Fix-jack-port-selection.patch
   
https://bugs.launchpad.net/ubuntu/+source/freqtweak/+bug/1350362/+attachment/4165810/+files/0001-Fix-jack-port-selection.patch

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

Title:
  Freqtweak Jack input selection fails (patch included)

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

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


[Bug 1309025] Re: systemd-logind assert failure: cgmanager-client.c:6322: Assertion failed in cgmanager_list_children_sync: proxy != NULL

2014-06-09 Thread Wladimir J. van der Laan
I had this problem as well as startup (14.04 upgraded from old version, 10.04).
Purged cgroup-lite and it was solved.

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

Title:
  systemd-logind assert failure: cgmanager-client.c:6322: Assertion
  failed in cgmanager_list_children_sync: proxy != NULL

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

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


[Bug 1026359]

2012-08-26 Thread Wladimir J. van der Laan
I also noticed this problem with latest SVN build (r162623) on Ubuntu
12.04. LLVMgold.so was not linked to libLTO.so, which caused problems
when using it:

/usr/bin/ld: error: /opt/clang/bin/../lib/LLVMgold.so: could not
load plugin library: /opt/clang/bin/../lib/LLVMgold.so: undefined
symbol: lto_codegen_add_must_preserve_symbol

Using the above patch solved the problem.

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

Title:
  clang -O4 -use-gold-plugin fails (LLVMgold.so: undefined symbol:
  lto_codegen_compile_to_file)

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

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


[Bug 932958] Re: Some characters too wide with default fixed-with font

2012-08-16 Thread Wladimir J. van der Laan
Yes this is clearly visible if you try to run, for example, Dwarf Fortress in 
console mode.
For example the smileys used for the dwarves themselves ☺ are almost two 
characters wide in gnome-terminal with the default font.

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

Title:
  Some characters too wide with default fixed-with font

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

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

[Bug 766882] Re: [apparmor] evince need access to /dev/.udev/data/b

2012-05-07 Thread Wladimir J. van der Laan
Regressed for me (on Oneiric):

[  153.236490] type=1400 audit(1336382759.333:995): apparmor=DENIED
operation=open parent=2367 profile=/usr/bin/evince
name=/run/udev/data/b8:17 pid=3398 comm=evince requested_mask=r
denied_mask=r fsuid=1000 ouid=0

I had to add to /etc/apparmor.d/abstractions/evince:

/run/udev/data/* r,

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

Title:
  [apparmor] evince need access to /dev/.udev/data/b

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

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


[Bug 811441] Re: Unable to connect to the system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: Connection refused (oneiric)

2011-11-13 Thread Wladimir J. van der Laan
*** This bug is a duplicate of bug 858122 ***
https://bugs.launchpad.net/bugs/858122

Solution #24 just solved my boot issues with Oneiric, which had just
appeared. Thanks a lot!

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

Title:
  Unable to connect to the system bus: Failed to connect to socket
  /var/run/dbus/system_bus_socket: Connection refused (oneiric)

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

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


[Bug 555262] Re: Rhythmbox blocks pendrives from mounting

2010-08-27 Thread Wladimir J. van der Laan
I've got the same issue with my Philips AMBX set. (Ubuntu Lucid,
2.6.32-24-generic)

[566420.513041] usb 2-3: USB disconnect, address 29
[566423.024017] usb 2-3: new full speed USB device using ohci_hcd and address 30
[566423.245236] usb 2-3: configuration #1 chosen from 1 choice
[566423.259271] usb 2-3: USB disconnect, address 30
[566423.260296] usb 2-3: usbfs: USBDEVFS_CONTROL failed cmd rhythmbox rqt 128 
rq 6 len 1024 ret -108

And it keeps connecting/disconnecting in a loop. Disabling the Rhythmbox
MTP plugin solved the issue.

-- 
Rhythmbox blocks pendrives from mounting
https://bugs.launchpad.net/bugs/555262
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 293946] Re: realtek rtl8187 weak signal, occasional slow performance

2010-08-26 Thread Wladimir J. van der Laan
*** This bug is a duplicate of bug 215802 ***
https://bugs.launchpad.net/bugs/215802

Also having this problem, with a Alfa 54G USB stick on Ubuntu 10.04 (Karmic)
Bus 001 Device 005: ID 0bda:8187 Realtek Semiconductor Corp. RTL8187 Wireless 
Adapter

-- 
realtek rtl8187 weak signal, occasional slow performance
https://bugs.launchpad.net/bugs/293946
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215802] Re: rtl8187 link quality poor

2010-08-26 Thread Wladimir J. van der Laan
Also having this problem, with a Alfa 54G USB stick on Ubuntu 10.04
(Karmic)

Bus 001 Device 005: ID 0bda:8187 Realtek Semiconductor Corp. RTL8187
Wireless Adapter

The connection becomes very slow after a while (due to packet loss). I'm now 
trying the rate 'workaround'
After re-associating to the network, everything is fine again, for a while.  
The time after which the problem occurs seems to depend on the network load.

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

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


[Bug 581814] [NEW] More compact theme for Firefox on UNO

2010-05-17 Thread Wladimir J. van der Laan
Public bug reported:

Binary package hint: firefox

The default theme of Firefox on Ubuntu Netbook edition starts with a
(relatively) huge menubar, bookmarks bar, tabs bar, and status bar. On
my Netbook, this takes up a lot of 'valuable vertical space' while
browsing. Also, a lot of this is empty space and 'niceness' in the form
of big icons.

Have you considered setting the theme to something like Classic Compact
Theme ( https://addons.mozilla.org/en-US/firefox/addon/3699/ ) by
default?

** Affects: firefox (Ubuntu)
 Importance: Undecided
 Status: Invalid


** Tags: compact firefox netbook screenbloat theme uno

-- 
More compact theme for Firefox on UNO
https://bugs.launchpad.net/bugs/581814
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578733] Re: no way to change username for ssh tunneling

2010-05-15 Thread Wladimir J. van der Laan
Agree, I got this wrong as well the first time. In my case, it didn't even show 
what the error was (not providing the xxx@ username) but a generic could not 
connect to SSH tunnel.
When I provided u...@host instead of just the host it went fine.
I vote for a separate remote user field or a GUI-based warning when trying to 
save settings without entering a username.

-- 
no way to change username for ssh tunneling
https://bugs.launchpad.net/bugs/578733
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 296867] Re: empathy needs to support OTR encryption

2010-05-15 Thread Wladimir J. van der Laan
In these times, end-to-end encryption is really a must. Even Google,
with switching to https, is starting to realize that security is
paramount. I find it shocking to read that this is lacking in the Ubuntu
default client.

-- 
empathy needs to support OTR encryption
https://bugs.launchpad.net/bugs/296867
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 580175] [NEW] Gradient editor in Inkscape starts in maximized unusable mode on UNE

2010-05-13 Thread Wladimir J. van der Laan
Public bug reported:

Binary package hint: inkscape

I'm trying to use Inkscape on my netbook using Ubuntu Netbook Editor.
This works, but when editing fill style and opening the gradient editor,
the gradient editor maximizes to full screen size without any controls
at all (not in the 'title bar' either, see attached screen shot). It is
very hard to close it and get back to Inkscape, the only way it seems
possible is to use Alt-Move window and then get to the close 'X'.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: inkscape 0.47.0-2ubuntu2
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
Architecture: i386
Date: Thu May 13 21:50:07 2010
EcryptfsInUse: Yes
InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Release i386 (20100429.4)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: inkscape

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


** Tags: apport-bug i386 lucid ubuntu-une

-- 
Gradient editor in Inkscape starts in maximized unusable mode on UNE
https://bugs.launchpad.net/bugs/580175
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 580175] Re: Gradient editor in Inkscape starts in maximized unusable mode on UNE

2010-05-13 Thread Wladimir J. van der Laan

** Attachment added: Screenshot of gradient editor
   http://launchpadlibrarian.net/48409146/Screenshot.png

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/48407813/Dependencies.txt

-- 
Gradient editor in Inkscape starts in maximized unusable mode on UNE
https://bugs.launchpad.net/bugs/580175
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 580175] Re: Gradient editor in Inkscape starts in maximized unusable mode on UNE

2010-05-13 Thread Wladimir J. van der Laan
Oops, seems this bug is a duplicate or at least extension of bug #448679
.

-- 
Gradient editor in Inkscape starts in maximized unusable mode on UNE
https://bugs.launchpad.net/bugs/580175
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 334122] Re: Mobile broadband connections fail to connect

2009-11-20 Thread Wladimir J. van der Laan
Mobile broadband doesn't work for me; I get no visual confirmation, and
in the syslog the following appears:

Nov 20 18:22:27 phosphor NetworkManager: WARN  
user_connection_get_settings_cb(): user_connection_get_settings_cb: Invalid 
connection: 'NMSettingSerial' / '(null)' invalid: 3
Nov 20 18:22:38 phosphor NetworkManager: WARN  wait_for_connection_expired(): 
Connection (2) /org/freedesktop/NetworkManagerSettings/1 failed to activate 
(timeout): (0) Connection was not provided by any settings service

It seems it wants a serial port, but I have no idea how to set one.
There is no option for this in the GUI.

-- 
Mobile broadband connections fail to connect
https://bugs.launchpad.net/bugs/334122
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-networkmanagement in ubuntu.

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


[Bug 417757] Re: [karmic regression] all network apps / browsers suffer from multi-second delays by default due to IPv6 DNS lookups

2009-11-16 Thread Wladimir J. van der Laan
I have the same problem with my WRT54G router. I know this is a bug in
the firmware not in Linux, but I do see this as a regression simply
because I did not have the problem before.  I simply don't need IPV6
yet, when I do, I'll think about upgrading my routers.

I now worked around it by installing the pdns-precursor, and setting
127.0.0.1 as DNS, but It would be very nice if a user-friendly
workaround was added. Also, I can't use the internal DHCP-to-DNS
functionality of my router anymore.

-- 
[karmic regression] all network apps / browsers suffer from multi-second delays 
by default due to IPv6 DNS lookups
https://bugs.launchpad.net/bugs/417757
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 123499] Re: pstoedit stucks on converting from eps to svg in gutsy

2009-09-10 Thread Wladimir J. van der Laan
Andrew King his solution works; but only after I had re-installed(!)
libplot2c2 and libplot-dev. Seems there was some strange dependency
issue.

-- 
pstoedit stucks on converting from eps to svg in gutsy
https://bugs.launchpad.net/bugs/123499
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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