[Bug 2073749] [NEW] Minor typo in 'usage' text (flag -H)

2024-07-22 Thread Martijn Straathof
Public bug reported:

When running tree --help, or any other way of displaying the 'usage'
text, there is a small typo with the -H flag.

The flag [-H  baseHREF] contains two spaces instead of one. This is an
extremely minor bug, but I still wanted to report it.

Tested on: 
 - Ubuntu 24.04.4 LTS running from WSL on Windows 11 (running inside a Hyper-V 
container)
 - Tree version 2.0.2-1

** Affects: tree (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/2073749

Title:
  Minor typo in 'usage' text (flag -H)

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


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

[Bug 1972897] [NEW] redirect seen as error

2022-05-10 Thread Martijn Lievaart
Public bug reported:

NOTE: this bug report is for the package iputils-ping, but the website did not 
let me enter that:
$ dpkg-query -S /bin/ping
iputils-ping: /bin/ping
$ dpkg-query -l iputils-ping
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   Version  Architecture Description
+++-==---===
ii  iputils-ping   3:20211215-1 amd64Tools to test the reachability of 
network hosts
$

This is on 22.04 (Jammy Jellyfish), but the bug is also present in 20.04
(Focal Fossa)


The deadline option is documented to exit on receiving an ICMP error:

   -w deadline
   Specify a timeout, in seconds, before ping exits regardless of how 
many packets have been sent or received. In this case ping does not stop after 
count packet are sent, it waits
   either for deadline expire or until count probes are answered or for 
some error notification from network.

However, it exits too when a redirect is received, which is not an
error. This make it useless for liveness probes when a redirect occurs.


$ ping -w 2 strange.soleus.nu
PING strange.soleus.nu (94.142.246.148) 56(84) bytes of data.
From hv02.rtij.nl (10.0.2.4) icmp_seq=1 Redirect Host(New nexthop: lte.rtij.nl 
(10.0.0.137))

--- strange.soleus.nu ping statistics ---
1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms
$

Note that the -c  option suffers from the same problem.

This does not happen in 18.04 (Bionic Beaver), which shows the expected
behaviour:

martijn@popeye:~$ ping -w 2 strange.soleus.nu
PING strange.soleus.nu (94.142.246.148) 56(84) bytes of data.
From hv02.rtij.nl (10.0.2.4): icmp_seq=1 Redirect Host(New nexthop: lte.rtij.nl 
(10.0.0.137))
64 bytes from strange.soleus.nu (94.142.246.148): icmp_seq=1 ttl=53 time=47.9 ms

--- strange.soleus.nu ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 47.908/47.908/47.908/0.000 ms
martijn@popeye:~$ grep VERSION /etc/os-release
VERSION="18.04.6 LTS (Bionic Beaver)"
VERSION_ID="18.04"
VERSION_CODENAME=bionic
martijn@popeye:~$ dpkg-query -S /bin/ping
iputils-ping: /bin/ping
martijn@popeye:~$

** Affects: iputils (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/1972897

Title:
  redirect seen as error

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


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

[Bug 1926139] Re: dhclient doesn't receive dhcp offer from kernel

2021-04-26 Thread Martijn van Duren
** Description changed:

  Platform: Qemu/libvirt on AMD64
  Ubuntu version: 20.04
  isc-dhcp-client version: 4.4.1-2.1ubuntu5
  Problem: When dhclient is used during boot every few reboots the DHCP OFFER 
packets aren't pushed from the kernel to dhclient. The DISCOVER packets can be 
seen in strace and tcpdump. The OFFER packets can be seen in tcpdump, but no 
read event is triggered.
  Ubuntu 18.04 doesn't have the problem, neither does Debian 10. Building these 
dhclient versions on Ubuntu 20.04 alleviates the problem a little, but it still 
occurs. So this issue might also be kernel related.
  
  Attached diff shows a strace of all threads and a pcap showing the
  tcpdump output.
+ 
+ Edit:
+ - Sometimes the dhclient command does receive the OFFER packet and connection 
is restored.
+ - In my testing running dhclient manually from the terminal when the OFFERs 
aren't received will result in a new dhclient session which does receive the 
OFFER packet and connection is restored.

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

Title:
  dhclient doesn't receive dhcp offer from kernel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1926139/+subscriptions

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

[Bug 1926139] [NEW] dhclient doesn't receive dhcp offer from kernel

2021-04-26 Thread Martijn van Duren
Public bug reported:

Platform: Qemu/libvirt on AMD64
Ubuntu version: 20.04
isc-dhcp-client version: 4.4.1-2.1ubuntu5
Problem: When dhclient is used during boot every few reboots the DHCP OFFER 
packets aren't pushed from the kernel to dhclient. The DISCOVER packets can be 
seen in strace and tcpdump. The OFFER packets can be seen in tcpdump, but no 
read event is triggered.
Ubuntu 18.04 doesn't have the problem, neither does Debian 10. Building these 
dhclient versions on Ubuntu 20.04 alleviates the problem a little, but it still 
occurs. So this issue might also be kernel related.

Attached diff shows a strace of all threads and a pcap showing the
tcpdump output.

** Affects: isc-dhcp (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "dhclient strace and pcap"
   
https://bugs.launchpad.net/bugs/1926139/+attachment/5492409/+files/dhcp.tar.bz2

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

Title:
  dhclient doesn't receive dhcp offer from kernel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1926139/+subscriptions

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

[Bug 1874957] Re: Ubuntu20.04 installation failed "Executing 'grub-install /dev/nvme0n1' failed"

2020-10-03 Thread Martijn Nieuwland
Same issue for me also installing dual boot.
MacBook Pro 2018 OS Catalina 10.15.7.

Has anybody found any workaround for this yet?

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

Title:
  Ubuntu20.04 installation failed "Executing 'grub-install /dev/nvme0n1'
  failed"

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

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

[Bug 1835678] Re: Installing Version .25 actually installs version .24

2020-04-23 Thread Martijn van Brummelen
Fixed in 0.28

** Changed in: nwipe (Ubuntu)
   Status: Fix Committed => 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/1835678

Title:
  Installing Version .25 actually installs version .24

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

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

[Bug 1865015] [NEW] hostname changed after end-user setup

2020-02-27 Thread Martijn Loinkje
Public bug reported:

After installing Ubuntu 18.04.1 LTS as OEM and changed the hostname using the 
setup everything looks fine. 
When I'm done configuring, I select "prepare for shipping to end user" and 
reboot the machine. The new user fills in their info BUT it shows an options to 
fill in the "Device name/Computer name/hostname" which I want to be static 
because they are based on their system serial number. 

Info/Devicename: 
{serial code}

hostname: 
{serial code}

cat /etc/hostname
{serial code}

cat /etc/hosts 
127.0.0.1   localhost
127.0.0.1   {serial code}

Reboot + end-user-config

cat /etc/hostname
{username}-{device model}

A machine should have a static default hostname independent of the user.
If a user wants to change it, they can do it by hostnamectl.

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


** Tags: hostname oem ubuntu

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

Title:
  hostname changed after end-user setup

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

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

[Bug 1841148] Re: Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2020-01-21 Thread Martijn Brinkers
It looks like the bug was reintroduced in release 4.15.0-71.80. If I
revert to version 4.15.0-70-generic the network connection is stable
again. With newer releases my network connection constantly drops
(similar to the initial bug report).

According to release notes for 4.15.0-71.80 some changes to e1000e were
applied:

 * Add Intel Comet Lake ethernet support (LP: #1848555)
- e1000e: Add support for Comet Lake

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

Title:
  Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and
  82579V using e1000e driver

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

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

[Bug 1849855] Re: bionic/linux: 4.15.0-68.77 -proposed tracker

2019-11-12 Thread Martijn
Any idea/ETA on when this kernel is going to be pushed to updates? This
release (or anything after 66) fixes a regression in 4.15.0-66 that
causes lots of issues for users of the CephFS kernel module.

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

Title:
  bionic/linux: 4.15.0-68.77 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1849855/+subscriptions

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

[Bug 1830226] Re: systemtap currently broken in xenial

2019-10-15 Thread Martijn
Installed the new package (2.9-2ubuntu2 --> 2.9-2ubuntu2.1) and can
confirm systemtap is now working again (Ubuntu Xenial)

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

Title:
  systemtap currently broken in xenial

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

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

[Bug 1801781] Re: Ubuntu Kickstart networking deprecated since v18.04+

2019-09-10 Thread Martijn Brinkers
Kickstart works with the non-GUI 18.04 installer (ubuntu-18.04.3-server-
amd64.iso)

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

Title:
  Ubuntu Kickstart networking deprecated since v18.04+

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/system-config-kickstart/+bug/1801781/+subscriptions

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

[Bug 1835678] Re: Installing Version .25 actually installs version .24

2019-09-05 Thread Martijn van Brummelen
Nwipe was version 0.25 but it did not show the correct version. Problem
is solved in version 0.26 which just uploaded to Debian Unstable

** Changed in: nwipe (Ubuntu)
   Status: Confirmed => Fix Committed

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

Title:
  Installing Version .25 actually installs version .24

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

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

[Bug 1841148] Re: Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2019-08-27 Thread Martijn Brinkers
I can confirm that Kernel 4.15.0-60.67 from bionic-proposed fixes the
Ethernet issue.

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

Title:
  Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and
  82579V using e1000e driver

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

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

[Bug 1841148] Re: Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2019-08-26 Thread Martijn Brinkers
I can confirm that the ethernet connection works with v5.3-rc6 mainline
build

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

Title:
  Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and
  82579V using e1000e driver

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

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

[Bug 1841148] Re: Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2019-08-26 Thread Martijn Brinkers
According to changelog for linux_4.15.0-58.64 the following changes were
applied for "Intel ethernet I219":

  * Intel ethernet I219 has slow RX speed (LP: #1836152)
- SAUCE: e1000e: add workaround for possible stalled packet
- SAUCE: e1000e: disable force K1-off feature

  * Intel ethernet I219 may wrongly detect connection speed as 10Mbps
(LP: #1836177)
- SAUCE: e1000e: Make watchdog use delayed work

http://changelogs.ubuntu.com/changelogs/pool/main/l/linux/linux_4.15.0-58.64/changelog

I cannot find kernel version 4.15.0-56 on 18.04. I do however assume
that these fixes are also included with 4.15.0-58.

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

Title:
  Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and
  82579V using e1000e driver

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

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

[Bug 1841148] Re: Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2019-08-23 Thread Martijn Brinkers
If I revert back to kernel 4.15.0-55-generic, the connection works
again.

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

Title:
  Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and
  82579V using e1000e driver

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

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

[Bug 1841148] [NEW] Kernel 4.15.0-58 breaks Intel Ethernet Connection for I219-V and 82579V using e1000e driver

2019-08-23 Thread Martijn Brinkers
Public bug reported:

Since linux-image-4.15.0-58-generic my ethernet connection fails to get
a connection.

The network connection constantly goes up and down. The issue has been
reported by another user:

https://bugzilla.kernel.org/show_bug.cgi?id=204591

Snippet from kern.log showing that the connection constantly goes up and
down:

Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134651] e1000e: enp0s31f6 
NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134830] /dev/vmnet: open 
called by PID 5847 (vmnet-bridge)
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134836] /dev/vmnet: hub 0 
does not exist, allocating memory.
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134858] /dev/vmnet: port on 
hub 0 successfully opened
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134868] bridge-enp0s31f6: up
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.134872] bridge-enp0s31f6: 
attached
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.334794] userif-2: sent link 
down event.
Aug 20 10:06:00 martijn-ThinkPad-P50 kernel: [ 2427.334801] userif-2: sent link 
up event.
Aug 20 10:06:01 martijn-ThinkPad-P50 kernel: [ 2428.156471] bridge-enp0s31f6: 
disabling the bridge on dev down
Aug 20 10:06:01 martijn-ThinkPad-P50 kernel: [ 2428.158580] bridge-enp0s31f6: 
down
Aug 20 10:06:01 martijn-ThinkPad-P50 kernel: [ 2428.158599] bridge-enp0s31f6: 
detached
Aug 20 10:06:01 martijn-ThinkPad-P50 kernel: [ 2428.356790] userif-2: sent link 
down event.
Aug 20 10:06:01 martijn-ThinkPad-P50 kernel: [ 2428.356795] userif-2: sent link 
up event.
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295365] e1000e: enp0s31f6 
NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295729] /dev/vmnet: open 
called by PID 5847 (vmnet-bridge)
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295741] /dev/vmnet: hub 0 
does not exist, allocating memory.
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295785] /dev/vmnet: port on 
hub 0 successfully opened
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295804] bridge-enp0s31f6: up
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.295810] bridge-enp0s31f6: 
attached
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.495615] userif-2: sent link 
down event.
Aug 20 10:06:08 martijn-ThinkPad-P50 kernel: [ 2435.495620] userif-2: sent link 
up event.
Aug 20 10:06:09 martijn-ThinkPad-P50 kernel: [ 2436.316505] bridge-enp0s31f6: 
disabling the bridge on dev down
Aug 20 10:06:09 martijn-ThinkPad-P50 kernel: [ 2436.316593] bridge-enp0s31f6: 
down
Aug 20 10:06:09 martijn-ThinkPad-P50 kernel: [ 2436.316607] bridge-enp0s31f6: 
detached
Aug 20 10:06:09 martijn-ThinkPad-P50 kernel: [ 2436.516761] userif-2: sent link 
down event.
Aug 20 10:06:09 martijn-ThinkPad-P50 kernel: [ 2436.516767] userif-2: sent link 
up event.
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.438729] e1000e: enp0s31f6 
NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.440433] /dev/vmnet: open 
called by PID 5847 (vmnet-bridge)
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.440439] /dev/vmnet: hub 0 
does not exist, allocating memory.
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.440466] /dev/vmnet: port on 
hub 0 successfully opened
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.440475] bridge-enp0s31f6: up
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.440479] bridge-enp0s31f6: 
attached
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.638884] userif-2: sent link 
down event.
Aug 20 10:06:14 martijn-ThinkPad-P50 kernel: [ 2441.638890] userif-2: sent link 
up event.
Aug 20 10:06:15 martijn-ThinkPad-P50 kernel: [ 2442.460451] bridge-enp0s31f6: 
disabling the bridge on dev down
Aug 20 10:06:15 martijn-ThinkPad-P50 kernel: [ 2442.461881] bridge-enp0s31f6: 
down
Aug 20 10:06:15 martijn-ThinkPad-P50 kernel: [ 2442.461902] bridge-enp0s31f6: 
detached
Aug 20 10:06:15 martijn-ThinkPad-P50 kernel: [ 2442.660746] userif-2: sent link 
down event.
Aug 20 10:06:15 martijn-ThinkPad-P50 kernel: [ 2442.660752] userif-2: sent link 
up event.
Aug 20 10:06:20 martijn-ThinkPad-P50 kernel: [ 2447.583182] e1000e: enp0s31f6 
NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx


inxi -i:

Network:   Card-1: Intel Ethernet Connection (2) I219-V driver: e1000e

lspci:

00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (2)
I219-V (rev 31)

The connection works again if I revert to an older kernel.

lsb_release -rd:

Description: Ubuntu 18.04.3 LTS
Release: 18.04

Expected to happen: Ethernet connection is established

What happened instead: Connection is constantly going up and down

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-image-4.15.0-58-generic 4.15.0-58.64
ProcVersionSignature: Ubuntu 4.15.0-55.60-generic 4.15.18
Uname: Linux 4.15.0-55-generic x86_64
NonfreeKernelModules

[Bug 1770604] Re: Arduino IDE from repository does not work because of "java.lang.NullPointerException thrown while loading gnu.io.RXTXCommDriver"

2019-06-15 Thread Martijn
Note: the issue is in librxtx-java and is fixed in Debian version
2.2pre2+dfsg1-2. Ubuntu has this since Cosmic. For Bionic you can
download and install the Comic version by hand.

For bionic this could be fixed by simply backporting the Cosmis version.

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

Title:
  Arduino IDE from repository does not work because of
  "java.lang.NullPointerException thrown while loading
  gnu.io.RXTXCommDriver"

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

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

[Bug 583797]

2018-12-12 Thread Martijn Pieters
For those of us that don't want to have to restore from session each
time they accidentally hit CMD-Q (and I do frequently because the Dvorak
keyboard layout puts the Q right above the Command key; the only
downside to using this layout), I regained my sanity by installing

https://addons.mozilla.org/en-US/firefox/addon/disable-ctrl-q-and-
cmd-q/

This add-on disables the Cmd-Q shortcut altogether. You can still quit
Firefox, but you have to explicitly use the Firefox -> Quit menu item to
do so.

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

Title:
  "Warn on closing with multiple tabs open" not honored

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

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

[Bug 810622]

2018-12-10 Thread Martijn
Setting calendar.google.enableEmailInvitations to true did NOT fix it
for me. I do have one writable calendar from Google.

Please provide a fix, Mozilla.

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

Title:
  Invites can only be accepted into local calendars

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

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

[Bug 1574900] Re: libpam-mysql undefined symbol: make_scrambled_password

2018-11-17 Thread Martijn
Can someone please release this fix?!? As far as I can tell, the code
was fixed but never released?

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

Title:
  libpam-mysql undefined symbol: make_scrambled_password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pam-mysql/+bug/1574900/+subscriptions

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

[Bug 1800792] Re: Update to 8u181-b13-1ubuntu0.18.04.1 breaks Maven builds

2018-10-31 Thread Martijn
Hey there,

There is a simple but severe bug which has been fixed in Debian OpenJDK
packages: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925

This causes a huge number of builds to fail. I believe its connected to
/ causing this issue as well.

Any chance of getting the upstream patch included in Ubuntu Xenial? The
problem was introduced in our environment as a security patch last
night... if we can get this fixed tonight, that would be great! :)

** Bug watch added: Debian Bug tracker #911925
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925

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

Title:
  Update to 8u181-b13-1ubuntu0.18.04.1 breaks Maven builds

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-11/+bug/1800792/+subscriptions

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

[Bug 458061] Re: openntpd no longer installs -/etc/openntpd/ntpd.conf: Permission denied

2017-12-19 Thread Martijn Brinkers
I have a similar problem on Ubuntu 14.04. The only workaround that works
was the one provided by "Alexander Stohr", i.e., install openntpd (which
failes), then remove the symlink /usr/sbin/openntpd -> ntpd and then
reinstall openntpd.

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

Title:
  openntpd no longer installs -/etc/openntpd/ntpd.conf: Permission
  denied

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

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

[Bug 1664067] Re: indicator-datetime swaps date and month around when adding year option in non-english locale

2017-05-26 Thread Martijn
** Package changed: unity (Ubuntu) => indicator-datetime (Ubuntu)

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

Title:
  indicator-datetime swaps date and month around when adding year option
  in non-english locale

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-datetime/+bug/1664067/+subscriptions

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


[Bug 1664067] [NEW] indicator-datetime swaps date and month around when adding year option in non-english locale

2017-02-12 Thread Martijn
Public bug reported:

This bug is observed in Ubuntu 16.10.

When one changes the settings for the time indicator, sometimes the
locale order of displaying the date is not adhered.

Steps to reproduce:

- Set a locale that places the date number before the month, for example Dutch.
- Set the option in unity-control-center, time menu, to show the date and month.
-- See that the date is correctly placed before the month
- Now set the show year option.
-- See that the date is now shown after the month instead. The abbreviated 
month is translated correctly though.


package version: 15.10+16.10.20160820.1-0ubuntu1

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: unity 7.5.0+16.10.20161112-0ubuntu1
ProcVersionSignature: Ubuntu 4.8.0-37.39-generic 4.8.16
Uname: Linux 4.8.0-37-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  367.57  Mon Oct  3 20:37:01 
PDT 2016
 GCC version:  gcc version 6.2.0 20161005 (Ubuntu 6.2.0-5ubuntu12)
.proc.driver.nvidia.warnings.fbdev:
 Your system is not currently configured to drive a VGA console
 on the primary VGA device. The NVIDIA Linux graphics driver
 requires the use of a text-mode VGA console. Use of other console
 drivers including, but not limited to, vesafb, may result in
 corruption and stability problems, and is not supported.
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Sun Feb 12 22:39:28 2017
DistUpgraded: 2016-10-14 17:47:08,404 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
DistroCodename: yakkety
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.8, 4.8.0-34-generic, x86_64: installed
 bbswitch, 0.8, 4.8.0-37-generic, x86_64: installed
 nvidia-367, 367.57, 4.8.0-34-generic, x86_64: installed
 nvidia-367, 367.57, 4.8.0-37-generic, x86_64: installed
ExecutablePath: /usr/bin/compiz
GraphicsCard:
 NVIDIA Corporation GF116 [GeForce GTX 550 Ti] [10de:1244] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. GF116 [GeForce GTX 550 Ti] [1043:83be]
InstallationDate: Installed on 2014-04-21 (1028 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-37-generic 
root=UUID=a5d5e69f-3e89-4d6a-9804-5ba00dafb9bd ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: Upgraded to yakkety on 2016-10-14 (121 days ago)
dmi.bios.date: 04/25/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.00
dmi.board.name: H61DEL
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.00:bd04/25/2011:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH61DEL:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz 1:0.9.13.0+16.10.20160818.2-0ubuntu2
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.70-1
version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.3-1ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.3-1ubuntu2
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-1ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160706-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-2
xserver.bootTime: Sun Feb 12 17:32:53 2017
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputHoltek USB Gaming Mouse KEYBOARD, id 8
 inputHoltek USB Gaming Mouse KEYBOARD, id 9
 inputLITEON Technology USB Multimedia Keyboard KEYBOARD, id 10
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.18.4-1ubuntu6.1

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


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

** Attachment added: "Screengrab showing the twoo described states"
   

[Bug 1663932] Re: unity-control-center crashed when setting custom-date-time

2017-02-12 Thread Martijn
Oops, forgot to include. Attached is the XML file used to set these
gsettings for new users. (install by overwriting
"/usr/share/glib-2.0/schemas/com.canonical.indicator.datetime.gschema.xml",
then running "glib-compile-schemas /usr/share/glib2.0/schemas")

One can also run the following commands on the ubuntu system to set
these values for an existing user:

gsettings set com.canonical.indicator.datetime time-format 'custom'
gsettings set com.canonical.indicator.datetime custom-time-format '%a %d %B %Y 
%H:%M'


** Attachment added: "gschema file"
   
https://bugs.launchpad.net/ubuntu/+source/unity-control-center/+bug/1663932/+attachment/4817747/+files/com.canonical.indicator.datetime.gschema.xml

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

Title:
  unity-control-center crashed when setting custom-date-time

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

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


[Bug 1653000] [NEW] Assertion crash with Validity VFS301

2016-12-28 Thread Martijn Braam
Public bug reported:

I get the following crash as soon as I scan a finger using fingerprint-
gui:

fingerprint-gui: drivers/vfs301_proto.c:427: vfs301_proto_peek_event: Assertion 
`!"unexpected reply to wait"' failed.
Aborted

The fingerprint reader is:

Bus 002 Device 003: ID 138a:0005 Validity Sensors, Inc. VFS301
Fingerprint Reader

My libfprint version is 1:0.6.0-git20161107-1-0ppa1~xenial1

** Affects: libfprint (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/1653000

Title:
  Assertion crash with Validity VFS301

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

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


[Bug 938758] Re: AutoHidden launcher reveal sensitivity adjustment should allow disabling push-past for wacom tablets

2016-11-04 Thread Martijn Courteaux
After digging for a couple of minutes in the XFreeDesktop source code
(xf86), I found this code that generates the events. Here is logic that
limits the cursor position to the screen boundaries. I'm nowhere near
familiar with the whole input system of X, but for someone who knows how
these things work, it might be something to have a look at:

https://sourcecodebrowser.com/xorg-
server/1.5.2/input_8h.html#aef40cd7682d5a05b3205f55c0e47c246

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

Title:
  AutoHidden launcher reveal sensitivity adjustment should allow
  disabling push-past for wacom tablets

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

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


[Bug 938758] Re: AutoHidden launcher reveal sensitivity adjustment should allow disabling push-past for wacom tablets

2016-11-04 Thread Martijn Courteaux
The problem is more general. I believe it is related to the xf86
interface the driver uses to report input events to Xorg.

I'm experiencing the same thing with the alternative xf86-input-mtrack
driver on github (https://github.com/p2rkw/xf86-input-mtrack). I
searched in the code and there is nothing particular that prevents the
events from being reported while trying to push the cursor off the
screen. The only thing that is common between this tablet driver in this
topic and the touchpad driver I'm having trouble with, is the xf86. The
default synaptics touchpad driver that comes with Ubuntu, obviously does
not have this problem, and also does not use xf86.

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

Title:
  AutoHidden launcher reveal sensitivity adjustment should allow
  disabling push-past for wacom tablets

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

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


[Bug 1621201] [NEW] chromium-browser crashed with SIGABRT in base::debug::BreakDebugger()

2016-09-07 Thread Martijn van Buul
*** This bug is a security vulnerability ***

Public security bug reported:

Chromium crashes right after opening a page. The "new tab page" still
works OK, but opening any other webpage crashes after a split second.

Disabling all extensions helps -a bit-; it will still crash, but not as
reliably.

ProblemType: Crash
DistroRelease: Ubuntu 16.10
Package: chromium-browser 51.0.2704.79-0ubuntu2~cm1
ProcVersionSignature: Ubuntu 4.4.0-9136.55-generic 4.4.16
Uname: Linux 4.4.0-9136-generic x86_64
ApportVersion: 2.20.3-0ubuntu7
Architecture: amd64
CrashCounter: 1
CurrentDesktop: XFCE
DRM.card0-DVI-D-1:
 edid-base64: 
AP///wBMLfADMjJEVAQSAQOALx54Ku6Ro1RMmSYPUFS/74CzAIGAgUBxTwEBAQEBAQEBITmQMGIaJ0BosDYAsQ8RAAAc/QA4Sx5RDwAKICAgICAg/ABTeW5jTWFzdGVyCiAg/wBIMUFLNTAwMDAwCiAgALQ=
 dpms: On
 modes: 1680x1050 1280x1024 1280x1024 1280x960 1152x864 1024x768 1024x768 
1024x768 832x624 800x600 800x600 800x600 800x600 640x480 640x480 640x480 
640x480 720x400
 enabled: enabled
 status: connected
DRM.card0-VGA-1:
 edid-base64: 
 dpms: Off
 modes: 
 enabled: disabled
 status: disconnected
Date: Wed Sep  7 20:35:08 2016
Desktop-Session:
 'xubuntu'
 
'/etc/xdg/xdg-xubuntu:/usr/share/upstart/systemd-session:/usr/share/upstart/xdg:/etc/xdg'
 '/usr/share/xubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'
DetectedPlugins:
 
Env:
 'None'
 'None'
ExecutablePath: /usr/lib/chromium-browser/chromium-browser
InstallationDate: Installed on 2016-01-29 (221 days ago)
InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
Load-Avg-1min: 7.12
Load-Processes-Running-Percent:   0.6%
MachineType: Hewlett-Packard HP Compaq dc7800p Ultra-slim Desktop
ProcCmdline: chromium-browser\ --enable-pinch\ --no-startup-window
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9136-generic 
root=UUID=bc94baa0-a8f6-4194-80d1-c778c5e73078 ro quiet splash vt.handoff=7
Signal: 6
SourcePackage: chromium-browser
StacktraceTop:
 base::debug::BreakDebugger() () from /usr/lib/chromium-browser/libs/libbase.so
 logging::LogMessage::~LogMessage() () from 
/usr/lib/chromium-browser/libs/libbase.so
 ?? ()
 ?? ()
 ?? ()
Title: chromium-browser crashed with SIGABRT in base::debug::BreakDebugger()
UpgradeStatus: Upgraded to yakkety on 2016-08-27 (10 days ago)
UserGroups: adm cdrom dialout dip lpadmin plugdev sambashare sudo
dmi.bios.date: 10/23/2015
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786F1 v01.35
dmi.board.asset.tag: CZC8030NF7
dmi.board.name: 0AA4h
dmi.board.vendor: Hewlett-Packard
dmi.chassis.asset.tag: CZC8030NF7
dmi.chassis.type: 15
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F1v01.35:bd10/23/2015:svnHewlett-Packard:pnHPCompaqdc7800pUltra-slimDesktop:pvr:rvnHewlett-Packard:rn0AA4h:rvr:cvnHewlett-Packard:ct15:cvr:
dmi.product.name: HP Compaq dc7800p Ultra-slim Desktop
dmi.sys.vendor: Hewlett-Packard
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'firefox\n'/desktop/gnome/url-handlers/https/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'sensible-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'
modified.conffile..etc.default.chromium-browser: [deleted]

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-crash need-amd64-retrace yakkety

** Information type changed from Private to Public Security

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

Title:
  chromium-browser crashed with SIGABRT in base::debug::BreakDebugger()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1621201/+subscriptions

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


[Bug 1314245] Re: Missing r8169 firmware warning when installing Trusty kernel

2016-06-20 Thread Martijn Lievaart
12.04.5 LTS, same  problem. purging linux firmware or installing nonfree
does not make a difference

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

Title:
  Missing r8169 firmware warning when installing Trusty kernel

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

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


[Bug 737959] Re: ping waits 5 seconds between packets if RDNS is not present

2015-07-31 Thread Martijn Lievaart
jmitchel,

That's actually very weird, because ping *does* cache (and incorrectly:
https://bugs.launchpad.net/ubuntu/+source/iputils/+bug/1405232).

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

Title:
  ping waits 5 seconds between packets if RDNS is not present

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

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


[Bug 1475309] [NEW] Segmentation fault in Zend OPcache (PHP-FPM)

2015-07-16 Thread Martijn G.
Public bug reported:

There is a segmentation fault in Zend OPcache. It is quite hard to
reproduce. We experience it on a Magento server with a specific piece of
code enabled, that deals with image resizing. Unfortunately, I don't
have the code at hand, but I'm not sure it is relevant.

Backtrace looks  like this:

#0  _zend_mm_free_int (heap=0x23e4300, p=0x400d480) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_alloc.c:2104
#1  0x7fb105d054b3 in zif_accel_chdir (ht=optimized out, 
return_value=optimized out, return_value_ptr=optimized out,
this_ptr=optimized out, return_value_used=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/ext/opcache/ZendAccelerator.c:158
#2  0x006dd8cb in dtrace_execute_internal (execute_data_ptr=optimized 
out, fci=optimized out,
return_value_used=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:97
#3  0x0079d935 in zend_do_fcall_common_helper_SPEC 
(execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:552
#4  0x00717668 in execute_ex (execute_data=0x7fb1087ded20) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#5  0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#6  0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087deb00)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#7  0x00717668 in execute_ex (execute_data=0x7fb1087deb00) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#8  0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#9  0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087de548)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#10 0x00717668 in execute_ex (execute_data=0x7fb1087de548) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#11 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#12 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087de030)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#13 0x00717668 in execute_ex (execute_data=0x7fb1087de030) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#14 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#15 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087dd2c0)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#16 0x00717668 in execute_ex (execute_data=0x7fb1087dd2c0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#17 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#18 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087dbed0)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#19 0x00717668 in execute_ex (execute_data=0x7fb1087dbed0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#20 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#21 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087db898)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#22 0x00717668 in execute_ex (execute_data=0x7fb1087db898) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#23 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#24 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087db1f8)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#25 0x00717668 in execute_ex (execute_data=0x7fb1087db1f8) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#26 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#27 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087da738)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#28 0x00717668 in execute_ex (execute_data=0x7fb1087da738) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#29 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#30 0x006ef250 in zend_execute_scripts (type=type@entry=8, 
retval=retval@entry=0x0, file_count=file_count@entry=3)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend.c:1316
#31 0x0068f065 in php_execute_script 

[Bug 1475309] [NEW] Segmentation fault in Zend OPcache (PHP-FPM)

2015-07-16 Thread Martijn G.
Public bug reported:

There is a segmentation fault in Zend OPcache. It is quite hard to
reproduce. We experience it on a Magento server with a specific piece of
code enabled, that deals with image resizing. Unfortunately, I don't
have the code at hand, but I'm not sure it is relevant.

Backtrace looks  like this:

#0  _zend_mm_free_int (heap=0x23e4300, p=0x400d480) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_alloc.c:2104
#1  0x7fb105d054b3 in zif_accel_chdir (ht=optimized out, 
return_value=optimized out, return_value_ptr=optimized out,
this_ptr=optimized out, return_value_used=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/ext/opcache/ZendAccelerator.c:158
#2  0x006dd8cb in dtrace_execute_internal (execute_data_ptr=optimized 
out, fci=optimized out,
return_value_used=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:97
#3  0x0079d935 in zend_do_fcall_common_helper_SPEC 
(execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:552
#4  0x00717668 in execute_ex (execute_data=0x7fb1087ded20) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#5  0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#6  0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087deb00)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#7  0x00717668 in execute_ex (execute_data=0x7fb1087deb00) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#8  0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#9  0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087de548)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#10 0x00717668 in execute_ex (execute_data=0x7fb1087de548) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#11 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#12 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087de030)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#13 0x00717668 in execute_ex (execute_data=0x7fb1087de030) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#14 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#15 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087dd2c0)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#16 0x00717668 in execute_ex (execute_data=0x7fb1087dd2c0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#17 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#18 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087dbed0)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#19 0x00717668 in execute_ex (execute_data=0x7fb1087dbed0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#20 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#21 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087db898)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#22 0x00717668 in execute_ex (execute_data=0x7fb1087db898) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#23 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#24 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087db1f8)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#25 0x00717668 in execute_ex (execute_data=0x7fb1087db1f8) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#26 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#27 0x0079df80 in zend_do_fcall_common_helper_SPEC 
(execute_data=0x7fb1087da738)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:584
#28 0x00717668 in execute_ex (execute_data=0x7fb1087da738) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_vm_execute.h:363
#29 0x006dd7c9 in dtrace_execute_ex (execute_data=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_dtrace.c:73
#30 0x006ef250 in zend_execute_scripts (type=type@entry=8, 
retval=retval@entry=0x0, file_count=file_count@entry=3)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend.c:1316
#31 0x0068f065 in php_execute_script 

[Bug 1246981] Re: Bluetooth mouse fails to re-connect after sleep.

2015-07-02 Thread Martijn Lievaart
Fresh install of 14.04 and another Bluetooth mouse, still the same
issue, only now no workarounds seem to work. I have to reconnect the
mouse after every suspend/resume.

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

Title:
  Bluetooth mouse fails to re-connect after sleep.

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

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


[Bug 1347726] Re: ubuntu14.04 installation hang on The installer has detected that the following disks have mounted partitions

2015-06-29 Thread Martijn Koster
This was reported on the forums too:
http://ubuntuforums.org/showthread.php?t=2215103 where directhex2
mentioned:

I've tracked down the problem to a change in debian-installer-utils 1.98

Looking at the changelog 
(https://launchpad.net/ubuntu/saucy/+source/debian-installer-utils/+changelog) 
I see:

[ Joey Hess ]
* fetch-url: Try to mountmedia when getting a file, to support preseed
via USB from netboot.

That change adds a call to mountmedia
(http://anonscm.debian.org/cgit/d-i/debian-installer-
utils.git/commit/?id=916a613577c5cd747d15b3d20f16b9518d7d54ea)

That code will list the disk partitions (http://bazaar.launchpad.net
/~ubuntu-
branches/ubuntu/wily/mountmedia/wily/view/head:/mountmedia#L24).

In my case that finds /dev/sda1 (my existing HD boot partition) and mounts that 
as /media.
My CD is on /dev/sr0 is mounted as /cdrom. I have no other media I need to have 
mounted.

The forum suggested a workaround: unmount /media in an early preseed command.
You want to ignore failures when you run on a system where /media does not get 
mounted (blank HD).
This worked for me:

d-i preseed/early_command string umount /media || true

What is the right fix here? I can't imagine how mountmedia picking a HD
partition on the target disk and mounting it makes a lot of sense in the
overwhelming majority of cases. Should it not be doing that? Should
debian-installer-utils not use mountmedia? Should there be an installer
option to skip it? Are there any better ways to avoid this?

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

Title:
  ubuntu14.04 installation hang on The installer has detected that the
  following disks have mounted  partitions

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

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


[Bug 1359689] Re: cryptsetup password prompt not shown

2015-06-09 Thread Martijn Lievaart
Workaround in #17 fixed it for me

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

Title:
  cryptsetup password prompt not shown

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

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


[Bug 1458684] ProcEnviron.txt

2015-05-25 Thread Martijn
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1458684/+attachment/4404374/+files/ProcEnviron.txt

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

Title:
  Libreoffice allows resizing its window to 1 pixel

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

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


[Bug 1458684] JournalErrors.txt

2015-05-25 Thread Martijn
apport information

** Attachment added: JournalErrors.txt
   
https://bugs.launchpad.net/bugs/1458684/+attachment/4404373/+files/JournalErrors.txt

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

Title:
  Libreoffice allows resizing its window to 1 pixel

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

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


[Bug 1458684] Re: Libreoffice allows resizing its window to 1 pixel

2015-05-25 Thread Martijn
apport information

** Tags added: apport-collected vivid

** Description changed:

  Libreoffice allows its window to be resized to 1 pixel, which is VERY
  confusing when opening a new document. I know this probably only happens
  if the user resized the window to 1 pixel in the first place, but
  libreoffice remembers its previous window size across reboots - so you
  could actually lose it forever if you don't figure out what's going
  on.
  
  http://i.imgur.com/fdcUxSb.jpg
  http://i.imgur.com/BGew1eV.png (right side of the screen)
+ --- 
+ ApportVersion: 2.17.2-0ubuntu1.1
+ Architecture: amd64
+ CurrentDesktop: Unity
+ DistroRelease: Ubuntu 15.04
+ InstallationDate: Installed on 2015-04-25 (30 days ago)
+ InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
+ Package: libreoffice 1:4.4.2-0ubuntu1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
+ Tags:  vivid
+ Uname: Linux 3.19.0-18-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1458684/+attachment/4404372/+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/1458684

Title:
  Libreoffice allows resizing its window to 1 pixel

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

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


[Bug 1458684] [NEW] Libreoffice allows resizing its window to 1 pixel

2015-05-25 Thread Martijn
Public bug reported:

Libreoffice allows its window to be resized to 1 pixel, which is VERY
confusing when opening a new document. I know this probably only happens
if the user resized the window to 1 pixel in the first place, but
libreoffice remembers its previous window size across reboots - so you
could actually lose it forever if you don't figure out what's going
on.

http://i.imgur.com/fdcUxSb.jpg
http://i.imgur.com/BGew1eV.png (right side of the screen)

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

Title:
  Libreoffice allows resizing its window to 1 pixel

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

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


[Bug 1366519] Re: Incredibly slow editing of documents when connected to network

2015-05-23 Thread Martijn Oldenburg
Problem solved as of 4.2.8.2. Unknown if because of changes in LibreOffice or 
other packages. No changes in fuse mounts in fstab. Box is the same:
Ubuntu 14.04 LTS completely up-to-date with dist-upgrade as of 23 may 2015

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

Title:
  Incredibly slow editing of documents when connected to network

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1366519/+subscriptions

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


[Bug 1193236] Re: Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-*

2015-04-22 Thread Martijn Lievaart
Fresh install 14.04.02. export NO_AT_BRIDGE=1 works as a workaround.

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

Title:
   Couldn't connect to accessibility bus: Failed to connect to socket
  /tmp/dbus-*

To manage notifications about this bug go to:
https://bugs.launchpad.net/at-spi/+bug/1193236/+subscriptions

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


[Bug 1366519] Re: Incredibly slow editing of documents when connected to network

2015-04-22 Thread Martijn Oldenburg
I have the same problems:
Ubuntu 14.04 LTS completely up-to-date with dist-upgrade
Libreoffice 4.2.7.2

Problem solved for me after removing Recent Documents from menu.

I have several fuse mounts in fstab. Only after a document from one of
these mounts is in Recent Documents the delay while editting happens.

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

Title:
  Incredibly slow editing of documents when connected to network

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1366519/+subscriptions

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


[Bug 1446125] Re: slapd.service missing

2015-04-20 Thread Martijn van Buijtene
systemd is beeing called from /etc/init.d/slapd -- /lib/lsb/init-
functions.d/40-systemd.

Would be nice to implement a 'pure' systemd solution.

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

Title:
  slapd.service missing

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

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


[Bug 1162424] Re: Boot scripts for write-thru and write-around cache creation

2015-02-27 Thread Martijn Dekkers
Hi Shahar, thanks for your note. We run this on a lot of servers,
updating all of them to go fully SSD is expensive :)

I posted the script for posterity - it still appears to be an issue 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/1162424

Title:
  Boot scripts for write-thru and write-around cache creation

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

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


[Bug 1162424] Re: Boot scripts for write-thru and write-around cache creation

2015-02-27 Thread Martijn Dekkers
This seems to work for me:

cat  EOF  /usr/share/initramfs-tools/hooks/flashcache
#!/bin/sh

case \$1 in
prereqs)
echo dmsetup
exit 0
;;
esac

. /usr/share/initramfs-tools/hook-functions

mkdir -p \$DESTDIR/sbin
copy_exec /sbin/flashcache_create

manual_add_modules flashcache
EOF
chmod +x /usr/share/initramfs-tools/hooks/flashcache
cat  EOF  /etc/initramfs-tools/scripts/local-premount/flashcache
#!/bin/sh
/sbin/flashcache_create [YOUR FLASHCACHE CREATE COMMAND]
EOF
chmod +x /etc/initramfs-tools/scripts/local-premount/flashcache
update-initramfs -u


Please note that this works for me, and might not work for you, it might eat 
all your data, or cause your cat to eat your goldfish.

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

Title:
  Boot scripts for write-thru and write-around cache creation

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

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


[Bug 737959] Re: ping waits 5 seconds between packets if RDNS is not present

2015-02-26 Thread Martijn Lievaart
The same issue is described here:
http://www.unchartedbackwaters.co.uk/pyblosxom/debian_ubuntu_dns_resolution_delays

I can confirm that removing mdns4 makes the problem go away. So it's
really https://bugs.launchpad.net/ubuntu/+source/avahi/+bug/94940,
please merge.

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

Title:
  ping waits 5 seconds between packets if RDNS is not present

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

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


[Bug 1405232] Re: ping reports wrong IP responding under certain conditions

2015-02-16 Thread Martijn Lievaart
No, don't kick upstream. It's bug109709-less-dns.patch. Revert it, it's
bogus

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

Title:
  ping reports wrong IP responding under certain conditions

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

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


[Bug 1405232] Re: ping reports wrong IP responding under certain conditions

2015-02-16 Thread Martijn Lievaart
To follow up on myself (I seem to do that a lot) see
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=109709. The problem
that this patch tries to fix is sort of real (but see below), but the
patch is plain wrong. Yes it fixes that issue, but introduces this new
bug.

Which one is more serious? I think this bug is more serious and the
patch should be (maybe partially) reverted. The original bug can be
avoided (I think) by simply using the -n switch, so it's even a solution
to a non-problem. This bug has no workaround.



** Bug watch added: Debian Bug tracker #109709
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=109709

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

Title:
  ping reports wrong IP responding under certain conditions

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

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


[Bug 1405232] Re: ping reports wrong IP responding under certain conditions

2015-02-12 Thread Martijn Lievaart
The problem even exists on an ICMP redirect.

martijn@garfield:~$ ping 172.22.226.3
PING 172.22.226.3 (172.22.226.3) 56(84) bytes of data.
From 10.0.0.138: icmp_seq=1 Redirect Host(New nexthop: 10.0.0.138)
64 bytes from 10.0.0.138: icmp_seq=1 ttl=245 time=66.4 ms
64 bytes from 10.0.0.138: icmp_seq=2 ttl=245 time=127 ms
64 bytes from 10.0.0.138: icmp_seq=3 ttl=245 time=280 ms

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

Title:
  ping reports wrong IP responding under certain conditions

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

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


[Bug 1405232] Re: ping reports wrong IP responding under certain conditions

2015-02-12 Thread Martijn Lievaart
I Noted the nexthop field is wrong as well in my last output.

What happens is a wrong optimisation. the pr_addr function assumes it is
always called with the same address, so it just returns the previous
buffer on subsequent invocations.

The following quickfix fixes both the issue in this ticket as the
nexthop issue.

$ diff -U3 ping.c{~,}
--- ping.c~ 2015-02-12 13:00:18.0 +0100
+++ ping.c  2015-02-12 13:45:47.515167752 +0100
@@ -1244,10 +1244,10 @@
 {
struct hostent *hp;
static char buf[4096] = ;
-
+   /*
if (*buf)
return(buf);
-
+   */
in_pr_addr = !setjmp(pr_addr_jmp);
 
if (exiting || (options  F_NUMERIC) ||

I think this can be kicked upstream.

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

Title:
  ping reports wrong IP responding under certain conditions

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

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


[Bug 1313787] Re: Multistrap is broken in 14.04

2015-01-15 Thread Martijn Lievaart
Fix worked for me too.

Hello? 8 months further and the simple fix has not yet been deployed?
Risks of breaking something: it's totally borked now, so no risk. Please
deploy.

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

Title:
  Multistrap is broken in 14.04

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

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


Re: [Bug 1304001] Re: xen:balloon errors in 14.04 beta

2014-11-18 Thread Martijn Heemels
Looking good. I'm no expert on testing pre-release packages so please
correct me if I've done something wrong.

Tested on Utopic today (ami-540ba523 on a m3.medium amd64 hvm). It came
with kernel 3.16.0-24.32 which exhibits the xen:balloon error messages.

Upgraded to 3.16.0.24.25, the latest available in the regular repos.
Reboot. Still the same error messages.

Enabled the utopic-proposed repo and installed kernel 3.16.0.25.26. Reboot.
The messages no longer appear!

Seems good to me!

Regards, Martijn Heemels


On Fri, Nov 14, 2014 at 1:53 PM, Rafael David Tinoco 
rafael.tin...@canonical.com wrote:

 Hello

 Is possible for anyone to test Utopic kernel so we can flag this as
 verification-done and push this to be released asap ?

 Thank you very much

 Rafael Tinoco

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1304001

 Title:
xen:balloon errors in 14.04 beta

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


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

Title:
   xen:balloon errors in 14.04 beta

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

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


[Bug 1265117] Re: nwipe missing footer text on drive selection screen

2014-11-08 Thread Martijn van Brummelen
This bug has been fixed.

** Changed in: nwipe (Ubuntu)
   Status: Fix Committed = 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/1265117

Title:
  nwipe missing footer text on drive selection screen

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

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


[Bug 1264368] Re: GLib-CRITICAL **: Source ID was not found when attempting to remove it - warning when leaving Network menu of g-c-c

2014-11-07 Thread martijn
(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 684 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 782 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 1464 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 1493 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 1603 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 1887 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 3106 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 3207 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 3584 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 3794 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 3892 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 4204 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 4541 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 4806 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 4814 was not
found when attempting to remove it

(Android SDK Manager:8715): GLib-CRITICAL **: Source ID 4817 was not found when 
attempting to remove it
martijn@martijn-Ubuntu:~/workspace/Android/android-sdk-linux/tools$ ./android
(Android SDK Manager:8887): GLib-CRITICAL **: Source ID 968 was not found when 
attempting to remove it

(Android SDK Manager:8887): GLib-CRITICAL **: Source ID 1229 was not
found when attempting to remove it


** Also affects: androidsdk
   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/1264368

Title:
  GLib-CRITICAL **: Source ID was not found when attempting to remove it
  - warning when leaving Network menu of g-c-c

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

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


[Bug 1304001] Re: xen:balloon errors in 14.04 beta

2014-10-29 Thread Martijn Heemels
I've also tested with the kernel from Rafael's PPA, and can confirm that
the alerts are gone for me.

Thanks to everyone involved!

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

Title:
   xen:balloon errors in 14.04 beta

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

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


[Bug 1304001] Re: xen:balloon errors in 14.04 beta

2014-10-22 Thread Martijn Heemels
It doesn't appear fixed to me. Please reopen?

I just installed an m3.medium instance, updated to kernel 3.13.0-37.64
(which should contain the fix) and rebooted.

The errors appear as soon as booting is nearly complete.

From dmesg:
[6.631751] xen:balloon: Cannot add additional memory (-17)
[   14.661002] xen:balloon: Cannot add additional memory (-17)
[   30.688074] xen:balloon: Cannot add additional memory (-17)
etc...

From syslog:
2014-10-22T13:09:30.785177+00:00 www12 kernel: [ 1345.312075] xen:balloon: 
Cannot add additional memory (-17)
2014-10-22T13:10:02.849179+00:00 www12 kernel: [ 1377.376076] xen:balloon: 
Cannot add additional memory (-17)
2014-10-22T13:10:34.913176+00:00 www12 kernel: [ 1409.440077] xen:balloon: 
Cannot add additional memory (-17)

$ uname -a
Linux www12 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 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/1304001

Title:
   xen:balloon errors in 14.04 beta

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

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


[Bug 1366351] Re: compiz crashed with SIGSEGV in g_closure_invoke()

2014-10-10 Thread Martijn vdS
As far as I know, I haven't changed it from the default, so I assume
mine's set to 1 as well?

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

Title:
  compiz crashed with SIGSEGV in g_closure_invoke()

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

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


[Bug 1379309] [NEW] Missing maintainer scripts

2014-10-09 Thread Martijn G.
Public bug reported:

Php5-mcrypt 5.4.6-0ubuntu5 in 14.04 is missing some maintainer scripts:

~ dpkg-query --control-list php5-mcrypt
preinst
md5sums

whereas for any other extension, the list looks like this:

~ dpkg-query --control-list php5-curl
preinst
postrm
md5sums
prerm
postinst
triggers

The absence of a postinst script causes the extension to not be enabled
after install.

** Affects: php-mcrypt (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/1379309

Title:
  Missing maintainer scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-mcrypt/+bug/1379309/+subscriptions

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


[Bug 1243568] Re: put ini in correct path

2014-10-09 Thread Martijn G.
I'm not sure if this is a regression in 14.04, but php5-mcrypt
5.4.6-0ubuntu5 in 14.04 is missing some maintainer scripts:

~ dpkg-query --control-list php5-mcrypt
preinst
md5sums

whereas for any other extension, the list looks like this:

~ dpkg-query --control-list php5-curl
preinst
postrm
md5sums
prerm
postinst
triggers

The absence of a postinst script causes the extension to not be enabled
after install.

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

Title:
  put ini in correct path

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-adodb/+bug/1243568/+subscriptions

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


[Bug 1377029] [NEW] Default filenames contain colons, making it hard to share screenshots

2014-10-03 Thread Martijn vdS
Public bug reported:

Colons aren't allowed on Microsoft-based filesystems (NTFS, VFAT), and
quite a few websites also don't allow colons in filenames of uploaded
files (because downloading a file with such a name on a Windows system
is, apparently, problematic).

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: gnome-screenshot 3.10.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-18.25-generic 3.16.3
Uname: Linux 3.16.0-18-generic x86_64
ApportVersion: 2.14.7-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct  3 08:54:11 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-11-13 (323 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
SourcePackage: gnome-screenshot
UpgradeStatus: Upgraded to utopic on 2014-09-16 (16 days ago)

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


** Tags: amd64 apport-bug utopic

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

Title:
  Default filenames contain colons, making it hard to share screenshots

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

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


[Bug 1376571] [NEW] After login, gcr-prompter pops up several times in a row, never accepting my passwords

2014-10-02 Thread Martijn vdS
Public bug reported:

The dialog doesn't accept any of my passwords, so I have to cancel it 4
times in a row.

I haven't noticed anything not working, and nothing asks for the
password ever again.

Also, the dialog isn't very clear on *which* password it's asking for.
It just lists my email address -- which I don't have configured as an
online account in Ubuntu.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: gcr 3.12.2-1
ProcVersionSignature: Ubuntu 3.16.0-18.25-generic 3.16.3
Uname: Linux 3.16.0-18-generic x86_64
ApportVersion: 2.14.7-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Oct  2 08:31:13 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-11-13 (322 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
SourcePackage: gcr
UpgradeStatus: Upgraded to utopic on 2014-09-16 (15 days ago)

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


** Tags: amd64 apport-bug utopic

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

Title:
  After login, gcr-prompter pops up several times in a row, never
  accepting my passwords

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

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


[Bug 463078] Re: Dia export to Cairo PNG causes mangled text fonts

2014-09-14 Thread Martijn
Christopher,

The bug report is about exporting to PNG (see title), so saying Won't
fix because export to SVG is deprecated seems odd.

The only reason SVG got mentioned in this bug report is because it
appears to be the only format that *isn't* broken.

Can confirm that PNG  PDF are both broken here, and SVG export works
fine (even if it is deprecated).

Ubuntu 14.04, dia 0.97.2-15ubuntu1

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

Title:
  Dia export to Cairo PNG causes mangled text fonts

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

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


[Bug 463078] Re: Dia export to Cairo PNG causes mangled text fonts

2014-09-14 Thread Martijn
Ok, I think I've found the confusion. This bug got linked to the wrong
upstream bug. The upstream bug linked is gnome-bugs #735493 which is
about SVG.

It should be linked to the following bugs (which I've tried to do):

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714296
https://bugzilla.gnome.org/show_bug.cgi?id=696128
https://bugzilla.gnome.org/show_bug.cgi?id=705164
https://bugzilla.gnome.org/show_bug.cgi?id=573261

Debian has pushed a new version 0.97.2-16 which fixes this issue.

** Bug watch added: GNOME Bug Tracker #696128
   https://bugzilla.gnome.org/show_bug.cgi?id=696128

** Also affects: dia via
   https://bugzilla.gnome.org/show_bug.cgi?id=696128
   Importance: Unknown
   Status: Unknown

** Bug watch added: Debian Bug tracker #714296
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714296

** Also affects: dia (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714296
   Importance: Unknown
   Status: Unknown

** Bug watch added: GNOME Bug Tracker #705164
   https://bugzilla.gnome.org/show_bug.cgi?id=705164

** Bug watch added: GNOME Bug Tracker #573261
   https://bugzilla.gnome.org/show_bug.cgi?id=573261

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

Title:
  Dia export to Cairo PNG causes mangled text fonts

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

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


[Bug 1338492] Re: Xorg crashed with SIGABRT in OsAbort()

2014-08-14 Thread Martijn
What can I do to help resolve this bug? It's annoyingly repeatable, I
get it at least ten times a day.

Basically lightdm starts normally. Then after a suspend/resume cycle it
says the session is locked. lightdm is now in a state where it
doesn't/can't talk to the X server into vt7. So it starts a new greeter
on vt8 and tries to switch to it (which fails). Switching manually and
typing in the correct password seems to work but then the X server
crashes with signal 6 (this bug) and then it spawns the greeter again on
vt8. After about three times it finally succeeds in unlocking the
session on vt7 and I can continue working.

Sometimes it gets unlocked but the mouse no longer works, but that's
probably a completely different problem.

Attaching the lightdm.log, in case it sheds light on the problem.

** Attachment added: lightdm.log
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1338492/+attachment/4177866/+files/lightdm.log.old

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

Title:
  Xorg crashed with SIGABRT in OsAbort()

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

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


[Bug 670674] Re: Improper indentation when pasting code in gnome-terminal

2014-08-06 Thread Martijn Vermaat
I just started using python-mode.el and am experiencing exactly this
problem. This is on current trunk.

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

Title:
  Improper indentation when pasting code in gnome-terminal

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-mode/+bug/670674/+subscriptions

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


[Bug 1304001] Re: xen:balloon errors in 14.04 beta

2014-08-06 Thread Martijn Heemels
Just ran into this error on Amazon VPC today on a newly created
instance. I know very little about Xen (just an AWS user) but maybe this
extra info will be useful to someone. If I can provide more information,
let me know.

Instance type: m3.medium (HVM)
AMI ID: ubuntu-trusty-14.04-amd64-server-20140607.1 (ami-0307d674)
Kernel: 3.13.0-32-generic #57-Ubuntu (newest available package)

When I resize the same instance to m3.large the error message does not
occur.

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

Title:
   xen:balloon errors in 14.04 beta

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

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


[Bug 1246981] Re: Bluetooth mouse failes to re-connect after sleep.

2014-08-06 Thread Martijn Lievaart
Oops, forgot the most important, this all started when I attache a BT
mouse, without the BT mouse there are no problems.

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

Title:
  Bluetooth mouse failes to re-connect after sleep.

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

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


[Bug 1246981] Re: Bluetooth mouse failes to re-connect after sleep.

2014-08-06 Thread Martijn Lievaart
Ubuntu 14.04
bluez: 4.101-0ubuntu13

After suspend resume things one by one hang, and I have no other option
than a hard poweroff. Ctrl-Alt-Fn to switch consoles does not work
immediately after resume, so debugging is tricky (haven't tried ssh-ing
into the box yet).

The workaround above solved it for me.

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

Title:
  Bluetooth mouse failes to re-connect after sleep.

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

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


[Bug 1299604] Re: evolution keeps asking for password

2014-08-03 Thread Martijn Bastiaan
These patches should resolve the issue:

https://git.gnome.org/browse/evolution-data-server/commit/?h=evolution-data-server-3-12id=c9f9cdebfc
https://git.gnome.org/browse/evolution-data-server/commit/?h=evolution-data-server-3-12id=fedfc8f

Ubuntu packagers should incorperate these to prevent Evolution from
asking for passwords.

Source:

https://bugzilla.gnome.org/show_bug.cgi?id=728689

** Bug watch added: GNOME Bug Tracker #728689
   https://bugzilla.gnome.org/show_bug.cgi?id=728689

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

Title:
  evolution keeps asking for password

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

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


[Bug 398330]

2014-07-31 Thread Martijn-martijn
Reopened based on comment 68 and 69. I can't test it myself, this
moment, because I'm on MacOS X now, see bug 801812.

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

Title:
  Pressing Menu key does not bring up the spell checker

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

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


[Bug 1331077] Re: [Lenovo ThinkPad Edge E540] suspend/resume failure

2014-07-21 Thread Martijn van Dijk
I can confirm that this issue also occurs on the newest firmware (2.11)
on Fedora Linux

** Also affects: linux (Fedora)
   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/1331077

Title:
  [Lenovo ThinkPad Edge E540] suspend/resume failure

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

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


[Bug 1315618] Re: evolution crashes when create a new imap-folder

2014-07-13 Thread Martijn Bastiaan
I've ran gdb to find out what causes the segmentation fault. It says:

Program received signal SIGSEGV, Segmentation fault.
folder_tree_maybe_expand_row (model=0x583b4080, tree_path=0x584d4890, 
iter=optimized out, folder_tree=0x584b0a60) at em-folder-tree.c:564
564 em-folder-tree.c: Bestand of map bestaat niet.

Bestand of map bestaat niet means File or directory doesn't exist.

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

Title:
  evolution crashes when create a new imap-folder

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

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


[Bug 1315618] Re: evolution crashes when create a new imap-folder

2014-07-13 Thread Martijn Bastiaan
The function crashes after it being called on line 1204:

handler_id = g_signal_connect (
model, loaded-row,
G_CALLBACK (folder_tree_maybe_expand_row), object);

The variable `key` in the function has the following values before
generating a segmentation fault:

1405275544.24245.2@deskei/INBOX
1405275544.24245.2@deskei/INBOX/Test
1405275544.24245.2@deskei/INBOX/Test2
1405275544.24245.2@deskei/INBOX/Test3
1405275544.24245.2@deskei/Drafts
1405275544.24245.2@deskei/Sent
1405275544.24245.2@deskei/Spam
1405275544.24245.2@deskei/Trash
1405275544.24245.2@deskei/.#evolution/Trash
1405275544.24245.2@deskei/.#evolution/Junk
vfolder/UNMATCHED
1405275544.24245.2@deskei/INBOX/Test4
1405275544.24245.2@deskei/INBOX/Test4
Segmentatiefout

The folders before 'vfolder/UNMATCHED' are existing folders, 'Test4'
being the new one. As you can see, the only folder being check upon
twice is 'Test4'. The folder does indeed not exist, but so do others:

martijn@deskei:~/.config/evolution/mail/folders$ ls
et-expanded-folder:__1405275544.24245.2_40deskei_Drafts
et-expanded-folder:__1405275544.24245.2_40deskei_INBOX
et-expanded-folder:__1405275544.24245.2_40deskei_INBOX_Test2
et-expanded-folder:__1405275544.24245.2_40deskei_INBOX_Test_Nested_box
et-expanded-folder:__1405275544.24245.2_40deskei_INBOX_Test_Nested_Geweten
et-expanded-folder:__1405275544.24245.2_40deskei_INBOX_Test_test

(Which displays non-existing [removed] folders?)

I'm not really sure what to check next: if a developer would like to
lend a hand, please :)

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

Title:
  evolution crashes when create a new imap-folder

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

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


[Bug 1312033] [NEW] Update-manager won't upgrade from 12.04 with unclear error

2014-04-24 Thread Martijn Lasthuizen
Public bug reported:

When updating from 12.04 desktop update-manager stops when at the fase of 
really downloading new packages.
It is unclear what causes the error or what to do to make it upgrade to 14.04

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: update-manager 1:0.156.14.13
ProcVersionSignature: Ubuntu 3.2.0-60.91-generic 3.2.55
Uname: Linux 3.2.0-60-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.6
Architecture: amd64
Date: Thu Apr 24 09:54:52 2014
GsettingsChanges:
 com.ubuntu.update-manager first-run false
 com.ubuntu.update-manager launch-time 1398151944
 com.ubuntu.update-manager show-details true
 com.ubuntu.update-manager window-height 615
 com.ubuntu.update-manager window-width 600
MarkForUpload: True
PackageArchitecture: all
SourcePackage: update-manager
Symptom: ubuntu-release-upgrader-core
UpgradeStatus: Upgraded to precise on 2014-04-24 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade precise third-party-packages

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

Title:
  Update-manager won't upgrade from 12.04 with unclear error

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

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


[Bug 1312033] Re: Update-manager won't upgrade from 12.04 with unclear error

2014-04-24 Thread Martijn Lasthuizen
dist-upgrade

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

Title:
  Update-manager won't upgrade from 12.04 with unclear error

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

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


[Bug 1099947] Re: driver unable to connect to CyberPower UPS using usbhid-ups driver

2014-03-02 Thread Martijn Lievaart
I can confirm this bug in raring. The fix in the originale bug report
fixed it for me too.

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

Title:
  driver unable to connect to CyberPower UPS using usbhid-ups driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nut/+bug/1099947/+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 1099947] Re: driver unable to connect to CyberPower UPS using usbhid-ups driver

2014-03-02 Thread Martijn Lievaart
I can confirm this bug in raring. The fix in the originale bug report
fixed it for me too.

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

Title:
  driver unable to connect to CyberPower UPS using usbhid-ups driver

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

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


[Bug 1286442] [NEW] Inserting an empty CD-R or DVD(+/-)R always results in a Could not mount dialog popping up

2014-02-28 Thread Martijn vdS
Public bug reported:

Inserting an empty CD-R or DVD(+/-)R often results in a Could not
mount dialog popping up on top of the what do you want to do with this
thing you've inserted? one.

This has been happening for a few releases, and on multiple machines.
With both USB and SATA DVD writers.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: nautilus 1:3.10.1-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-8.28-generic 3.13.2
Uname: Linux 3.13.0-8-generic x86_64
ApportVersion: 2.13.2-0ubuntu5
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Mar  1 06:20:54 2014
GsettingsChanges: b'org.gnome.nautilus.list-view' b'default-column-order' 
b['name', 'size', 'type', 'date_modified', 'owner', 'group', 'permissions', 
'mime_type', 'where']
InstallationDate: Installed on 2013-06-02 (271 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
SourcePackage: nautilus
UpgradeStatus: Upgraded to trusty on 2013-12-05 (85 days ago)

** Affects: nautilus (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/1286442

Title:
  Inserting an empty CD-R or DVD(+/-)R always results in a Could not
  mount dialog popping up

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

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


[Bug 1280443] Re: [Gigabyte Technology Co., Ltd. Z87X-OC] suspend/resume failure

2014-02-15 Thread Martijn vdS
** Tags added: kernel-bug-exists-upstream

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

Title:
  [Gigabyte Technology Co., Ltd. Z87X-OC] suspend/resume failure

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

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


[Bug 1280443] [NEW] [Gigabyte Technology Co., Ltd. Z87X-OC] suspend/resume failure

2014-02-14 Thread Martijn vdS
Public bug reported:

Picked Suspend from the shutdown menu. Machine wouldn't turn on
anymore until I unplugged the power cord(!).

ProblemType: KernelOops
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-8-generic 3.13.0-8.28
ProcVersionSignature: Ubuntu 3.13.0-8.28-generic 3.13.2
Uname: Linux 3.13.0-8-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.13.2-0ubuntu3
Architecture: amd64
Date: Fri Feb 14 22:02:43 2014
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=024bd461-597f-4fdc-aa42-dd226e9d554b
InstallationDate: Installed on 2013-06-02 (257 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
InterpreterPath: /usr/bin/python3.3
MachineType: Gigabyte Technology Co., Ltd. Z87X-OC
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-8-generic 
root=UUID=47694405-80e7-45ce-b6b1-c8b69d2be423 ro intel_pstate=enable quiet 
splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-8-generic N/A
 linux-backports-modules-3.13.0-8-generic  N/A
 linux-firmware1.124
RfKill:
 
SourcePackage: linux
Title: [Gigabyte Technology Co., Ltd. Z87X-OC] suspend/resume failure
UpgradeStatus: Upgraded to trusty on 2013-12-05 (71 days ago)
UserGroups:
 
dmi.bios.date: 08/03/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F6
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z87X-OC-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF6:bd08/03/2013:svnGigabyteTechnologyCo.,Ltd.:pnZ87X-OC:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ87X-OC-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: Z87X-OC
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


** Tags: amd64 apport-kerneloops resume suspend trusty

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

Title:
  [Gigabyte Technology Co., Ltd. Z87X-OC] suspend/resume failure

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

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


[Bug 1277812] [NEW] Scrolling using mouse wheel doesn't work

2014-02-07 Thread Martijn vdS
Public bug reported:

Since I've upgraded to trusty, I can't scroll any pane in banshee using
the mouse wheel. The scroll bars on the side and keyboard do work.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: banshee 2.9.0-2ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-6.23-generic 3.13.0
Uname: Linux 3.13.0-6-generic x86_64
ApportVersion: 2.13.2-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Feb  8 08:14:55 2014
InstallationDate: Installed on 2013-06-02 (250 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
SourcePackage: banshee
UpgradeStatus: Upgraded to trusty on 2013-12-05 (64 days ago)

** Affects: banshee (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/1277812

Title:
  Scrolling using mouse wheel doesn't work

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

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


[Bug 1215098] Re: iPhone with iOS 7 does not work on Ubuntu

2014-01-05 Thread Martijn de Nerd
Libimobiledevice seems to be the source of the problem. See also: 
https://bugs.launchpad.net/ubuntu/+source/libimobiledevice/+bug/1207812


** Package changed: linux (Ubuntu) = libimobiledevice (Ubuntu)

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

Title:
  iPhone with iOS 7 does not work on Ubuntu

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

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


[Bug 1207812] Re: [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

2014-01-05 Thread Martijn de Nerd
Vince, could you elaborate on what you mean by 'better'? Are photos accessible 
for example? 
Also, do you have a binary/package/howto available maybe? Thanks :)

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

Title:
  [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

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

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


[Bug 1215098] Re: iPhone with iOS 7 does not work on Ubuntu

2013-12-31 Thread Martijn de Nerd
*** This bug is a duplicate of bug 1207812 ***
https://bugs.launchpad.net/bugs/1207812

Hi guys, marked it as a duplicate of 1207812, seems to be the same
problem.

** This bug has been marked a duplicate of bug 1207812
   [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

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

Title:
  iPhone with iOS 7 does not work on Ubuntu

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

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


[Bug 1207812] Re: [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

2013-12-31 Thread Martijn de Nerd
I believe the problem is in this library (and not in the 'linx' package)
. on their website :

http://www.libimobiledevice.org/

they state that they have fixed ios7 trust issues, however only for
version 1.1.6, which is still to be released.  Our only hope is that a
backport can be made of the relevant patch, maybe one of the package
maintainers can comment? And confirm the bug.. thanks!


** Package changed: linux (Ubuntu) = libimobiledevice (Ubuntu)

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

Title:
  [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

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

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


[Bug 1215098] Re: iPhone with iOS 7 does not work on Ubuntu

2013-12-31 Thread Martijn de Nerd
Hi Christopher,

Don't you think it is a duplicate then? I didn't want to make my changes to the 
affected package on two reports.. 
I won't file a new bug report btw, think there is enough information here 
already.

Martijn

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

Title:
  iPhone with iOS 7 does not work on Ubuntu

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

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


[Bug 1207812] Re: [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

2013-12-31 Thread Martijn de Nerd
No I'm afraid not, 1.1.6 is not released yet. If someone could compile a
version with the current trunk i would happily test it...

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

Title:
  [Sony VGN-SR29XN_S] Iphone with iOS 7 does not work on Ubuntu

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

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


[Bug 1252733] [NEW] [XPS 12-9Q33, Realtek ALC668, Black Headphone Out, Left] Background noise or low volume

2013-11-19 Thread Martijn vdS
Public bug reported:

When listening to sound on my laptop through headphones, there's a
constant background hiss (which disappears only when all sound has been
stopped for a few seconds. power saving I guess).

I also need to turn the volume *way* down to 10% for the sound volume to
be reasonable (it's way too loud otherwise).

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: alsa-base 1.0.25+dfsg-0ubuntu4
ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
Uname: Linux 3.11.0-13-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  martijn2130 F pulseaudio
 /dev/snd/pcmC1D0p:   martijn2130 F...m pulseaudio
 /dev/snd/controlC0:  martijn2130 F pulseaudio
Date: Tue Nov 19 14:26:46 2013
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-11-13 (6 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
Symptom_Card: Intern geluid - HDA Intel PCH
Symptom_Jack: Black Headphone Out, Left
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: High background noise, or volume is too low
Title: [XPS 12-9Q33, Realtek ALC668, Black Headphone Out, Left] Background 
noise or low volume
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/24/2013
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A03
dmi.board.name: XPS 12-9Q33
dmi.board.vendor: Dell Inc.
dmi.board.version: A03
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: Not Specified
dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd09/24/2013:svnDellInc.:pnXPS12-9Q33:pvrA03:rvnDellInc.:rnXPS12-9Q33:rvrA03:cvnDellInc.:ct8:cvrNotSpecified:
dmi.product.name: XPS 12-9Q33
dmi.product.version: A03
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug saucy

** Attachment removed: CurrentDmesg.txt
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1252733/+attachment/3912583/+files/CurrentDmesg.txt

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

Title:
  [XPS 12-9Q33, Realtek ALC668, Black Headphone Out, Left] Background
  noise or low volume

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

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


[Bug 1241869] Re: package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2013-10-25 Thread Martijn Heemels
I'm seeing the error on multiple servers on multiple virtual platforms, such as:
* Servers running in Amazon VPC, based on the official Ubuntu AMI.
* Servers running in VMware ESXi, based on the official Ubuntu Server 12.04 ISO.

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

Title:
  package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: sub-
  processo script post-installation instalado retornou estado de saída
  de erro 1

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

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

[Bug 1235914] [NEW] Please enable L2TPv3 support and related modules

2013-10-06 Thread Martijn vdS
Public bug reported:

Hello,

Currently, the kernel doesn't include support for L2TP v3.

These are the relevant kernel options:
CONFIG_L2TP_V3 Y
CONFIG_L2TP_ETH M
CONFIG_L2TP_IP M

Debian has had it enabled since Squeeze.

Martijn.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: linux-image-3.11.0-11-generic 3.11.0-11.17
ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
Uname: Linux 3.11.0-7-generic x86_64
ApportVersion: 2.12.5-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  martijn2473 F pulseaudio
 /dev/snd/controlC0:  martijn2473 F pulseaudio
 /dev/snd/controlC1:  martijn2473 F pulseaudio
Date: Sun Oct  6 12:23:25 2013
HibernationDevice: RESUME=UUID=024bd461-597f-4fdc-aa42-dd226e9d554b
InstallationDate: Installed on 2013-06-02 (125 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: Gigabyte Technology Co., Ltd. Z87X-OC
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=47694405-80e7-45ce-b6b1-c8b69d2be423 ro intel_pstate=enable quiet 
splash
RelatedPackageVersions:
 linux-restricted-modules-3.11.0-7-generic N/A
 linux-backports-modules-3.11.0-7-generic  N/A
 linux-firmware1.116
RfKill:
 
SourcePackage: linux
UpgradeStatus: Upgraded to saucy on 2013-06-05 (123 days ago)
dmi.bios.date: 08/03/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F6
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z87X-OC-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF6:bd08/03/2013:svnGigabyteTechnologyCo.,Ltd.:pnZ87X-OC:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ87X-OC-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: Z87X-OC
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


** Tags: amd64 apport-bug saucy

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

Title:
  Please enable L2TPv3 support and related modules

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

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


[Bug 1207612] Re: 046d:0825 Using webcam fills log with xhci_hcd errors

2013-08-03 Thread Martijn vdS
The webcam works fine. It just spams the log (quite rapidly, too),
probably because the xhci controller is hci_version 1.0, which does some
things differently from 0.96.

The changelog of the linked patch describes this.

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

Title:
  046d:0825 Using  webcam fills log with xhci_hcd errors

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

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


[Bug 1207612] Re: 046d:0825 Using webcam fills log with xhci_hcd errors

2013-08-03 Thread Martijn vdS
The patch is in Linus' git tree:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=07f3cb7c28bf3f4dd80bfb136cf45810c46ac474

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

Title:
  046d:0825 Using  webcam fills log with xhci_hcd errors

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

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


[Bug 1207612] Re: 046d:0825 Using webcam fills log with xhci_hcd errors

2013-08-03 Thread Martijn vdS
I've installed 3.11.0-031100rc3-generic (3.11.0-031100rc3.201307290035)
from http://kernel.ubuntu.com/~kernel-ppa/mainline/

This fixes 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/1207612

Title:
  046d:0825 Using  webcam fills log with xhci_hcd errors

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

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


[Bug 1207612] Re: Using webcam fills log with xhci_hcd errors

2013-08-01 Thread Martijn vdS
It seems like this patch might contain a fix:
http://lkml.indiana.edu/hypermail/linux/kernel/1307.0/00015.html

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

Title:
  Using  webcam fills log with xhci_hcd errors

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

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


[Bug 1207612] [NEW] Using webcam fills log with xhci_hcd errors

2013-08-01 Thread Martijn vdS
Public bug reported:

My kernel log fills up with messages like this (several dozens of times
per second) when I'm using my Logitech:

Bus 001 Device 009: ID 046d:0825 Logitech, Inc. Webcam C270

[39578.723588] xhci_hcd :00:14.0: ERROR Transfer event TRB DMA ptr
not part of current TD

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-6-generic 3.10.0-6.17
ProcVersionSignature: Ubuntu 3.10.0-6.17-generic 3.10.3
Uname: Linux 3.10.0-6-generic x86_64
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  martijn2421 F pulseaudio
 /dev/snd/controlC2:  martijn2421 F pulseaudio
 /dev/snd/pcmC2D0p:   martijn2421 F...m pulseaudio
 /dev/snd/controlC0:  martijn2421 F pulseaudio
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Date: Fri Aug  2 06:56:16 2013
HibernationDevice: RESUME=UUID=024bd461-597f-4fdc-aa42-dd226e9d554b
InstallationDate: Installed on 2013-06-02 (60 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: Gigabyte Technology Co., Ltd. Z87X-OC
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-6-generic 
root=UUID=47694405-80e7-45ce-b6b1-c8b69d2be423 ro intel_pstate=enable quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-6-generic N/A
 linux-backports-modules-3.10.0-6-generic  N/A
 linux-firmware1.112
RfKill:
 
SourcePackage: linux
UpgradeStatus: Upgraded to saucy on 2013-06-05 (57 days ago)
dmi.bios.date: 07/18/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F5
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z87X-OC-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd07/18/2013:svnGigabyteTechnologyCo.,Ltd.:pnZ87X-OC:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ87X-OC-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: Z87X-OC
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


** Tags: amd64 apport-bug saucy

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

Title:
  Using  webcam fills log with xhci_hcd errors

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

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


[Bug 1207612] Re: Using webcam fills log with xhci_hcd errors

2013-08-01 Thread Martijn vdS
** Description changed:

  My kernel log fills up with messages like this (several dozens of times
- per second) when I'm using my Logitech:
+ per second) when I'm using my Logitech webcam:
  
  Bus 001 Device 009: ID 046d:0825 Logitech, Inc. Webcam C270
  
  [39578.723588] xhci_hcd :00:14.0: ERROR Transfer event TRB DMA ptr
  not part of current TD
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.10.0-6-generic 3.10.0-6.17
  ProcVersionSignature: Ubuntu 3.10.0-6.17-generic 3.10.3
  Uname: Linux 3.10.0-6-generic x86_64
  ApportVersion: 2.11-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC1:  martijn2421 F pulseaudio
-  /dev/snd/controlC2:  martijn2421 F pulseaudio
-  /dev/snd/pcmC2D0p:   martijn2421 F...m pulseaudio
-  /dev/snd/controlC0:  martijn2421 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  martijn2421 F pulseaudio
+  /dev/snd/controlC2:  martijn2421 F pulseaudio
+  /dev/snd/pcmC2D0p:   martijn2421 F...m pulseaudio
+  /dev/snd/controlC0:  martijn2421 F pulseaudio
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Date: Fri Aug  2 06:56:16 2013
  HibernationDevice: RESUME=UUID=024bd461-597f-4fdc-aa42-dd226e9d554b
  InstallationDate: Installed on 2013-06-02 (60 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  IwConfig:
-  eth0  no wireless extensions.
-  
-  lono wireless extensions.
+  eth0  no wireless extensions.
+ 
+  lono wireless extensions.
  MachineType: Gigabyte Technology Co., Ltd. Z87X-OC
  MarkForUpload: True
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.10.0-6-generic 
root=UUID=47694405-80e7-45ce-b6b1-c8b69d2be423 ro intel_pstate=enable quiet 
splash vt.handoff=7
  RelatedPackageVersions:
-  linux-restricted-modules-3.10.0-6-generic N/A
-  linux-backports-modules-3.10.0-6-generic  N/A
-  linux-firmware1.112
+  linux-restricted-modules-3.10.0-6-generic N/A
+  linux-backports-modules-3.10.0-6-generic  N/A
+  linux-firmware1.112
  RfKill:
-  
+ 
  SourcePackage: linux
  UpgradeStatus: Upgraded to saucy on 2013-06-05 (57 days ago)
  dmi.bios.date: 07/18/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F5
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Z87X-OC-CF
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd07/18/2013:svnGigabyteTechnologyCo.,Ltd.:pnZ87X-OC:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ87X-OC-CF:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: Z87X-OC
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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

Title:
  Using  webcam fills log with xhci_hcd errors

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

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

[Bug 1206367] [NEW] radclient fails to validate Message-Authenticator on Disconnect-ACK packets

2013-07-29 Thread Martijn vdS
Public bug reported:

When I send a Disconnect-Request to a Hostapd instance, it sends back
a Disconnect-ACK packet with a Message-Authenticator set.

However, radclient thinks the value of this Message-Authenticator is
invalid (because it doesn't check properly).

This bug has been fixed in upstream version 2.2.0.

A patch is discussed here:
http://freeradius.1045715.n5.nabble.com/radclient-and-Message-Authenticator-validation-td5689533.html

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: freeradius (not installed)
ProcVersionSignature: Ubuntu 3.10.0-5.14-generic 3.10.2
Uname: Linux 3.10.0-5-generic x86_64
ApportVersion: 2.11-0ubuntu1
Architecture: amd64
Date: Tue Jul 30 07:00:36 2013
InstallationDate: Installed on 2013-06-02 (57 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
SourcePackage: freeradius
UpgradeStatus: Upgraded to saucy on 2013-06-05 (54 days ago)

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


** Tags: amd64 apport-bug saucy

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

Title:
  radclient fails to validate Message-Authenticator on Disconnect-ACK
  packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeradius/+bug/1206367/+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 1206367] Re: radclient fails to validate Message-Authenticator on Disconnect-ACK packets

2013-07-29 Thread Martijn vdS
I send the packet like this (IP of the hostap instance is 10.0.0.2,
Event-Timestamp is current when I try this, otherwise hostapd wouldn't
send a Disconnect-ACK, but just not reply at all, this happened to me
during some earlier debugging):

$ cat packet.txt
Acct-Session-Id=-XXX
User-Name=u...@name.com
Message-Authenticator=0
Event-Timestamp=1375159866

$ radclient -x 10.0.0.2:3799 disconnect 'SharedSecret'  packet.txt
Sending Disconnect-Request of id 176 to 10.0.0.2 port 3799
Acct-Session-Id = -XXX
User-Name = u...@name.com
Message-Authenticator = 0x
Event-Timestamp = Jul 30 2013 06:51:06 CEST
rad_recv: Disconnect-ACK packet from host 10.0.0.2 port 3799, id=176, length=44
rad_verify: Received packet from 10.0.0.2 with invalid Message-Authenticator!  
(Shared secret is incorrect.)

The last line is where the problem is: the incoming Disconnect-ACK
isn't verified properly.

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

Title:
  radclient fails to validate Message-Authenticator on Disconnect-ACK
  packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeradius/+bug/1206367/+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


  1   2   3   4   5   6   7   8   9   10   >