[Bug 2077430] Re: [OVN] Router gateway does not have a chassis defined

2024-08-26 Thread Damian Dąbrowski
I accidentally created bug report in a wrong project.
Correct bug report is here: https://bugs.launchpad.net/neutron/+bug/2077879

** Changed in: neutron (Ubuntu)
   Status: New => Invalid

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

Title:
  [OVN] Router gateway does not have a chassis defined

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


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

[Bug 2077430] Re: [OVN] Router gateway does not have a chassis defined

2024-08-20 Thread Damian Dąbrowski
** Summary changed:

- [OVN] two routers connected to the same network do not work properly
+ [OVN] Router gateway does not have a chassis defined

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

Title:
  [OVN] Router gateway does not have a chassis defined

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


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

[Bug 2077430] Re: [OVN] two routers connected to the same network do not work properly

2024-08-20 Thread Damian Dąbrowski
** Description changed:

- 
  # Problem Description
  
  I have:
  
  - 2 VMs connected to inner-net
  - inner-router(with default gateway in outer-net and a port in inner-net)
  - outer router(with default gateway in public network and a port in outer-net)
  
  NOTE: I don't have any static routes defined for these routers.
  
  Graphical visualization can be found here:
  https://i.ibb.co/gzjd604/Screenshot-from-2024-08-20-13-26-55.png
  
  This scenario works perfectly fine for OVS ML2 driver(VMs have Internet
  connectivity), but not for OVN.
  
  I noticed that gateway port for inner-router is DOWN(you can see this on
  the above screenshot) which looks quite suspicious.
  
  I applied https://review.opendev.org/c/openstack/neutron/+/907504 but it
  didn't solve the problem.
+ 
+ # Further Investigation
+ 
+ I noticed that inner-router's gateway interface does not have a chassis
+ assigned:
+ 
+ ```
+ router 7a5baad4-657d-42fc-bf35-1b8e4115050e 
(neutron-028eb3f7-af0b-4080-87d6-e84b24675b6d) (aka inner-router)
+ port lrp-a221d264-8fa3-4430-99f7-f453887b96aa
+ mac: "fa:16:3e:af:b0:ae"
+ networks: ["10.10.0.60/24"]
+ port lrp-9ac7815d-75dc-4198-aa94-bfe5ad5431e2
+ mac: "fa:16:3e:05:30:57"
+ networks: ["10.0.0.1/24"]
+ nat 8fca2dfd-2284-4e18-98be-137606f0f0b9
+ external ip: "10.10.0.60"
+ logical ip: "10.0.0.0/24"
+ type: "snat"
+ ```
+ 
+ I fixed it with `ovn-nbctl lrp-set-gateway-chassis
+ lrp-a221d264-8fa3-4430-99f7-f453887b96aa
+ efcb326f-f18c-4b65-9da9-260dd0e2e603`.
+ 
+ Now everything looks good. Internet connectivity is working and neutron
+ gateway port(10.10.0.60) is ACTIVE instead of DOWN.
  
  # How to reproduce the issue
  
  (assuming that you have a test environment with 'public' network already
  defined)
  
  ```
  openstack network create outer-net --external --disable-port-security
  openstack subnet create --network outer-net --subnet-range 10.10.0.0/24 
outer-subnet
  openstack router create outer-router --external-gateway public
  openstack router add subnet outer-router outer-subnet
  
  openstack network create inner-net --disable-port-security
  openstack subnet create --network inner-net --subnet-range 10.0.0.0/24 
inner-subnet
  openstack router create --external-gateway outer-net inner-router
  openstack router add subnet inner-router inner-subnet
  
  openstack server create \
  --network inner-net \
  --image 'cirros' \
  --flavor 'tempest1' \
  vm-inner-1
  ```
  
  Then, log in to vm-inner-1 and try to ping 8.8.8.8.
  For OVS it works, for OVN it doesn't.

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

Title:
  [OVN] two routers connected to the same network do not work properly

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


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

[Bug 2077430] Re: [OVN] two routers connected to the same network do not work properly

2024-08-20 Thread Damian Dąbrowski
** Summary changed:

- [OVN] two routers connected to the same network does not work properly
+ [OVN] two routers connected to the same network do not work properly

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

Title:
  [OVN] two routers connected to the same network do not work properly

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


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

[Bug 2077430] [NEW] [OVN] two routers connected to the same network does not work properly

2024-08-20 Thread Damian Dąbrowski
Public bug reported:


# Problem Description

I have:

- 2 VMs connected to inner-net
- inner-router(with default gateway in outer-net and a port in inner-net)
- outer router(with default gateway in public network and a port in outer-net)

NOTE: I don't have any static routes defined for these routers.

Graphical visualization can be found here:
https://i.ibb.co/gzjd604/Screenshot-from-2024-08-20-13-26-55.png

This scenario works perfectly fine for OVS ML2 driver(VMs have Internet
connectivity), but not for OVN.

I noticed that gateway port for inner-router is DOWN(you can see this on
the above screenshot) which looks quite suspicious.

I applied https://review.opendev.org/c/openstack/neutron/+/907504 but it
didn't solve the problem.

# How to reproduce the issue

(assuming that you have a test environment with 'public' network already
defined)

```
openstack network create outer-net --external --disable-port-security
openstack subnet create --network outer-net --subnet-range 10.10.0.0/24 
outer-subnet
openstack router create outer-router --external-gateway public
openstack router add subnet outer-router outer-subnet

openstack network create inner-net --disable-port-security
openstack subnet create --network inner-net --subnet-range 10.0.0.0/24 
inner-subnet
openstack router create --external-gateway outer-net inner-router
openstack router add subnet inner-router inner-subnet

openstack server create \
--network inner-net \
--image 'cirros' \
--flavor 'tempest1' \
vm-inner-1
```

Then, log in to vm-inner-1 and try to ping 8.8.8.8.
For OVS it works, for OVN it doesn't.

** Affects: neutron (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/2077430

Title:
  [OVN] two routers connected to the same network does not work properly

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


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

[Bug 2077219] Re: Minecraft server crashes java

2024-08-18 Thread Damian
I have this error on several Minecraft servers, I have the latest Java 
installed supporting the version of Minecraft I am using.
My dedicated machine has been scanned by technicians regarding hardware and 
everything is OK.
What can I do to get rid of 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/2077219

Title:
  Minecraft server crashes java

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


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

[Bug 2077219] Re: Minecraft server crashes java

2024-08-17 Thread Damian
next crash

** Attachment added: "hs_err_pid57597.log"
   
https://bugs.launchpad.net/ubuntu/+source/openjdk-21/+bug/2077219/+attachment/5806552/+files/hs_err_pid57597.log

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

Title:
  Minecraft server crashes java

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


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

[Bug 2077219] Re: Minecraft server crashes java

2024-08-17 Thread Damian
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x7f0afe64397b, pid=1669, tid=1671
#
# JRE version: OpenJDK Runtime Environment (21.0.4+7) (build 
21.0.4+7-Ubuntu-1ubuntu222.04)
# Java VM: OpenJDK 64-Bit Server VM (21.0.4+7-Ubuntu-1ubuntu222.04, mixed mode, 
sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64)
# Problematic frame:
# V  [libjvm.so+0x80b97b]  
G1ParScanThreadState::trim_queue_to_threshold(unsigned int)+0x159b
#
# Core dump will be written. Default location: Core dumps may be processed with 
"/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping 
to /home/aphonix/igrzyska/core.1669)
#
# If you would like to submit a bug report, please visit:
#   https://bugs.launchpad.net/ubuntu/+source/openjdk-21

** Attachment added: "hs_err_pid1669.log"
   
https://bugs.launchpad.net/ubuntu/+source/openjdk-21/+bug/2077219/+attachment/5806546/+files/hs_err_pid1669.log

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

Title:
  Minecraft server crashes java

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


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

[Bug 2077219] [NEW] Minecraft server crashes java

2024-08-17 Thread Damian
Public bug reported:

Hello, I have a problem with minecraft servers, several servers with
different plugins crash from time to time for some reason. Help me solve
this.

** Affects: openjdk-21 (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/2077219

Title:
  Minecraft server crashes java

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


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

[Bug 1968548] Re: firefox snap unable to open files from file-roller

2024-08-06 Thread Damian Yerrick
The underlying cause also blocks opening README.html files installed
alongside Windows applications, because `.wine` is among the hidden
folders that Snap confinement blocks. Should I file a separate bug?

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

Title:
  firefox snap unable to open files from file-roller

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


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

[Bug 1959417] Re: browsers and other apps packaged as snaps can't read files under ~/.local/share/

2024-07-20 Thread Damian Yerrick
The upstream fix is specific to Jupyter. Should this bug's title be made
specific to Jupyter?

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

Title:
  browsers and other apps packaged as snaps can't read files under
  ~/.local/share/

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


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

[Bug 2061698] Re: Editing image, selecting a region and it crashed GIMP_2_10_36

2024-07-16 Thread Damian Yerrick
Until someone cherry-picks the fix, a workaround is to close the
Patterns dockable dialog before copying a skinny region to the
clipboard.

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

Title:
  Editing image, selecting a region and it crashed GIMP_2_10_36

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


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

[Bug 1979988] Re: The fill under the graph does not work correctly.

2024-07-16 Thread Damian Yerrick
This is fixed in noble. Can the fix be cherry-picked for LTS?

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

Title:
  The fill under the graph does not work correctly.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-taskmanager/+bug/1979988/+subscriptions


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

[Bug 1906740] Re: Set Colormap gives "invalid parameter name 'num colors'"

2024-07-16 Thread Damian Yerrick
Now that noble has GIMP 2.10.36, this no longer affects me.

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

Title:
  Set Colormap gives "invalid parameter name 'num colors'"

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


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

[Bug 2069532] [NEW] GIMP 2.10 crashes when copying and pasting pixels

2024-06-16 Thread Damian Yerrick
Public bug reported:

I was copying and pasting a thin (152 by 2 pixels) rectangular area in a
small (160 by 144 pixels) image in GIMP 2.10.36 on Xubuntu 24.04 on a
Lenovo ThinkPad T450 laptop with an Intel Core i5-5300U CPU and 8 GB of
RAM. I got a crash. After restoring the session and repeating the copy
and paste, I got the same crash.

To reproduce:

1. In GIMP, create a new image 160 by 144 pixels
2. Choose Rectangle Select tool (press r)
3. Zoom in for the following steps
4. Drag a rectangle with upper left corner (4, 134), width 152 pixels, height 2 
pixels
5. Ctrl+C, Ctrl+V

I expected the image to bee based onto a new floating selection; instead
I got a crash.




```
GNU Image Manipulation Program version 2.10.36
git-describe: GIMP_2_10_36
Build: unknown rev 0 for linux
# C compiler #
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs 
--enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-13 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify 
--enable-plugin --enable-default-pie --with-system-zlib 
--enable-libphobos-checking=release --with-target-system-zlib=auto 
--enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet 
--with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 
--enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr
 --enable-offload-defaulted --without-cuda-driver --enable-checking=release 
--build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4) 

# Libraries #
using babl version 0.1.108 (compiled against version 0.1.108)
using GEGL version 0.4.48 (compiled against version 0.4.48)
using GLib version 2.80.0 (compiled against version 2.80.0)
using GdkPixbuf version 2.42.10 (compiled against version 2.42.10)
using GTK+ version 2.24.33 (compiled against version 2.24.33)
using Pango version 1.52.1 (compiled against version 1.52.1)
using Fontconfig version 2.15.0 (compiled against version 2.15.0)
using Cairo version 1.18.0 (compiled against version 1.18.0)

```
> fatal error: Segmentation fault

Stack trace:
```

# Stack traces obtained from PID 6886 - Thread 6886 #


This GDB supports auto-downloading debuginfo from the following URLs:
  
Enable debuginfod for this session? (y or [n]) [answered N; input not from 
terminal]
Debuginfod has been disabled.
To make this setting permanent, add 'set debuginfod enabled off' to .gdbinit.
[New LWP 6917]
[New LWP 6905]
[New LWP 6902]
[New LWP 6901]
[New LWP 6900]
[New LWP 6895]
[New LWP 6894]
[New LWP 6893]
[New LWP 6889]
[New LWP 6888]
[New LWP 6887]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7b18f791ba9a in __GI___libc_read (nbytes=256, buf=0x7ffef6bddff0, fd=14) 
at ../sysdeps/unix/sysv/linux/read.c:26
  Id   Target Id Frame 
* 1Thread 0x7b18f7087640 (LWP 6886) "gimp-2.10"  0x7b18f791ba9a in 
__GI___libc_read (nbytes=256, buf=0x7ffef6bddff0, fd=14) at 
../sysdeps/unix/sysv/linux/read.c:26
  2Thread 0x7b18b60006c0 (LWP 6917) "swap writer"syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3Thread 0x7b18b56006c0 (LWP 6905) "gimp-2.10"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4Thread 0x7b18b6a006c0 (LWP 6902) "gimp-2.10"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5Thread 0x7b18b74006c0 (LWP 6901) "pool-gimp-2.10" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  6Thread 0x7b18b7e006c0 (LWP 6900) "async"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  7Thread 0x7b18eda006c0 (LWP 6895) "gdbus"  0x7b18f791b4cd in 
__GI___poll (fds=0x7b18db90, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  8Thread 0x7b18e7e006c0 (LWP 6894) "gmain"  0x7b18f791b4cd in 
__GI___poll (fds=0x5abad52beff0, nfds=2, timeout=3607) at 
../sysdeps/unix/sysv/linux/poll.c:29
  9Thread 0x7b18e

[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location

2024-04-26 Thread Damian Zaręba
Would be great to have possibility to have hidden snap folder out of
experimental field in snap settings. If you need any help, code-wise,
money or whatever, just tell us. We will help.

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

Title:
  Please move the "$HOME/snap" directory to a less obtrusive location

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


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

[Bug 1918265] Re: Random boot failure with Ubuntu 20.04 / grub 2.04 and Hyper-V 2012r2

2021-11-09 Thread Damian Kramer
The reddit link posted by Lucas above suggested that Hyper-V 2019
doesn't have the issues. Can anyone confirm?

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

Title:
  Random boot failure with Ubuntu 20.04 / grub 2.04 and Hyper-V 2012r2

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


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

[Bug 1918265] Re: Random boot failure with Ubuntu 20.04 / grub 2.04 and Hyper-V 2012r2

2021-11-09 Thread Damian Kramer
I can confirm same problem has just hit us. Gen 2 VM, linux-generic
kernel running on Hyper-V 2016. Had been happily running for many
months. Did a reboot and it failed to boot. Disconnected all of the
interfaces from the virtual switch, then it booted. This particular VM
is our DHCP server, so fairly critical. Think we're going to need to
look at something other than Ubuntu now, as need to rely on this in
production :(

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

Title:
  Random boot failure with Ubuntu 20.04 / grub 2.04 and Hyper-V 2012r2

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


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

[Bug 1947954] [NEW] GIMP segfault when dragging a pasted layer

2021-10-20 Thread Damian Yerrick
Public bug reported:

While I was dragging a pasted layer around in GIMP 2.10.24-2 on Xubuntu 21.10 
(64-bit) on ThinkPad T450, GIMP randomly crashed with a segmentation fault.
```
GNU Image Manipulation Program version 2.10.24
git-describe: GIMP_2_10_24
Build: unknown rev 0 for linux
# C compiler #
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
10.3.0-6ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-10/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-10 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--with-default-libstdcxx-abi=new --enable-gnu-unique-object 
--disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib 
--enable-libphobos-checking=release --with-target-system-zlib=auto 
--enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib 
--with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-10-IAajkb/gcc-10-10.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-10-IAajkb/gcc-10-10.3.0/debian/tmp-gcn/usr,hsa
 --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu 
--with-build-config=bootstrap-lto-lean --enable-link-mutex
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.3.0 (Ubuntu 10.3.0-6ubuntu1) 

# Libraries #
using babl version 0.1.88 (compiled against version 0.1.88)
using GEGL version 0.4.32 (compiled against version 0.4.30)
using GLib version 2.68.4 (compiled against version 2.68.3)
using GdkPixbuf version 2.42.6 (compiled against version 2.42.6)
using GTK+ version 2.24.33 (compiled against version 2.24.33)
using Pango version 1.48.10 (compiled against version 1.48.7)
using Fontconfig version 2.13.1 (compiled against version 2.13.1)
using Cairo version 1.16.0 (compiled against version 1.16.0)

```
> fatal error: Segmentation fault

Stack trace:
```

# Stack traces obtained from PID 24863 - Thread 24863 #

[New LWP 24865]
[New LWP 24866]
[New LWP 24867]
[New LWP 24868]
[New LWP 24869]
[New LWP 24870]
[New LWP 24906]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
__GI___libc_read (nbytes=256, buf=0x7ffe2d233650, fd=14) at 
../sysdeps/unix/sysv/linux/read.c:26
  Id   Target Id   Frame 
* 1Thread 0x7f56a4d45300 (LWP 24863) "gimp-2.10"   __GI___libc_read 
(nbytes=256, buf=0x7ffe2d233650, fd=14) at ../sysdeps/unix/sysv/linux/read.c:26
  2Thread 0x7f56a45d8640 (LWP 24865) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3Thread 0x7f56a3dd7640 (LWP 24866) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4Thread 0x7f569b5d6640 (LWP 24867) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5Thread 0x7f56a2a61640 (LWP 24868) "gmain"   0x7f56a59f6cdf in 
__GI___poll (fds=0x55973a18b220, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  6Thread 0x7f56a2260640 (LWP 24869) "gdbus"   0x7f56a59f6cdf in 
__GI___poll (fds=0x55973a1b0290, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  7Thread 0x7f5688c46640 (LWP 24870) "async"   syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  8Thread 0x7f56814e4640 (LWP 24906) "swap writer" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38

Thread 8 (Thread 0x7f56814e4640 (LWP 24906) "swap writer"):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7f56a5c95e03 in g_cond_wait () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f56a6195d79 in  () at /lib/x86_64-linux-gnu/libgegl-0.4.so.0
#3  0x7f56a5c76a81 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f56a5973927 in start_thread (arg=) at 
pthread_create.c:435
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140009513305664, 
-6858389264744652037, 140729655700734, 140729655700735, 0, 140009504915456, 
6809189548687024891, 6809249549373596411}, mask_was_saved = 0}}, priv = {pad = 
{0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
not_first_call = 
#5  0x7f56a5a039e4 in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:100

Thread 7 (Thread 0x7f5688c46640 (LWP 24870) "async"):
#0  sysca

[Bug 1906740] [NEW] Set Colormap gives "invalid parameter name 'num colors'"

2020-12-03 Thread Damian Yerrick
Public bug reported:

I'm using GIMP 2.10.18-1 on Xubuntu 20.04.1. In Colors > Map > Set
Colormap, when I click the Palette: Default button to set the
replacement palette, I'm supposed to see a list of palettes from which
to choose. Instead, I get the following error:

Plug-in "script-fu"
(/usr/lib/gimp/2.0/plug-ins/script-fu/script-fu)
attempted to install procedure "temp-procedure-number-6" with invalid parameter 
name "num colors".

These forum references claim that this error is specific to versions
2.10.16 and 2.10.18 and was fixed in 2.10.20:

https://www.reddit.com/r/GIMP/comments/gb5zih/error_when_running_set_colormap_script/
http://gimpchat.com/viewtopic.php?f=9&t=18293

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gimp 2.10.18-1
ProcVersionSignature: Ubuntu 5.4.0-56.62-generic 5.4.73
Uname: Linux 5.4.0-56-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.13
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: XFCE
Date: Thu Dec  3 19:36:12 2020
InstallationDate: Installed on 2018-06-10 (907 days ago)
InstallationMedia: Xubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: gimp
UpgradeStatus: Upgraded to focal on 2020-11-04 (29 days ago)

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


** Tags: amd64 apport-bug focal 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/1906740

Title:
  Set Colormap gives "invalid parameter name 'num colors'"

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

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

[Bug 1883545] Re: Focal needs a new upload of fwupd-signed

2020-06-15 Thread Damian harouff
Automated install of Focal also dies during installation with this
issue, screenshot of IPMI console during install attached.

** Attachment added: "3c2c1095-ce7d-4877-bf79-78bf57f04471.png"
   
https://bugs.launchpad.net/ubuntu/+source/fwupd-signed/+bug/1883545/+attachment/5384128/+files/3c2c1095-ce7d-4877-bf79-78bf57f04471.png

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

Title:
  Focal needs a new upload of fwupd-signed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fwupd-signed/+bug/1883545/+subscriptions

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

[Bug 1795207] Re: upgrade to ubuntu-18.04: 'ubuntu-minimal' not found

2020-05-25 Thread Damian Icely
Still affecting me upgrating from 18.04 LTS to 20.04 LTS

After updating your package information, the essential package 
'ubuntu-minimal' could not be located. This may be because you have 
no official mirrors listed in your software sources, or because of 
excessive load on the mirror you are using. See /etc/apt/sources.list 
for the current list of configured software sources. 
In the case of an overloaded mirror, you may want to try the upgrade 
again later. 

``` 
Restoring original system state

Aborting
  g package lists... 4%[[B
*** Collecting problem information

The collected information can be sent to the developers to improve the
application. This might take a few minutes.
Reading package lists... Done
Building dependency tree  
Reading state information... Done
```

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

Title:
  upgrade to ubuntu-18.04: 'ubuntu-minimal' not found

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

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

[Bug 1878723] Re: Kernel panic when used with upstart after 0.11-4ubuntu2.1 update

2020-05-15 Thread Damian harouff
Just want to give a heads up that manual unpack followed by apt install
-f still crashes, however the VM automatically rebooted this time
(instead of remaining dead) and I was able to proceed with usual apt
update afterwards with no further issues.

root@web1:~# curl -LO 
https://launchpad.net/ubuntu/+archive/primary/+files/libjson-c2_0.11-4ubuntu2.2_amd64.deb
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed
  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
100 21858  100 218580 0  10273  0  0:00:02  0:00:02 --:--:--  164k
root@web1:~# dpkg --unpack libjson-c2_0.11-4ubuntu2.2_amd64.deb
(Reading database ... 39096 files and directories currently installed.)
Preparing to unpack libjson-c2_0.11-4ubuntu2.2_amd64.deb ...
Unpacking libjson-c2:amd64 (0.11-4ubuntu2.2) over (0.11-4ubuntu2.2) ...
Processing triggers for libc-bin (2.23-0ubuntu11) ...
root@web1:~# reboot
root@web1:~# logout
[root@redacted ~]# vzctl enter 040199a0-e959-4428-87e6-76dd3b26262e
entered into CT
root@web1:/# apt install -f
Reading package lists... Done
Building dependency tree... 50%
[1]+  Stopped apt install -f
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 15 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up libjson-c2:amd64 (0.11-4ubuntu2.2) ...
Processing triggers for libc-bin (2.23-0ubuntu11) ...
Got signal 9
[root@redacted ~]#

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

Title:
  Kernel panic when used with upstart after 0.11-4ubuntu2.1 update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/json-c/+bug/1878723/+subscriptions

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

[Bug 1873614] Re: Definition of add_mountroot_fail_hook doesnt match lvm2's usage

2020-04-23 Thread Damian
Please fix this, affects me after upgrading to 20.04 from 18.04

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

Title:
  Definition of add_mountroot_fail_hook doesnt match lvm2's usage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1873614/+subscriptions

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

[Bug 1854798] Re: Synaptics s3203 touchpad not working after update to kernel 4.15.0-72-generic

2020-01-06 Thread Damian Yerrick
I confirm that installing Linux 4.15.0.74 also fixes this issue.

sudo sh -c 'apt update && apt -y upgrade && reboot'

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

Title:
  Synaptics s3203 touchpad not working after update to kernel
  4.15.0-72-generic

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

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

[Bug 1854386] Re: Stuck on show applications overlay (can't close it)

2019-12-11 Thread Damian
Sorry for the long wait - I've just tried to uninstall all gnome-shell
extensions I had, it turned out I have one that was causing the problem
- 'workspaces to dock', that I tried to use to get more macos like
experience with workspaces (left-right swiping with cmd-right/left).
Uninstalling it solved the problem.

Now I'll need to find another solution for that extension, but at least
this bigger issue is resolved. Thank you very much for your help!

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

Title:
  Stuck on show applications overlay (can't close it)

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

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

[Bug 1854386] Re: Stuck on show applications overlay (can't close it)

2019-12-04 Thread Damian
I have gnome-shell 3.34.1. It still has the bug.

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

Title:
  Stuck on show applications overlay (can't close it)

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

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

[Bug 692304] Re: GHex cannot create a new file

2019-12-03 Thread Damian Yerrick
Still affects me on 18.04.

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

Title:
  GHex cannot create a new file

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

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

[Bug 677208] Re: PIL font renderer cuts off descender of some TrueType fonts

2019-12-03 Thread Damian Yerrick
The problem does not occur in the successor package 'python3-pil' under
Ubuntu 18.04. I guess it can be closed as Won't Fix once we no longer
support Python 2.

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

Title:
  PIL font renderer cuts off descender of some TrueType fonts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-imaging/+bug/677208/+subscriptions

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

[Bug 1065955] Re: Button labels in save changes alert are not verbs

2019-12-03 Thread Damian Yerrick
For what it's worth, this bug no longer affects me. Leafpad has been replaced 
with Mousepad, which has the desired order:
[Don't Save] [Cancel] [Save]

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

Title:
  Button labels in save changes alert are not verbs

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

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

[Bug 1854966] [NEW] Touchpad on Dell Inspiron 11 3000 series stopped working in 4.15.0.72

2019-12-03 Thread Damian Yerrick
Public bug reported:

The upgrade from linux-image-4.15.0.69-generic to 4.15.0.72-generic
caused the touchpad on my Dell Inspiron 11 3168 (Inspiron 11 3000
series) running Xubuntu 18.04.3 LTS not to respond to taps, slides, or
clicks.

dmesg | grep -i mouse

[1.654993] mousedev: PS/2 mouse device common for all mice
[2.450725] hid-rmi 0018:06CB:7D47.0001: input,hidraw0: I2C HID v1.00 Mouse 
[DELL074D:00 06CB:7D47] on i2c-DELL074D:00
[6.393181] psmouse serio1: Failed to deactivate mouse on isa0060/serio1
[6.513852] psmouse serio1: Failed to enable mouse on isa0060/serio1
[7.540695] input: PS/2 Generic Mouse as 
/devices/platform/i8042/serio1/input/input6
[7.604635] psmouse serio1: Failed to enable mouse on isa0060/serio1
[ 1482.588242] usb 1-1: Product: USB Optical Mouse
[ 1482.626514] input: USB Optical Mouse as 
/devices/pci:00/:00:14.0/usb1/1-1/1-1:1.0/0003:0461:4D64.0004/input/input19
[ 1482.685476] hid-generic 0003:0461:4D64.0004: input,hidraw2: USB HID v1.11 
Mouse [USB Optical Mouse] on usb-:00:14.0-1/input0
[ 1558.549235] psmouse serio1: Failed to disable mouse on isa0060/serio1

The touch screen still works, the keyboard still works, and an external
USB mouse works (see 1482 in dmesg). I tried Settings > Mouse and
Touchpad > Devices > Synaptics TM3207-001, but turning "Enable this
device" off and on did not work. It remains not working after suspending
and resuming (see 1558 in dmesg).

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-image-4.15.0-72-generic 4.15.0-72.81
ProcVersionSignature: Ubuntu 4.15.0-72.81-generic 4.15.18
Uname: Linux 4.15.0-72-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  pino   1286 F pulseaudio
CurrentDesktop: XFCE
Date: Tue Dec  3 11:12:05 2019
InstallationDate: Installed on 2018-06-10 (541 days ago)
InstallationMedia: Xubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
MachineType: Dell Inc. Inspiron 11-3168
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-72-generic 
root=UUID=ccf02b34-9d5c-4aeb-9ff2-b8526341f1a0 ro quiet splash vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-4.15.0-72-generic N/A
 linux-backports-modules-4.15.0-72-generic  N/A
 linux-firmware 1.173.12
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/31/2018
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 2.3.0
dmi.board.name: 0219X2
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: Not Specified
dmi.modalias: 
dmi:bvnDellInc.:bvr2.3.0:bd01/31/2018:svnDellInc.:pnInspiron11-3168:pvr2.3.0:rvnDellInc.:rn0219X2:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
dmi.product.family: Inspiron
dmi.product.name: Inspiron 11-3168
dmi.product.version: 2.3.0
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug bionic

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

Title:
  Touchpad on Dell Inspiron 11 3000 series stopped working in 4.15.0.72

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

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

[Bug 1854386] Re: Stuck on show applications overlay (can't close it)

2019-11-30 Thread Damian
** Description changed:

  Hello,
  
  I've upgraded my ubuntu 19.04 to 19.10 this morning and I came across
  this very annoying bug.
  
  Whenever I click on 'show applications' or press win key (shortcut), the
  menu with the applications show, but it's empty - you can search through
  it and it works fine (applications show, one can trigger application
  launch), but then after you select an application, the menu doesn't
  disappear at all.
  
  It doesn't go away when pressing any application on the dash panel, nor
  when clicking esc key, it only goes away after you click on the dash
  icon again, BUT...
  
  It doesn't really go away - it just becomes invisible, but still it
  overlaps all the items that are launched (with exception of dash panel,
  because it's not being overlapped), and you can't do anything on any
  launched application. Sometimes when you try to move some windows, you
  can see them getting transformed into a miniature, as if the system
  wanted to insert application into the suggestions on the 'show
  applications'.
  
  The only thing that worked for me was restarting my computer.
  
+ Here is a movie of this happening:
+ 
https://photos.google.com/share/AF1QipNA94MOXY4iH8rm01coSkZcH6ILYas9n2oXNs9Swxo16ijABFqz71VaRpO59tGpPg/photo/AF1QipOqVIZXLZW-Z_7zCIy8eeBGQgJQkPLY-OKfgy0Y?key=MTJBa2pRUl9VU2lmMXdEZGxYX3ZiSDRSTjJxWjdn
+ 
+ I couldn't record screen because apparently the hotkeys were also
+ intercepted and I couldn't save the video.
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: ubuntu-release-upgrader-core 1:19.10.15.3
  ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
  Uname: Linux 5.3.0-23-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8.2
  Architecture: amd64
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Nov 28 18:00:54 2019
  InstallationDate: Installed on 2018-11-09 (383 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  PackageArchitecture: all
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: Upgraded to eoan on 2019-11-27 (0 days ago)
  VarLogDistupgradeTermlog:

** Description changed:

  Hello,
  
  I've upgraded my ubuntu 19.04 to 19.10 this morning and I came across
  this very annoying bug.
  
  Whenever I click on 'show applications' or press win key (shortcut), the
  menu with the applications show, but it's empty - you can search through
  it and it works fine (applications show, one can trigger application
  launch), but then after you select an application, the menu doesn't
  disappear at all.
  
  It doesn't go away when pressing any application on the dash panel, nor
  when clicking esc key, it only goes away after you click on the dash
  icon again, BUT...
  
  It doesn't really go away - it just becomes invisible, but still it
  overlaps all the items that are launched (with exception of dash panel,
  because it's not being overlapped), and you can't do anything on any
  launched application. Sometimes when you try to move some windows, you
  can see them getting transformed into a miniature, as if the system
  wanted to insert application into the suggestions on the 'show
  applications'.
  
  The only thing that worked for me was restarting my computer.
  
  Here is a movie of this happening:
  
https://photos.google.com/share/AF1QipNA94MOXY4iH8rm01coSkZcH6ILYas9n2oXNs9Swxo16ijABFqz71VaRpO59tGpPg/photo/AF1QipOqVIZXLZW-Z_7zCIy8eeBGQgJQkPLY-OKfgy0Y?key=MTJBa2pRUl9VU2lmMXdEZGxYX3ZiSDRSTjJxWjdn
  
  I couldn't record screen because apparently the hotkeys were also
  intercepted and I couldn't save the video.
  
+ It makes programming right now super dangerous, as if you press the
+ 'win' button then it's basically 'adios'.
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: ubuntu-release-upgrader-core 1:19.10.15.3
  ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
  Uname: Linux 5.3.0-23-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu8.2
  Architecture: amd64
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Nov 28 18:00:54 2019
  InstallationDate: Installed on 2018-11-09 (383 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  PackageArchitecture: all
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: Upgraded to eoan on 2019-11-27 (0 days ago)
  VarLogDistupgradeTermlog:

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

Title:
  Stuck on show applications overlay (can't close it)

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

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

[Bug 1854386] Re: Show application renders computer unusable (invisible overlap)

2019-11-30 Thread Damian
It seems like a similar issue to this: 
https://gitlab.gnome.org/GNOME/gnome-shell/issues/1633
https://gitlab.gnome.org/GNOME/gnome-shell/issues/1686

It don't know exactly which package this problem lies in, but it might
be gnome-shell (you would know better). Might be that the problem is
already solved, and just bumping the gnome package would solve it.

** Package changed: ubuntu-release-upgrader (Ubuntu) => gnome-shell
(Ubuntu)

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/issues #1633
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/1633

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/issues #1686
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/1686

** Summary changed:

- Show application renders computer unusable (invisible overlap)
+ Stuck on show applications overlay (can't close it)

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

Title:
  Stuck on show applications overlay (can't close it)

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

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

[Bug 1854561] [NEW] Show application renders computer unusable (invisible overlap)

2019-11-30 Thread Damian
Public bug reported:

Hello,

I've upgraded my ubuntu 19.04 to 19.10 this morning and I came across
this very annoying bug.

Whenever I click on 'show applications' or press win key (shortcut), the
menu with the applications show, but it's empty - you can search through
it and it works fine (applications show, one can trigger application
launch), but then after you select an application, the menu doesn't
disappear at all.

It doesn't go away when pressing any application on the dash panel, nor
when clicking esc key, it only goes away after you click on the dash
icon again, BUT...

It doesn't really go away - it just becomes invisible, but still it
overlaps all the items that are launched (with exception of dash panel,
because it's not being overlapped), and you can't do anything on any
launched application. Sometimes when you try to move some windows, you
can see them getting transformed into a miniature, as if the system
wanted to insert application into the suggestions on the 'show
applications'.

The only thing that worked for me was restarting my computer.

It seems like a similar issue to this: 
https://gitlab.gnome.org/GNOME/gnome-shell/issues/1633
https://gitlab.gnome.org/GNOME/gnome-shell/issues/1686

It don't know exactly which package this problem lies in, but it might
be gnome-shell (you would know better). Might be that the problem is
already solved, and just bumping the gnome package would solve it.

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: Invalid

** Package changed: ubuntu-release-upgrader (Ubuntu) => gnome-shell
(Ubuntu)

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

Title:
  Show application renders computer unusable (invisible overlap)

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

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

[Bug 1854561] Re: Show application renders computer unusable (invisible overlap)

2019-11-30 Thread Damian
Mistakenly created a duplicate of
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1854386

** Changed in: gnome-shell (Ubuntu)
   Status: New => Invalid

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

Title:
  Show application renders computer unusable (invisible overlap)

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

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

[Bug 1854386] [NEW] Show application renders computer unusable (invisible overlap)

2019-11-28 Thread Damian
Public bug reported:

Hello,

I've upgraded my ubuntu 19.04 to 19.10 this morning and I came across
this very annoying bug.

Whenever I click on 'show applications' or press win key (shortcut), the
menu with the applications show, but it's empty - you can search through
it and it works fine (applications show, one can trigger application
launch), but then after you select an application, the menu doesn't
disappear at all.

It doesn't go away when pressing any application on the dash panel, nor
when clicking esc key, it only goes away after you click on the dash
icon again, BUT...

It doesn't really go away - it just becomes invisible, but still it
overlaps all the items that are launched (with exception of dash panel,
because it's not being overlapped), and you can't do anything on any
launched application. Sometimes when you try to move some windows, you
can see them getting transformed into a miniature, as if the system
wanted to insert application into the suggestions on the 'show
applications'.

The only thing that worked for me was restarting my computer.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: ubuntu-release-upgrader-core 1:19.10.15.3
ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
Uname: Linux 5.3.0-23-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu8.2
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov 28 18:00:54 2019
InstallationDate: Installed on 2018-11-09 (383 days ago)
InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: dist-upgrade
UpgradeStatus: Upgraded to eoan on 2019-11-27 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade eoan

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

Title:
  Show application renders computer unusable (invisible overlap)

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

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

[Bug 1176948] Re: binfmts is not working correctly with wine and mono-runtime

2019-07-18 Thread Damian Yerrick
I'm still seeing it in bionic. If wine gets added after mono-runtime
then any attempt to run a Mono executable without using `mono` from the
terminal produces "002e:err:mscoree:CLRRuntimeInfo_GetRuntimeHost Wine
Mono is not installed".

$ update-binfmts --display
python3.6 (enabled):
 package = python3.6
type = magic
  offset = 0
   magic = \x33\x0d\x0d\x0a
mask = 
 interpreter = /usr/bin/python3.6
detector = 
python2.7 (enabled):
 package = python2.7
type = magic
  offset = 0
   magic = \x03\xf3\x0d\x0a
mask = 
 interpreter = /usr/bin/python2.7
detector = 
cli (enabled):
 package = mono-runtime
type = magic
  offset = 0
   magic = MZ
mask = 
 interpreter = /usr/bin/cli
detector = /usr/lib/cli/binfmt-detector-cli
wine (enabled):
 package = wine
type = magic
  offset = 0
   magic = MZ
mask = 
 interpreter = /usr/bin/wine
detector =

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

Title:
  binfmts is not working correctly with wine and mono-runtime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/binfmt-support/+bug/1176948/+subscriptions

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

[Bug 1832305] [NEW] I can log in into WhatsApp with skipping password

2019-06-10 Thread Damian
Public bug reported:

When I want to launch WhatsApp application it wants my system password
in order to continue. If I press cancel button, app is being loaded for
a short period of time and again alert to provide password occurs. If I
repeat this step some time, I am able to login to WhatsApp without
providing system password.

Ubuntu 18.10
WhatsApp 1.0

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: unity (not installed)
Uname: Linux 5.1.7-050107-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.10-0ubuntu13.3
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Jun 11 08:29:05 2019
InstallationDate: Installed on 2019-06-05 (5 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: unity
UpgradeStatus: Upgraded to cosmic on 2019-06-06 (4 days ago)

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


** Tags: amd64 apport-bug cosmic

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

Title:
  I can log in into WhatsApp with skipping password

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

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

[Bug 1754052] Re: Dell Latitude 7480 press shift keys triggers random mouseclick when `Tap to click` enabled on touchpad.

2019-06-06 Thread Damian Mironiuk
I've experienced the same issue on Ubuntu 19.04 and 18.04 (but on other
Linux distributions like newest versions of debian or manjaro too - both
Gnome and KDE). Nevertheless it's working fine on Windows 10.

Is there any known solution to this problem? It seems that the touchpad
is a certified one according to
https://certification.ubuntu.com/catalog/component/input/4932/input%3ADLL079F%3A01044E%3A120B/

I can supply my configuration if needed but to give an overview:
Dell Latitude 7480
Kenel: 4.19.28
Dell BIOS: 1.14.1

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

Title:
  Dell Latitude 7480 press shift keys triggers random mouseclick when
  `Tap to click` enabled on touchpad.

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

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

[Bug 244250] Re: Spurious reboot notifications caused by libssl upgrades.

2019-03-01 Thread Damian Yerrick
A web server is supposed to retrieve data from database, run application
logic, write back to database if needed, write an HTML document or JSON
object to output, and wait for the next request. Ideally, it's stateless
between requests.

A desktop application, on the other hand, is more likely to have a lot
of state in RAM that isn't persisted to the file system. In particular,
you can't "simply restart" a web browser because when a browser
restarts, it retrieves the HTML document open in each tab as if the user
had navigated to it again. This incurs data loss in two ways:

1. If the user is offline, pages open in tabs for later reading will be 
replaced with "Cannot find server" error pages. (Chromium, for example, shows 
the "downasaur" minigame.) I often do this on my laptop so that I have 
something to read while riding the bus to work or wherever.
2. Several web applications, such as comment composition forms on Slashdot, 
lose DOM state if closed. When the browser navigates to the page again, the DOM 
is reset to what it was when the page was first opened, and the comment that 
the user was composing is lost. I imagine any webmail site that doesn't 
automatically save drafts in the background has the same problem, and even 
those that do save drafts will have a problem if the user is offline and the 
site doesn't use a Service Worker.

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

Title:
  Spurious reboot notifications caused by libssl upgrades.

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

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

[Bug 1685442] Re: Errors: flip_done timed out during boot-up; slow boot

2018-10-28 Thread Damian Campbell
Thanks @Ryan for the post. I'm not sure in this case that a bisection would be 
the most effective cure. There must be many many legacy Dell and other machines 
that are affected but we never know because people give up on the install. I 
think the suggestion (see somewhere above) of defaulting to having the 
workaround "Video=SVIDEO-1:d" enabled by default would be much more useful. The 
probable minority of users who do need to use SVIDEO could be dealt with 
through release note information and pointed to a legacy driver.

As an enthusiastic and fervent champion of Ubuntu I cannot emphasize
enough the negatives a fraught install/upgrade process for non-IT users
inflicts upon the reputation of the project. Far better to have a few
non-working features than to alienate a whole section of users with
legacy machines. After all, is Ubuntu not supposed to be "Great for use
with legacy machines."?? My experience rendered a working system on
16.04 LTS totally unusable by the automatic upgrade to 18.04 LTS. I am
surely not alone!!!??

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

Title:
  Errors:  flip_done timed out  during boot-up; slow boot

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

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

[Bug 1685442] Re: Errors: flip_done timed out during boot-up; slow boot

2018-10-28 Thread Damian Campbell
On Dell Inspiron 1525 auto upgraded from xubuntu 16.04 LTS 64bit to
18.04 LTS. This bug appeared.

Then tried clean install of Xubuntu 18.04.1 The bug appeared from moment
of boot of cd. Bug present also in Ubuntu 18.04.1

Grub edit of Video=SVIDEO-1:d works.

As a committed Ubuntu fan of years going on decades, I cannot adequately
express my strong disapointment that a bug serious enough to prevent
effective installation for many users remains on a live LTS distro some
6 months after release even after revision to 18.04.1 I was able to fix
it, (sudo edit of grub) but most affected users would be unable to and
simply walk away. How many people walked and therefore never escalated
this bug because they never got far enough to be able to?? Come on
development team! Please remember that Ubuntu is supposed to be about
ease of use and the users!!! Should do better

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

Title:
  Errors:  flip_done timed out  during boot-up; slow boot

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

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

[Bug 627008] Re: Cannot read cd: sound-juicer and gvfs problem (workaround included)

2018-10-25 Thread Damian Yerrick
As of 18.04, the command that works for me is
gio mount cdda://sr0

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

Title:
  Cannot read cd: sound-juicer and gvfs problem (workaround included)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/627008/+subscriptions

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

[Bug 1797337] [NEW] package libjavascriptcoregtk-4.0-18 2.22.2-0ubuntu0.18.04.2 failed to install/upgrade: dpkg-deb --fsys-tarfile subprocess returned error exit status 2

2018-10-11 Thread Octavian Damian
Public bug reported:

update crashed

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: libjavascriptcoregtk-4.0-18 2.22.2-0ubuntu0.18.04.2
ProcVersionSignature: Ubuntu 4.15.0-36.39-lowlatency 4.15.18
Uname: Linux 4.15.0-36-lowlatency x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.9-0ubuntu7.4
AptOrdering:
 libwebkit2gtk-4.0-37:amd64: Install
 libjavascriptcoregtk-4.0-18:amd64: Install
 gir1.2-webkit2-4.0:amd64: Install
 gir1.2-javascriptcoregtk-4.0:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
Date: Thu Oct 11 11:39:32 2018
ErrorMessage: dpkg-deb --fsys-tarfile subprocess returned error exit status 2
InstallationDate: Installed on 2018-08-30 (41 days ago)
InstallationMedia: Ubuntu-Studio 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.3ubuntu0.1
SourcePackage: webkit2gtk
Title: package libjavascriptcoregtk-4.0-18 2.22.2-0ubuntu0.18.04.2 failed to 
install/upgrade: dpkg-deb --fsys-tarfile subprocess returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package bionic

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

Title:
  package libjavascriptcoregtk-4.0-18 2.22.2-0ubuntu0.18.04.2 failed to
  install/upgrade: dpkg-deb --fsys-tarfile subprocess returned error
  exit status 2

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

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

[Bug 364874] Re: Copy/Paste Can't Handle Nonprinting Characters

2018-09-26 Thread Damian Yerrick
It still happens over nine years later in GHex 3.18.3 in Xubuntu 18.04
LTS.

1. Open a file
2. In insert mode, add a few $FF bytes
3. Try to copy and paste the $FF bytes

Gives me this in standard error:

(ghex:3268): Gtk-WARNING **: 20:46:46.316: Error converting from
text/plain;charset=utf-8 to UTF-8: invalid UTF-8

(ghex:3268): Gdk-WARNING **: 20:46:46.317: Error converting selection
from UTF8_STRING

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

Title:
  Copy/Paste Can't Handle Nonprinting Characters

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

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

[Bug 1762314] Re: Sound output too low

2018-09-11 Thread Damian Gasior
The same issue here. Different videos, different volume. In general very
low.

Audio chip: Realtek ALC298

Laptop: T570

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

Title:
  Sound output too low

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

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

[Bug 1786779] [NEW] package libpaper1:amd64 1.1.24+nmu5ubuntu1 failed to install/upgrade: installed libpaper1:amd64 package post-installation script subprocess returned error exit status 1

2018-08-13 Thread Damian Middleton
Public bug reported:

Doing an upgrade from 16.04 LTS to 18.04 LTS and had the following issue
come up. It said the system may be unusable but it appears to have
rebooted OK.

I'm not technical, so apologises if this is already understood and I
missed it..

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: libpaper1:amd64 1.1.24+nmu5ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-131.157-generic 4.4.134
Uname: Linux 4.4.0-131-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
Date: Mon Aug 13 14:23:24 2018
ErrorMessage: installed libpaper1:amd64 package post-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2016-10-04 (678 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.3
SourcePackage: libpaper
Title: package libpaper1:amd64 1.1.24+nmu5ubuntu1 failed to install/upgrade: 
installed libpaper1:amd64 package post-installation script subprocess returned 
error exit status 1
UpgradeStatus: Upgraded to bionic on 2018-08-13 (0 days ago)

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


** Tags: amd64 apport-package bionic

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

Title:
  package libpaper1:amd64 1.1.24+nmu5ubuntu1 failed to install/upgrade:
  installed libpaper1:amd64 package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1782719] [NEW] Duplex not working upon update to 2.2.7-1ubuntu2.1

2018-07-20 Thread Damian Frick
Public bug reported:

I am using ubuntu 18.04 LTS. After an automatic update of libcups (and
related) from 2.2.7-1ubuntu2 to 2.2.7-1ubuntu2.1 I have been unable to
print double-sided, e.g., printing a pdf from evince using the standard
printer dialog. I have not changed the printer or printer drivers during
this and before everything was working fine.

I suspect that the option that is used for duplex printing is has changed and 
is wrong now. It seems to be "DuplexNoTumble", see
$ lpoptions -l  | grep -i duplex
Duplex/Duplex: *None DuplexNoTumble DuplexTumble

After using evince and the standard printer dialog to issue a print job where I 
selected "Long Edge (standard)" for the "Two Sided" option, I see the following 
in the cups error log:
$ cat /var/log/cups/error_log | grep -i duplex
D [20/Jul/2018:09:30:36 +0200] [Job 39] argv[5]="RPSBitsPerPixel=1BitsPerPixel 
InputSlot=Auto RPSRGBcorrect=DetailBright RPSDitherType=Auto RIwmSize=36 
RIBannerPageMediaType=Auto LockedPrintPassword=None RIWMText=Confidential 
Rcmyksimulation=Off RIwmAngle=45Deg Booklet=None RPSColorRendDict=Auto 
RIPaperPolicy=PromptUser RPSBlackMode=gray noRPSColorUniversalDesign 
PageSize=A4.FullBleed JobType=Normal noRIBannerPagePrint RIPrintMode=0rhit 
MediaType=Auto RIRotateBy180=Off RIwmTextStyle=Gray RIPunch=None 
RIBannerPageInputSlot=Auto ColorModel=Gray Rimagesm=Off number-up=1 
noRPSBlackOverPrint RIOrientOvr=Off StapleLocation=None Resolution=600dpi 
DocServerPassword=None RPSColorSep=None RIFoldType=None UserCode=None noCollate 
Duplex=DuplexNoTumble RIwmFont=HelveticaB RIWatermark=Off OutputBin=Default 
job-uuid=urn:uuid:10bf31c1-fbcf-31fd-4093-04b4cc248849 finishings=53 
job-originating-host-name=localhost date-time-at-creation= 
date-time-at-processing= time-at-creation=1532071836 
time-at-processing=1532071836"
D [20/Jul/2018:09:30:36 +0200] [Job 39] Added option Duplex
D [20/Jul/2018:09:30:36 +0200] [Job 39] Pondering option 
\'Duplex=DuplexNoTumble\'
D [20/Jul/2018:09:30:36 +0200] [Job 39] Running command line for pstops: pstops 
39 username \'filename\' 1 \'RPSBitsPerPixel=1BitsPerPixel InputSlot=Auto 
RPSRGBcorrect=DetailBright RPSDitherType=Auto RIwmSize=36 
RIBannerPageMediaType=Auto LockedPrintPassword=None RIWMText=Confidential 
Rcmyksimulation=Off RIwmAngle=45Deg Booklet=None RPSColorRendDict=Auto 
RIPaperPolicy=PromptUser RPSBlackMode=gray noRPSColorUniversalDesign 
PageSize=A4.FullBleed JobType=Normal noRIBannerPagePrint RIPrintMode=0rhit 
MediaType=Auto RIRotateBy180=Off RIwmTextStyle=Gray RIPunch=None 
RIBannerPageInputSlot=Auto ColorModel=Gray Rimagesm=Off noRPSBlackOverPrint 
RIOrientOvr=Off StapleLocation=None Resolution=600dpi DocServerPassword=None 
RPSColorSep=None RIFoldType=None UserCode=None Duplex=DuplexNoTumble 
RIwmFont=HelveticaB RIWatermark=Off OutputBin=Default 
job-uuid=urn:uuid:10bf31c1-fbcf-31fd-4093-04b4cc248849 finishings=53 
job-originating-host-name=localhost date-time-at-creation= 
date-time-at-processing= time-at-creation=1532071836 
time-at-processing=1532071836\'
D [20/Jul/2018:09:30:37 +0200] [Job 39] slow_collate=0, slow_duplex=0, 
slow_order=0
D [20/Jul/2018:09:30:37 +0200] [Job 39] Found: %%BeginFeature: *Duplex 
DuplexNoTumble
D [20/Jul/2018:09:30:37 +0200] [Job 39] Option: Duplex=DuplexNoTumble

Moreover, when trying to print from console I discovered that
$ lp -o Duplex=DuplexNoTumble whatever.pdf
prints single-sided, whereas
$ lp -o sides=two-sided-long-edge whatever.pdf
successfully prints double-sided.

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


** Tags: duplex

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

Title:
  Duplex not working upon update to 2.2.7-1ubuntu2.1

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

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

[Bug 1767715] Re: Laptop does not suspend after lid is closed on nvidia drivers

2018-06-18 Thread Damian
Anything I can help with? Any additional info you may need or logs?

This bug is super annoying.

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

Title:
  Laptop does not suspend after lid is closed on nvidia drivers

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

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

[Bug 1767715] Re: Laptop does not suspend after lid is closed on nvidia drivers

2018-06-01 Thread Damian
Same issue, works only the first time you suspend after reboot any time
after that it fails. (Laptop Lenovo T400)


sudo lshw -c video
*-display:0   
   description: VGA compatible controller
   product: Mobile 4 Series Chipset Integrated Graphics Controller
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@:00:02.0
   version: 07
   width: 64 bits
   clock: 33MHz
   capabilities: msi pm vga_controller bus_master cap_list rom
   configuration: driver=i915 latency=0
   resources: irq:16 memory:f440-f47f memory:d000-dfff 
ioport:1800(size=8) memory:c-d
  *-display:1 UNCLAIMED
   description: Display controller
   product: Mobile 4 Series Chipset Integrated Graphics Controller
   vendor: Intel Corporation
   physical id: 2.1
   bus info: pci@:00:02.1
   version: 07
   width: 64 bits
   clock: 33MHz
   capabilities: pm bus_master cap_list
   configuration: latency=0
   resources: memory:f420-f42f


systemd-inhibit --list
 Who: gdm (UID 121/gdm, PID 1125/gsd-power)
What: sleep
 Why: GNOME needs to lock the screen
Mode: delay

 Who: GNOME Shell (UID 1000/damian, PID 1552/gnome-shell)
What: sleep
 Why: GNOME needs to lock the screen
Mode: delay

 Who: damian (UID 1000/damian, PID 1696/gsd-media-keys)
What: handle-power-key:handle-suspend-key:handle-hibernate-key
 Why: GNOME handling keypresses
Mode: block

 Who: damian (UID 1000/damian, PID 1649/gsd-power)
What: sleep
 Why: GNOME needs to lock the screen
Mode: delay

 Who: gdm (UID 121/gdm, PID 1122/gsd-media-keys)
What: handle-power-key:handle-suspend-key:handle-hibernate-key
 Why: GNOME handling keypresses
Mode: block

 Who: ModemManager (UID 0/root, PID 764/ModemManager)
What: sleep
 Why: ModemManager needs to reset devices
Mode: delay

 Who: NetworkManager (UID 0/root, PID 786/NetworkManager)
What: sleep
 Why: NetworkManager needs to turn off networks
Mode: delay

 Who: gdm (UID 121/gdm, PID 1122/gsd-media-keys)
What: sleep
 Why: GNOME handling keypresses
Mode: delay

 Who: damian (UID 1000/damian, PID 1696/gsd-media-keys)
What: sleep
 Why: GNOME handling keypresses
Mode: delay

 Who: UPower (UID 0/root, PID 1021/upowerd)
What: sleep
 Why: Pause device polling
Mode: delay

10 inhibitors listed.

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

Title:
  Laptop does not suspend after lid is closed on nvidia drivers

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

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

[Bug 1759920] Re: intel-microcode 3.20180312.0 causes lockup at login screen(w/ linux-image-4.13.0-37-generic)

2018-04-09 Thread Damian Kidd
HWE Kernel in xenial-testing resolves the issue as well

/proc/version_signature
Ubuntu 4.13.0-39.44~16.04.1-generic 4.13.16
/proc/cmdline
BOOT_IMAGE=/@/boot/vmlinuz-4.13.0-39-generic 
root=UUID=7dcb6f6f-1069-4315-a421-0d60fffecef9 ro rootflags=subvol=@
dmesg -t | grep -i microcode
microcode: microcode updated early to revision 0x2d, date = 2018-02-07
microcode: sig=0x206a7, pf=0x2, revision=0x2d
microcode: Microcode Update Driver: v2.2.

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

Title:
  intel-microcode 3.20180312.0 causes lockup at login screen(w/ linux-
  image-4.13.0-37-generic)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-microcode/+bug/1759920/+subscriptions

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

[Bug 1759920] Re: intel-microcode 3.20180312.0 causes lockup at login screen(w/ linux-image-4.13.0-37-generic)

2018-04-05 Thread Damian Kidd
Can confirm test kernal fixed my hard lock issue as well:
/proc/version_signature 
Ubuntu 4.13.0-38.43+lp1759920.1-generic 4.13.16
/proc/cmdline
BOOT_IMAGE=/@/boot/vmlinuz-4.13.0-38-generic 
root=UUID=7dcb6f6f-1069-4315-a421-0d60fffecef9 ro rootflags=subvol=@
dmesg -t | grep -i microcode
microcode: microcode updated early to revision 0x2d, date = 2018-02-07
microcode: sig=0x206a7, pf=0x2, revision=0x2d
microcode: Microcode Update Driver: v2.2.

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

Title:
  intel-microcode 3.20180312.0 causes lockup at login screen(w/ linux-
  image-4.13.0-37-generic)

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

2018-03-14 Thread Damian Yerrick
Comment #20 appears to recommend filing a deliberate duplicate:

> Please open your own report if you are affected.

One such duplicate is Bug #1617630.

-- 
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 1617630] Re: Mousepad show the warning Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus -*

2018-03-14 Thread Damian Yerrick
I even encountered this bug when I tried to report it.

$ ubuntu-bug at-spi2-core

** (apport-gtk:): WARNING **: Couldn't connect to accessibility bus:
Failed to connect to socket /tmp/dbus-##: Connection refused

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

Title:
  Mousepad show the warning 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/ubuntu/+source/at-spi2-core/+bug/1617630/+subscriptions

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

[Bug 1448254] Re: openvswitch systemd unit file ordering wrong

2018-02-07 Thread Damian Cikowski
Why it has not been backported to Xenial?

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

Title:
  openvswitch systemd unit file ordering wrong

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

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

[Bug 1576084] Re: Firefox crashes with raspberry pi 3

2018-01-07 Thread Damian Christey
This bug seems to be related to Firefox 46. Could someone who is
affected by this try installing Firefox 52 and see if it works?

Note: Firefox 55 and newer also always crash on ARMv7. See bug #1711337

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

Title:
  Firefox crashes with raspberry pi 3

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

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

[Bug 1576084] Re: Firefox crashes with raspberry pi 3

2018-01-07 Thread Damian Christey
** This bug is no longer a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  Firefox crashes with raspberry pi 3

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

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

[Bug 1585463] Re: ubuntu mate crashes & firefox crashes with raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  ubuntu mate crashes &  firefox crashes with raspberry pi 3

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

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

[Bug 1582719] Re: firefox crashed with ubuntu-mate raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  firefox crashed with ubuntu-mate raspberry pi 3

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

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

[Bug 1583127] Re: firefox keeps exiiting raspberry pi 3 on ubuntu mate 16.04

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  firefox keeps exiiting raspberry pi 3 on ubuntu mate 16.04

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

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

[Bug 1586228] Re: firefox exiting over and over again!!! on raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  firefox exiting over and over again!!! on raspberry pi 3

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

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

[Bug 1591842] Re: Mozilla. Firefox crashes on Raspberry Pi 3 on Ubuntu Mate 16.04

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  Mozilla. Firefox crashes on Raspberry Pi 3 on Ubuntu Mate 16.04

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

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

[Bug 1588105] Re: firefox 46.0.1 exiting and crashing on raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  firefox 46.0.1 exiting and crashing on raspberry pi 3

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

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

[Bug 1585466] Re: firefox crashes with raspberry pi 3 on ubuntu mate

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug is no longer a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3
** This bug has been marked a duplicate of bug 1576084
   Firefox crashes with raspberry pi 3

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

Title:
  firefox crashes with raspberry pi 3 on ubuntu mate

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

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

[Bug 1585466] Re: firefox crashes with raspberry pi 3 on ubuntu mate

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  firefox crashes with raspberry pi 3 on ubuntu mate

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

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

[Bug 1586228] Re: firefox exiting over and over again!!! on raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  firefox exiting over and over again!!! on raspberry pi 3

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

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

[Bug 1585463] Re: ubuntu mate crashes & firefox crashes with raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  ubuntu mate crashes &  firefox crashes with raspberry pi 3

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

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

[Bug 1591842] Re: Mozilla. Firefox crashes on Raspberry Pi 3 on Ubuntu Mate 16.04

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  Mozilla. Firefox crashes on Raspberry Pi 3 on Ubuntu Mate 16.04

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

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

[Bug 1588105] Re: firefox 46.0.1 exiting and crashing on raspberry pi 3

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1576084 ***
https://bugs.launchpad.net/bugs/1576084

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  firefox 46.0.1 exiting and crashing on raspberry pi 3

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

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

[Bug 1583127] Re: firefox keeps exiiting raspberry pi 3 on ubuntu mate 16.04

2018-01-07 Thread Damian Christey
*** This bug is a duplicate of bug 1582719 ***
https://bugs.launchpad.net/bugs/1582719

** This bug has been marked a duplicate of bug 1582719
   firefox crashed with ubuntu-mate raspberry pi 3

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

Title:
  firefox keeps exiiting raspberry pi 3 on ubuntu mate 16.04

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

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

[Bug 1711337] Re: Firefox crashes at start on armv7L after 55.0.1 update

2018-01-07 Thread Damian Christey
I think this bug can be fixed, but the first step is getting someone
with the required permissions to acknowledge that it exists, and change
the status back to confirmed. With its current status, it probably isn't
showing up on the radar of any Ubuntu developers.

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

Title:
  Firefox crashes at start on armv7L after 55.0.1 update

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

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

[Bug 1711337] Re: Firefox crashes at start on armv7L after 55.0.1 update

2017-12-08 Thread Damian Christey
Please change status back to "confirmed". The released fix did not work,
as evidenced by the ongoing duplicate bug reports.

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

Title:
  Firefox crashes at start on armv7L after 55.0.1 update

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

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

[Bug 1726616] Re: Firefox crashes repeatedly after system update

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug is no longer a duplicate of bug 1732954
   Firefox crashes on launch
** This bug has been marked a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

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

Title:
  Firefox crashes repeatedly after system update

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

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

[Bug 1733284] Re: Firefox version 57 cannot start on Raspberry pi 3 with Ubuntu-Mate 16.04.2

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug has been marked a duplicate of bug 1732954
   Firefox crashes on launch

** This bug is no longer a duplicate of bug 1732954
   Firefox crashes on launch
** This bug has been marked a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

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

Title:
  Firefox version 57 cannot start on Raspberry pi 3 with Ubuntu-Mate
  16.04.2

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

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

[Bug 1733340] Re: Bug #1732954 by sam tygier

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug is no longer a duplicate of bug 1732954
   Firefox crashes on launch
** This bug has been marked a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

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

Title:
  Bug #1732954  by sam tygier

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

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

[Bug 1722655] Re: Firefox crashes on launch

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug has been marked a duplicate of bug 1732954
   Firefox crashes on launch

** This bug is no longer a duplicate of bug 1732954
   Firefox crashes on launch
** This bug has been marked a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

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

Title:
  Firefox crashes on launch

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

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

[Bug 1732954] Re: Firefox crashes on launch

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug has been marked a duplicate of bug 1711337
   Firefox crashes at start on armv7L after 55.0.1 update

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

Title:
  Firefox crashes on launch

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

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

[Bug 1726616] Re: Firefox crashes repeatedly after system update

2017-12-08 Thread Damian Christey
*** This bug is a duplicate of bug 1711337 ***
https://bugs.launchpad.net/bugs/1711337

** This bug has been marked a duplicate of bug 1732954
   Firefox crashes on launch

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

Title:
  Firefox crashes repeatedly after system update

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

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

[Bug 1732954] Re: Firefox crashes on launch

2017-12-08 Thread Damian Christey
Same thing on armhf Chromebook running Crouton. I started seeing this
around Firefox 56, I believe.

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

Title:
  Firefox crashes on launch

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

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

[Bug 1731686] Re: Upgrade from 16.04 to 17.04 crashes with info, that I might use test version

2017-11-18 Thread Damian D
How do I find those unofficial packages not provided by Ubuntu, as I
would love to upgrade to 17.04:

Nie można przetworzyć aktualizacji

Wystąpił niemożliwy do rozwiązania problem podczas aktualizacji.

Może on być spowodowany przez: 
* Aktualizowanie do testowej wersji Ubuntu 
* Działanie na testowej wersji Ubuntu 
* Nieoficjalne pakiety oprogramowania niedostarczane przez Ubuntu 

Jeśli żadna z wymienionych sytuacji nie ma miejsca, proszę zgłosić 
ten błąd wprowadzając w terminalu polecenie „ubuntu-bug 
ubuntu-release-upgrader-core”.

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

Title:
  Upgrade from 16.04 to 17.04 crashes with info, that I might use test
  version

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

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

[Bug 1731686] Re: Upgrade from 16.04 to 17.04 crashes with info, that I might use test version

2017-11-18 Thread Damian D
Would this mean, that I have to wait for another LTS to upgrade (I'm on
16.04, so I miss 16.10)?

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

Title:
  Upgrade from 16.04 to 17.04 crashes with info, that I might use test
  version

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

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

[Bug 583797] Re: "Warn on closing with multiple tabs open" not honored

2017-11-17 Thread Damian Yerrick
"Importance Low due to easy workaround -> keyconfig."

The Keybinder extension worked in Firefox 56 but has stopped working
since Firefox 57. So I'd recommend "Importance Low" for `firefox-esr`
but not "Low" for `firefox`.

-- 
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 1731686] [NEW] Upgrade from 16.04 to 17.04 crashes with info, that I might use test version

2017-11-11 Thread Damian D
Public bug reported:

excerpt from /var/log/dist-upgrade/main.log:
2017-11-11 20:31:47,758 DEBUG entry 'deb http://security.ubuntu.com/ubuntu 
zesty-security multiverse' updated to new dist
2017-11-11 20:31:47,758 DEBUG examining: 'deb https://josm.openstreetmap.de/apt 
xenial universe'
2017-11-11 20:31:47,761 DEBUG entry '# deb https://josm.openstreetmap.de/apt 
zesty universe # wyłączony podczas aktualizacji do zesty' was disabled (unknown 
mirror)
2017-11-11 20:31:47,761 DEBUG examining: 'deb [arch=amd64] 
http://dl.google.com/linux/chrome/deb/ stable main'
2017-11-11 20:31:47,764 DEBUG entry '# deb [arch=amd64] 
http://dl.google.com/linux/chrome/deb/ stable main # wyłączony podczas 
aktualizacji do zesty' was disabled (unknown mirror)
2017-11-11 20:31:47,764 DEBUG examining: 'deb 
http://ppa.launchpad.net/nextcloud-devs/client/ubuntu xenial main'
2017-11-11 20:31:47,767 DEBUG entry '# deb 
http://ppa.launchpad.net/nextcloud-devs/client/ubuntu zesty main # wyłączony 
podczas aktualizacji do zesty' was disabled (unknown mirror)
2017-11-11 20:31:49,742 DEBUG running doUpdate() (showErrors=True)
2017-11-11 20:32:22,224 DEBUG openCache()
2017-11-11 20:32:22,225 DEBUG failed to SystemUnLock() (E:Niezablokowany)
2017-11-11 20:32:23,553 DEBUG /openCache(), new cache size 87498
2017-11-11 20:32:23,554 DEBUG need_server_mode(): run in 'desktop' mode, 
(because of pkg 'ubuntu-desktop')
2017-11-11 20:32:29,507 DEBUG Installing 'xserver-xorg-video-all' (Distro 
KeepInstalledPkgs rule)
2017-11-11 20:32:55,264 ERROR Dist-upgrade failed: 'E:Nie udało się naprawić 
problemów, zatrzymano uszkodzone pakiety.'
2017-11-11 20:32:55,272 DEBUG abort called
2017-11-11 20:32:55,274 DEBUG openCache()
2017-11-11 20:32:55,275 DEBUG failed to SystemUnLock() (E:Niezablokowany)
2017-11-11 20:33:01,368 DEBUG /openCache(), new cache size 85622

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubuntu-release-upgrader-core 1:16.04.23
ProcVersionSignature: Ubuntu 4.4.0-98.121-generic 4.4.90
Uname: Linux 4.4.0-98-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Sat Nov 11 20:32:47 2017
InstallationDate: Installed on 2016-05-01 (558 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to xenial on 2017-11-11 (0 days ago)
VarLogDistupgradeTermlog:
 
mtime.conffile..etc.update-manager.release-upgrades: 2016-05-17T23:56:18.872768

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade xenial

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

Title:
  Upgrade from 16.04 to 17.04 crashes with info, that I might use test
  version

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

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

[Bug 1705344] [NEW] Determine file extensions supported by Game_Music_Emu

2017-07-19 Thread Damian Yerrick
Public bug reported:

lsb_release -rd says:
Description:Ubuntu 16.04.2 LTS
Release:16.04

apt show libgme-dev says:
Package: libgme-dev
Version: 0.6.0-3ubuntu0.16.04.1

I am developing a music player and want to list all types that my music
player's Game_Music_Emu plug-in can play. I can iterate through types
with gme_type_list(), but all I can retrieve about each gme_type_t
through the C API are the name of the console it's associated with
(gme_type_system()) and whether the type supports multiple movements
(gme_type_multitrack()). I'd like to be able to look up the most common
extension associated with a track. I can go from extension to type
(gme_identify_extension()), and I expected there to be a function to go
the other way, but there wasn't.

I've filed related issues on other forks of GME:

https://github.com/kode54/Game_Music_Emu/issues/7
https://bitbucket.org/mpyne/game-music-emu/issues/13/list-all-supported-extensions

One fork maintainer plans to fix it by adding a function with the
following signature:

const char *gme_type_extension(gme_type_t);

** Affects: game-music-emu (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/1705344

Title:
  Determine file extensions supported by Game_Music_Emu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/game-music-emu/+bug/1705344/+subscriptions

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


[Bug 1675141] Re: lightdm crashed with SIGSEGV in munmap()

2017-06-26 Thread Damian
** Also affects: lightdm
   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/1675141

Title:
  lightdm crashed with SIGSEGV in munmap()

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

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


[Bug 1697182] [NEW] package libxfce4util-common (not installed) failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-06-10 Thread Damian
Public bug reported:

unknown failure

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libxfce4util-common (not installed)
ProcVersionSignature: Ubuntu 4.8.0-54.57~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-54-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.6
AptOrdering:
 libxfce4util-common: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Sat Jun 10 08:28:57 2017
DpkgTerminalLog:
 dpkg: error processing package libxfce4util-common (--configure):
  package is in a very bad inconsistent state; you should
  reinstall it before attempting configuration
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2017-06-09 (1 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.20
SourcePackage: libxfce4util
Title: package libxfce4util-common (not installed) failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package libxfce4util-common (not installed) failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

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

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


[Bug 462673] Re: No way of changing character encoding

2017-05-26 Thread Damian Yerrick
File > Save As in Mousepad 0.4.0 on Xubuntu 16.04 LTS doesn't show an
encoding menu.

** Attachment added: "mousepad_save_as.png"
   
https://bugs.launchpad.net/ubuntu/+source/mousepad/+bug/462673/+attachment/4884336/+files/mousepad_save_as.png

** Changed in: mousepad (Ubuntu)
   Status: Invalid => New

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

Title:
  No way of changing character encoding

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

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


[Bug 1686269] [NEW] Incorrect battery level after resume

2017-04-25 Thread Damian Friedli
Public bug reported:

After upgrading from the latest 14.04 LTS to the latest 16.04.2 LTS on my 
Lenovo Thinkpad X1 Carbon, the battery level is detected and displayed 
incorrect after charging the battery while the system is suspended.
Example: I work in my notebook while it is not connected to the power supply 
until the battery is down to lets say 4%. I'll close the lid (=> suspend), 
bring it to the place where I have the power supply and connect for charge. 
After my break, I'll disconnect the still suspended notebook, take  it back to 
the place I used to work in it(for example outside; there is no power on that 
place, can be far from the place where I charge it) and open the lid to resume 
the system. Every time I'll get shocked and doubt if the battery was charged 
properly because it will still show the level from before, e.g. the 4%. In some 
cases when the battery level is detected as critically low, the system will 
directly suspend again, thinking the battery is going to get empty. If I want 
the battery level to be displayed correctly, I have to connect the charger 
while the system is not suspended which can be a pain in the a** when I am far 
away from the power supply.

Eventually I now found another workaround for this problem with creating
a script in /usr/lib/pm-utils/sleep.d with somethink like

...
thaw|resume) 
service upower restart
;;
...

Anyway, I think something basic like detecting the correct battery level
on a notebook on an Ubuntu LTS release should really work out of the box
without that kind of workaround.

$ lsb_release -rd
Description:Ubuntu 16.04.2 LTS
Release:16.04

$ uname -a
Linux c4rkb0n 4.8.0-46-generic #49~16.04.1-Ubuntu SMP Fri Mar 31 14:51:03 UTC 
2017 x86_64 x86_64 x86_64 GNU/Linux

** Affects: devicekit-power (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/1686269

Title:
  Incorrect battery level after resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/devicekit-power/+bug/1686269/+subscriptions

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


[Bug 1683780] [NEW] openpgp-applet won't start

2017-04-18 Thread Damian Friedli
Public bug reported:

What I expected to happen: openpgp-applet will start and show up in gui
What happened instead: nothing at all

$ lsb_release -rd
Description:Ubuntu 16.04.2 LTS
Release:16.04

$ uname -a
Linux c4rkb0n 4.8.0-46-generic #49~16.04.1-Ubuntu SMP Fri Mar 31 14:51:03 UTC 
2017 x86_64 x86_64 x86_64 GNU/Linux

$ apt-cache policy openpgp-applet
openpgp-applet:
  Installed: 0.9.1-1
  Candidate: 0.9.1-1
  Version table:
 *** 0.9.1-1 500
500 http://ftp.cuhk.edu.hk/pub/Linux/ubuntu xenial/universe amd64 
Packages
500 http://ftp.cuhk.edu.hk/pub/Linux/ubuntu xenial/universe i386 
Packages
100 /var/lib/dpkg/status

(I installed the package over the gui software center initially - sahe
result)

$ sudo aptitude install openpgp-applet
The following NEW packages will be installed:
  libcairo-perl{a} libglib-perl{a} libgtk2-perl{a} libpango-perl{a} 
openpgp-applet 
0 packages upgraded, 5 newly installed, 0 to remove and 10 not upgraded.
Need to get 0 B/1'197 kB of archives. After unpacking 5'641 kB will be used.
Do you want to continue? [Y/n/?] 
Selecting previously unselected package libcairo-perl.
(Reading database ... 219108 files and directories currently installed.)
Preparing to unpack .../libcairo-perl_1.106-1build1_amd64.deb ...
Unpacking libcairo-perl (1.106-1build1) ...
Selecting previously unselected package libglib-perl.
Preparing to unpack .../libglib-perl_3%3a1.320-2_amd64.deb ...
Unpacking libglib-perl (3:1.320-2) ...
Selecting previously unselected package libpango-perl.
Preparing to unpack .../libpango-perl_1.227-1_amd64.deb ...
Unpacking libpango-perl (1.227-1) ...
Selecting previously unselected package libgtk2-perl.
Preparing to unpack .../libgtk2-perl_2%3a1.2498-1_amd64.deb ...
Unpacking libgtk2-perl (2:1.2498-1) ...
Selecting previously unselected package openpgp-applet.
Preparing to unpack .../openpgp-applet_0.9.1-1_all.deb ...
Unpacking openpgp-applet (0.9.1-1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5.1) ...
Processing triggers for gnome-menus (3.13.3-6ubuntu3.1) ...
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160824-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.59ubuntu1) ...
Setting up libcairo-perl (1.106-1build1) ...
Setting up libglib-perl (3:1.320-2) ...
Setting up libpango-perl (1.227-1) ...
Setting up libgtk2-perl (2:1.2498-1) ...
Setting up openpgp-applet (0.9.1-1) ...
 
$ openpgp-applet

#nothing happens
#same is started via gui - the icon will show up but disappear after a few 
seconds

** Affects: openpgp-applet (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/1683780

Title:
  openpgp-applet won't start

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openpgp-applet/+bug/1683780/+subscriptions

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


[Bug 1666239] Re: Add ZFS sosreport plugin

2017-02-23 Thread Damian Wojsław
I have tested sosreport with this patch and it worked as expected.

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

Title:
  Add ZFS sosreport plugin

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

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


[Bug 1574120] Re: Notebook doesn't suspend when lid is closed after update to 16.04

2017-02-19 Thread Damian Serrano Thode
HP Pavilion g6 here.

After upgrading the past month from 14.04 to 16.04, I was also affected
by this bug, where with 14.04 I closed the lid and my laptop suspended
as it should.

I tried to set HandleLidSwitch=suspend in logind.conf but it made no
change, the laptop wouldn't suspend.

Today I upgraded from 16.04 to 16.10 and it was all the same, closing
the lid of my laptop does not suspend it.

Reading the comments on this thread, I added
HandleLidSwitchDocked=suspend to my logind.conf and now it works
perfectly.

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

Title:
  Notebook doesn't suspend when lid is closed after update to 16.04

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

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


[Bug 1652467] Re: package mythes-en-us 1:5.1.0-1ubuntu2.2 failed to install/upgrade: El paquete está en un estado grave de inconsistencia - debe reinstalarlo antes de intentar su configuración.

2017-01-06 Thread Nestor Damian Orrego
solucionado con ; `apt-get install --reinstall mythes-en-us` desconozco
cuando se origino. pudo ser una interrupcion de suministro electrico
durante actualización, gracias por su ayuda!

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

Title:
  package mythes-en-us 1:5.1.0-1ubuntu2.2 failed to install/upgrade: El
  paquete está en un estado grave de inconsistencia - debe reinstalarlo
  antes de intentar su configuración.

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

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

[Bug 1652467] [NEW] package mythes-en-us 1:5.1.0-1ubuntu2.2 failed to install/upgrade: El paquete está en un estado grave de inconsistencia - debe reinstalarlo antes de intentar su configuración.

2016-12-24 Thread Nestor Damian Orrego
Public bug reported:

.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mythes-en-us 1:5.1.0-1ubuntu2.2
ProcVersionSignature: Ubuntu 4.4.0-53.74-generic 4.4.30
Uname: Linux 4.4.0-53-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.4
Architecture: amd64
Date: Sat Dec 24 19:10:42 2016
ErrorMessage: El paquete está en un estado grave de inconsistencia - debe 
reinstalarlo  antes de intentar su configuración.
InstallationDate: Installed on 2016-06-06 (201 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15ubuntu0.2
SourcePackage: libreoffice-dictionaries
Title: package mythes-en-us 1:5.1.0-1ubuntu2.2 failed to install/upgrade: El 
paquete está en un estado grave de inconsistencia - debe reinstalarlo  antes de 
intentar su configuración.
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libreoffice-dictionaries (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package mythes-en-us 1:5.1.0-1ubuntu2.2 failed to install/upgrade: El
  paquete está en un estado grave de inconsistencia - debe reinstalarlo
  antes de intentar su configuración.

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

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

[Bug 1559391] Re: bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu7: bcmwl kernel module failed to build [gcc: error: unrecognized command line option ‘-fstack-protector-strong’]

2016-12-19 Thread Damian Yerrick
My make.log from Ubuntu 16.04:

DKMS make.log for bcmwl-6.30.223.248+bdcom for kernel 4.4.0-53-generic (i686)
Mon Dec 19 09:20:31 EST 2016
make: Entering directory '/usr/src/linux-headers-4.4.0-53-generic'
Makefile:691: Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: 
-fstack-protector-strong not supported by compiler
CFG80211 API is prefered for this kernel version
Using CFG80211 API
  LD  /var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/built-in.o
  CC [M]  /var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/src/shared/linux_osl.o
gcc: error: unrecognized command line option ‘-fstack-protector-strong’
scripts/Makefile.build:258: recipe for target 
'/var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/src/shared/linux_osl.o' failed
make[1]: *** 
[/var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/src/shared/linux_osl.o] Error 1
Makefile:1418: recipe for target 
'_module_/var/lib/dkms/bcmwl/6.30.223.248+bdcom/build' failed
make: *** [_module_/var/lib/dkms/bcmwl/6.30.223.248+bdcom/build] Error 2
make: Leaving directory '/usr/src/linux-headers-4.4.0-53-generic'

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

Title:
  bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu7: bcmwl kernel module
  failed to build [gcc: error: unrecognized command line option
  ‘-fstack-protector-strong’]

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

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

[Bug 1639088] [NEW] package libdbus-1-3:amd64 1.10.6-1ubuntu3.1 failed to install/upgrade: package libdbus-1-3:amd64 is already installed and configured

2016-11-03 Thread Damian Nowak
Public bug reported:

tried to update via "ubuntu software" button from the left panel and
then received this error.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libdbus-1-3:amd64 1.10.6-1ubuntu3.1
ProcVersionSignature: Ubuntu 4.4.0-43.63-generic 4.4.21
Uname: Linux 4.4.0-43-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
CrashReports:
 600:0:116:247711:2016-11-04 00:53:56.827978134 +0100:2016-11-04 
00:53:57.827978134 +0100:/var/crash/libdbus-1-3:amd64.0.crash
 600:0:116:247720:2016-11-04 00:53:57.859978010 +0100:2016-11-04 
00:53:57.843978059 +0100:/var/crash/language-pack-en.0.crash
 600:0:116:247730:2016-11-04 00:53:57.839978071 +0100:2016-11-04 
00:53:57.827978107 +0100:/var/crash/google-chrome-stable.0.crash
Date: Fri Nov  4 00:53:57 2016
DuplicateSignature:
 package:libdbus-1-3:amd64:1.10.6-1ubuntu3.1
 Processing triggers for ureadahead (0.100.0-19) ...
 dpkg: error processing package libdbus-1-3:amd64 (--configure):
  package libdbus-1-3:amd64 is already installed and configured
ErrorMessage: package libdbus-1-3:amd64 is already installed and configured
InstallationDate: Installed on 2016-09-16 (48 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: dpkg
Title: package libdbus-1-3:amd64 1.10.6-1ubuntu3.1 failed to install/upgrade: 
package libdbus-1-3:amd64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed amd64 apport-package need-duplicate-check xenial

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

Title:
  package libdbus-1-3:amd64 1.10.6-1ubuntu3.1 failed to install/upgrade:
  package libdbus-1-3:amd64 is already installed and configured

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

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


[Bug 1626579] [NEW] package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed script post-installation returned error code 1 (translated from PL to ENG)

2016-09-22 Thread Damian
Public bug reported:

I just powered up my notebook,Lenovo Ideapad 300-15ISK and It appeared.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: initramfs-tools 0.122ubuntu8.1
ProcVersionSignature: Ubuntu 4.4.0-38.57-lowlatency 4.4.19
Uname: Linux 4.4.0-38-lowlatency x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Wed Sep 21 14:27:55 2016
ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 1
InstallationDate: Installed on 2016-09-20 (2 days ago)
InstallationMedia: Ubuntu-Studio 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
podproces zainstalowany skrypt post-installation zwrócił kod błędu 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed script post-installation returned error code 1
  (translated from PL to ENG)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1626579/+subscriptions

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

Re: [Bug 1357090] Re: Black screen on resume in Xubuntu 14.04.1

2016-07-10 Thread Damian Campbell
Unfortunately no change on 14.10.


Only workaround remains a very inconvenient suspend through menu.



From: boun...@canonical.com  on behalf of Piotr Admin 

Sent: 09 July 2016 21:30
To: dcampbell...@hotmail.com
Subject: [Bug 1357090] Re: Black screen on resume in Xubuntu 14.04.1

This solution works on my laptop (ubuntu 16.04, but should work on previous OS):
open as root file
/etc/UPower/UPower.conf
and change IgnoreLid=false ==> IgnoreLid=true
save changes, restart system and now it works :-)
You can remove light-locker now.

You can use bash for these:
sudo sed -i -e 's/IgnoreLid=false/IgnoreLid=true/g' /etc/UPower/UPower.conf
sudo apt-get remove --purge -y light-locker light-locker-settings

--
You received this bug notification because you are subscribed to the bug
report.
https://bugs.launchpad.net/bugs/1357090
Bug #1357090 "Black screen on resume in Xubuntu 14.04.1 
...
bugs.launchpad.net
I have had this problem as well when locking the screen on suspend/lid close 
with Xubuntu 14.04.1 (with all updates applied) while using light-locker for 
the lock screen.



Title:
  Black screen on resume in Xubuntu 14.04.1

Status in linux package in Ubuntu:
  Expired

Bug description:
  It seems #1303736 is Not fixed.

  Black screen on resume when using standby on close lid is confirmed on
  Dell Latitude D400 on completely new install of Xubuntu 14.04.1 32
  bit. downloaded 14 Aug from repository as a .ISO image.

  This despite claims to the contrary on the website.
  http://xubuntu.org/news/xubuntu-14-04-1-released/ pointing to
  https://bugs.launchpad.net/ubuntu/+source/xubuntu-default-
  settings/+bug/1303736

  Using the "Suspend" key results in correct operation, i.e. the laptop
  suspends and resumes correctly on lid open. Suspending by closing the
  laptop lid results in the black screen when re-opening. Once in black
  screen mode, the only recourse is power off re-boot.

  Although power manager is set correctly to "Suspend" in the power
  manager , on closing the lid the system does NOT appear to suspend as
  it does when the "Log-off Suspend" button is clicked or the hardware
  "Suspend" key is pressed i.e. the problem APPEARS to be on lid close.

  Power manager and light-locker set NOT to lock on suspend or shutdown
  makes no difference to behaviour.

  Xubuntu up to 12.04.4 (plus latest updates) worked absolutely
  correctly before new install of 14.04.1

  This is a MAJOR inconvenience for an upgrade of an LTS.

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

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

Title:
  Black screen on resume in Xubuntu 14.04.1

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

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


[Bug 1595478] [NEW] package snap-confine 1.0.30 failed to install/upgrade: trying to overwrite '/etc/apparmor.d/usr.bin.snap-confine', which is also in package ubuntu-core-launcher 1.0.29+2

2016-06-23 Thread Damian
Public bug reported:

n/a

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: snap-confine 1.0.30
ProcVersionSignature: Ubuntu 4.4.0-25.44-generic 4.4.13
Uname: Linux 4.4.0-25-generic x86_64
ApportVersion: 2.20.2-0ubuntu1
Architecture: amd64
Date: Tue Jun 21 13:58:16 2016
DuplicateSignature:
 package:snap-confine:1.0.30
 Unpacking snap-confine (1.0.30) ...
 dpkg: error processing archive 
/var/cache/apt/archives/snap-confine_1.0.30_amd64.deb (--unpack):
  trying to overwrite '/etc/apparmor.d/usr.bin.snap-confine', which is also in 
package ubuntu-core-launcher 1.0.29+2
ErrorMessage: trying to overwrite '/etc/apparmor.d/usr.bin.snap-confine', which 
is also in package ubuntu-core-launcher 1.0.29+2
InstallationDate: Installed on 2016-04-26 (58 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Alpha amd64 (20160426)
RelatedPackageVersions:
 dpkg 1.18.7ubuntu1
 apt  1.3~exp2ubuntu1
SourcePackage: ubuntu-core-launcher
Title: package snap-confine 1.0.30 failed to install/upgrade: trying to 
overwrite '/etc/apparmor.d/usr.bin.snap-confine', which is also in package 
ubuntu-core-launcher 1.0.29+2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-core-launcher (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check package-conflict 
package-from-proposed yakkety

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

Title:
  package snap-confine 1.0.30 failed to install/upgrade: trying to
  overwrite '/etc/apparmor.d/usr.bin.snap-confine', which is also in
  package ubuntu-core-launcher 1.0.29+2

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

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


[Bug 1536907] [NEW] package libgtksourceview-3.0-common 3.10.2-0ubuntu1 failed to install/upgrade: próba nadpisania "/usr/share/gtksourceview-3.0/styles/solarized-light.xml", który istnieje także w pa

2016-01-21 Thread Damian Giebas
Public bug reported:

i tried install corebird to twitter on ubu 14.04. Some dependencies
replace original version a few library.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libgtksourceview-3.0-common 3.10.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-76.120-generic 3.13.11-ckt30
Uname: Linux 3.13.0-76-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
Date: Wed Jan 20 22:44:19 2016
Dependencies:
 
DuplicateSignature: package:libgtksourceview-3.0-common:3.10.2-0ubuntu1:próba 
nadpisania "/usr/share/gtksourceview-3.0/styles/solarized-light.xml", który 
istnieje także w pakiecie gedit-gmate 0.12ppa1
ErrorMessage: próba nadpisania 
"/usr/share/gtksourceview-3.0/styles/solarized-light.xml", który istnieje także 
w pakiecie gedit-gmate 0.12ppa1
InstallationDate: Installed on 2014-06-11 (589 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.10
SourcePackage: gtksourceview3
Title: package libgtksourceview-3.0-common 3.10.2-0ubuntu1 failed to 
install/upgrade: próba nadpisania 
"/usr/share/gtksourceview-3.0/styles/solarized-light.xml", który istnieje także 
w pakiecie gedit-gmate 0.12ppa1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  package libgtksourceview-3.0-common 3.10.2-0ubuntu1 failed to
  install/upgrade: próba nadpisania "/usr/share/gtksourceview-3.0/styles
  /solarized-light.xml", który istnieje także w pakiecie gedit-gmate
  0.12ppa1

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

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

[Bug 1377873] Re: deja-dup fails to restore missing files, that contain "german umlaut" (ä,ö,ü,Ä,Ö,Ü).

2015-12-13 Thread Damian Kunkis
Same with me as with Chris - so at the moment some of my backed-up files
seem to be "lost" :(

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

Title:
  deja-dup fails to restore missing files, that contain "german umlaut"
  (ä,ö,ü,Ä,Ö,Ü).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1377873/+subscriptions

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

  1   2   3   4   5   6   7   8   >