[Bug 1746807] Re: 18.04 daily installer fails missing kernel

2018-02-18 Thread Julian Andres Klode
getCompressorExtensions() ignores the empty extension, thus that change
broke support for uncompressed index ifles on cdrom.

** Changed in: apt (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  18.04 daily installer fails missing kernel

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

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

[Bug 1691214] Re: Consider enabling --color by default

2018-02-18 Thread Ubuntu Foundations Team Bug Bot
The attachment "iproute2_4.14.1-0ubuntu3.debdiff" seems to be a debdiff.
The ubuntu-sponsors team has been subscribed to the bug report so that
they can review and hopefully sponsor the debdiff.  If the attachment
isn't a patch, please remove the "patch" flag from the attachment,
remove the "patch" tag, and if you are member of the ~ubuntu-sponsors,
unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issue please contact him.]

** Tags added: patch

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

Title:
  Consider enabling --color by default

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

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

[Bug 1746340] Re: Samsung SSD corruption (fsck needed)

2018-02-18 Thread Kai-Heng Feng
The patch doesn't get merged yet.

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

Title:
  Samsung SSD corruption (fsck needed)

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

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

[Bug 1263311] Re: zenmap as root not displayed

2018-02-18 Thread Ubuntu Foundations Team Bug Bot
The attachment "nmap_7.60-1ubuntu4.debdiff" seems to be a debdiff.  The
ubuntu-sponsors team has been subscribed to the bug report so that they
can review and hopefully sponsor the debdiff.  If the attachment isn't a
patch, please remove the "patch" flag from the attachment, remove the
"patch" tag, and if you are member of the ~ubuntu-sponsors, unsubscribe
the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issue please contact him.]

** Tags added: patch

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

Title:
  zenmap as root not displayed

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

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

[Bug 1745608] Re: [x86_64] Kernel panic when building on NFS in VM

2018-02-18 Thread Jonas Hahnfeld
Any updates on this?

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

Title:
  [x86_64] Kernel panic when building on NFS in VM

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

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

[Bug 1750218] [NEW] Does not reserve space on border

2018-02-18 Thread Shahar Or
Public bug reported:

It doesn't reserve space on border, even though the option to do so is
turned on.

Screenshot attached.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xfce4-panel 4.12.2-1ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
CurrentDesktop: XFCE
Date: Sun Feb 18 10:53:50 2018
InstallationDate: Installed on 2010-10-12 (2685 days ago)
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
SourcePackage: xfce4-panel
UpgradeStatus: Upgraded to bionic on 2017-11-15 (95 days ago)

** Affects: xfce4-panel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

** Attachment added: "Screenshot_2018-02-18_10-53-26.png"
   
https://bugs.launchpad.net/bugs/1750218/+attachment/5057559/+files/Screenshot_2018-02-18_10-53-26.png

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

Title:
  Does not reserve space on border

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

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

[Bug 1750173] Re: getline doesn't terminate after fork

2018-02-18 Thread Navneeth Jayendran
Note that this behavior isn't specific to getline.

Contents of 123.txt: 14991 arbitrary bytes

Code:

```
#include   
 
#include  
 
#include  
 
#include   
 
#include
 
#include   
 
#include
 
#include   
 

 
void h(FILE* fd) {  
 
 (void)fd;  
 
 pid_t p = fork();  
 
 if(!p) {   
 
  sleep(2); 
 
  exit(1);  
 
 } else if (p > 0){ 
 
  int s;
 
  waitpid( p, &s,0);
 
 } else{
 
  perror("Fork");   
 
  exit(2);  
 
 }  
 
}   
 

 
int main() {
 
 FILE* fd = fopen("123.txt", "r");
 if (!fd){
   perror("fopen");
   exit(2);
 }  

 size_t limit = 10; 
 while(limit--) {   
 
  char output[1] = {0}; 
 
  ssize_t retval = fread(output, 1, 9, fd); 
 
  fprintf(stderr, "fread: %zd\n", retval);  
 
  if (retval <= 0){ 
 
exit(0);
 
  } 
 
  h(fd);
 
  retval = fread(output, 1, 4096, fd);  
 
  fprintf(stderr, "fread: %zu\n", retval);  
 
  if (retval <= 0){ 
 
exit(1);
 
  } 
 
  sleep(1); 
 
 }  
 
 fclose(fd);
 
 return 0;  
 
} 
```

Expected output: 
```
fread: 9
fread: 4096
fread: 9
fread: 4096
fread: 9
fread: 4096
fread: 9
fread: 2667
fread: 0
```

Actual output:
```
fread: 9
fread: 4096
fread: 9
fread: 4096
fread: 9
fread: 4096
fread: 9
fread: 4096
fread: 9
fread: 4096

```

It seems that the origin of this problem is that block buffered input
streams in glibc perform calls to `lseek(2)` right before program
termination. The `lseek()` call appears to reset the file descriptor
offset to one after the last byte that was actually flushed out to user
buffers

e.g if `getline` reads "hello\n" from a file containing "hello\nworld",
the program calls `lseek(3, -6, SEEK_CUR)` at program exit. This can be
confirmed using the strace tool.


This can be resolved by flushing input buffers prior to calling fork(). So 
whether this is a bug or feature remains to be seen.

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

Title:
  getline doesn't terminate after fork

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists

[Bug 1422426] Re: nautilus crashed with SIGSEGV in gtk_style_context_clear_property_cache()

2018-02-18 Thread Ivan Hitos
Thank you for reporting this bug to Ubuntu. Ubuntu 15.04 reached EOL
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

I've tried recreating this bug and was unable to, given the information
you've provided. Please upgrade to the latest version and re-test. If
the bug is still reproducible, increase the verbosity of the steps to
recreate it so we can try again.

Do feel free to report any other bugs you may find.

** Changed in: nautilus (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/1422426

Title:
  nautilus crashed with SIGSEGV in
  gtk_style_context_clear_property_cache()

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

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

[Bug 1437543] Re: nautilus crashed with SIGSEGV

2018-02-18 Thread Ivan Hitos
Thank you for reporting this bug to Ubuntu. Ubuntu 15.04 reached EOL
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

I've tried recreating this bug and was unable to, given the information
you've provided. Please upgrade to the latest version and re-test. If
the bug is still reproducible, increase the verbosity of the steps to
recreate it so we can try again.

Do feel free to report any other bugs you may find.

** Changed in: nautilus (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/1437543

Title:
  nautilus crashed with SIGSEGV

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

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

[Bug 1432094] Re: nautilus crashed with SIGSEGV in g_type_check_instance_cast()

2018-02-18 Thread Ivan Hitos
Thank you for reporting this bug to Ubuntu. Ubuntu 15.04 reached EOL
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

Please upgrade to the latest version and re-test. If the bug is still
reproducible, increase the verbosity of the steps to recreate it so we
can try again.

Do feel free to report any other bugs you may find.

** Changed in: nautilus (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/1432094

Title:
  nautilus crashed with SIGSEGV in g_type_check_instance_cast()

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

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

[Bug 1749723] Re: Unable to upgrade from Ubuntu 12.04 to 14.04

2018-02-18 Thread Carsten Agger
To be precise:

agger@dsntest:~$ sudo dpkg --configure -a
agger@dsntest:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree   
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

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

Title:
  Unable to upgrade from Ubuntu 12.04 to 14.04

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

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

[Bug 1749723] Re: Unable to upgrade from Ubuntu 12.04 to 14.04

2018-02-18 Thread Carsten Agger
Hi Gustavo,

I just did that. It doesn't fix it. In fact, it does nothing, reflecting
the fact that the 12.04 system is already fully upgraded.

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

Title:
  Unable to upgrade from Ubuntu 12.04 to 14.04

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

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

[Bug 1422221] Re: nautilus crashed with SIGSEGV in strlen()

2018-02-18 Thread Ivan Hitos
Thank you for reporting this bug to Ubuntu. Ubuntu 15.04 reached EOL
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

I've tried recreating this bug and was unable to, given the information
you've provided. Please upgrade to the latest version and re-test. If
the bug is still reproducible, increase the verbosity of the steps to
recreate it so we can try again.

Do feel free to report any other bugs you may find.

** Changed in: nautilus (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/141

Title:
  nautilus crashed with SIGSEGV in strlen()

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

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

[Bug 1723181] Re: shotwell crashed with SIGSEGV in g_menu_model_get_n_items()

2018-02-18 Thread sam tygier
** Bug watch added: Red Hat Bugzilla #1471882
   https://bugzilla.redhat.com/show_bug.cgi?id=1471882

** Also affects: shotwell (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=1471882
   Importance: Unknown
   Status: Unknown

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

Title:
  shotwell crashed with SIGSEGV in g_menu_model_get_n_items()

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

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

[Bug 1749878] Re: GDM doesn't accept mouse clicks

2018-02-18 Thread Jouni Mettala
I noticed this bug in Gnome with Wayland. Selected Gnome with Xorg and
mouse buttons work. GDM session selector was affected so I had to change
session with keyboard.

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

Title:
  GDM doesn't accept mouse clicks

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

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

[Bug 1750219] [NEW] crash during install

2018-02-18 Thread poupoune5
Public bug reported:

I did nothing special, just tried to install Ubuntu on the side of KDE
Neon on a Slimbook (slimbook.es)

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: ubiquity 17.10.10
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
CasperVersion: 1.387
CurrentDesktop: ubuntu:GNOME
Date: Sun Feb 18 09:31:57 2018
LiveMediaBuild: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20180105.1)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug artful

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

Title:
  crash during install

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

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

[Bug 1723181] Re: shotwell crashed with SIGSEGV in g_menu_model_get_n_items()

2018-02-18 Thread Bug Watch Updater
Launchpad has imported 15 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=1471882.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2017-07-17T14:59:26+00:00 Joachim wrote:

Version-Release number of selected component:
shotwell-0.26.2-1.fc26

Additional info:
reporter:   libreport-2.9.1
backtrace_rating: 4
cmdline:shotwell file:///run/media/frieben/SD512M
crash_function: g_menu_model_get_n_items
executable: /usr/bin/shotwell
journald_cursor: 
s=ac04244c790f4e229ea8422e9c44aa15;i=141d6;b=b7423e34eeba4ad3b12d0d3758dd916c;m=3efef56c1;t=5546cfe8731dd;x=8e6f04acb61f6706
kernel: 4.11.9-300.fc26.x86_64
rootdir:/
runlevel:   N 5
type:   CCpp
uid:1000

Truncated backtrace:
Thread no. 1 (10 frames)
 #0 g_menu_model_get_n_items at gmenumodel.c:494
 #1 gtk_application_window_update_shell_shows_app_menu at 
gtkapplicationwindow.c:316
 #2 gtk_application_window_real_realize at gtkapplicationwindow.c:683
 #3 _g_closure_invoke_va at gclosure.c:867
 #6 gtk_widget_realize at gtkwidget.c:5461
 #14 single_photo_page_blank_display at 
/home/jens/Source/shotwell/src/Page.vala:2186
 #15 import_queue_page_on_import_complete at 
/home/jens/Source/shotwell/src/library/ImportQueuePage.vala:195
 #16 _import_queue_page_on_import_complete_batch_import_import_complete at 
/home/jens/Source/shotwell/src/library/ImportQueuePage.vala:86
 #20 g_signal_emit_by_name at gsignal.c:3487
 #21 batch_import_report_completed at 
/home/jens/Source/shotwell/src/BatchImport.vala:621

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/0


On 2017-07-17T14:59:33+00:00 Joachim wrote:

Created attachment 1299895
File: backtrace

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/1


On 2017-07-17T14:59:34+00:00 Joachim wrote:

Created attachment 1299896
File: cgroup

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/2


On 2017-07-17T14:59:36+00:00 Joachim wrote:

Created attachment 1299897
File: core_backtrace

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/3


On 2017-07-17T14:59:37+00:00 Joachim wrote:

Created attachment 1299898
File: cpuinfo

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/4


On 2017-07-17T14:59:39+00:00 Joachim wrote:

Created attachment 1299899
File: dso_list

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/5


On 2017-07-17T14:59:40+00:00 Joachim wrote:

Created attachment 1299900
File: environ

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/6


On 2017-07-17T14:59:42+00:00 Joachim wrote:

Created attachment 1299901
File: exploitable

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/7


On 2017-07-17T14:59:43+00:00 Joachim wrote:

Created attachment 1299902
File: limits

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/8


On 2017-07-17T14:59:46+00:00 Joachim wrote:

Created attachment 1299903
File: maps

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/9


On 2017-07-17T14:59:47+00:00 Joachim wrote:

Created attachment 1299904
File: open_fds

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/10


On 2017-07-17T14:59:48+00:00 Joachim wrote:

Created attachment 1299905
File: proc_pid_status

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/11


On 2017-07-17T14:59:50+00:00 Joachim wrote:

Created attachment 1299906
File: var_log_messages

Reply at:
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723181/comments/12


On 2017-12-06T12:53:09+00:00 Frank wrote:

Similar problem h

Re: [Bug 1578951] Re: Libreoffice is crashing causing the session to be booted back to the login screen

2018-02-18 Thread Titus
Dear Christopher,

The problem was solved, and I don't remember what I had to do to solve 
it. At the moment I run Ubuntu 17.10 without issues.

Kind regards,


Titus


Op 17-02-18 om 18:50 schreef Christopher M. Penalver:
> Titus, thank you for reporting this and helping make Ubuntu better.
>
> 1) After the crash, are there crash files in /var/crash?
>
> 2) Did this start to happen after an update? If so, which specifically?
>
> 3) To see if this is resolved in your release, could you please update
> your HWE stack as per https://wiki.ubuntu.com/Kernel/LTSEnablementStack
> and advise to the results?
>
> ** Tags added: bios-outdated-a22
>
> ** Changed in: xorg (Ubuntu)
> Importance: High => Low
>
> ** Changed in: xorg (Ubuntu)
> Status: Confirmed => Incomplete
>

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

Title:
  Libreoffice is crashing causing the session to be booted back to the
  login screen

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

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

[Bug 1748894] Re: intermittent dhcp failures

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  intermittent dhcp failures

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

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

[Bug 1748894] Re: intermittent dhcp failures

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  intermittent dhcp failures

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

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

[Bug 1748894] Re: intermittent dhcp failures

2018-02-18 Thread Salman
This happens to our cluster as well which is on pike, but somewhat in
different way. Since the cluster is HA, instance do able to get the ip
from one of the dhcp namespaces but dnsmasq does not work later if the
problematic namespace ends up first in resolv.conf. When we delete the
specific port from the network which automatically gets created after a
few seconds, things start working again.

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

Title:
  intermittent dhcp failures

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

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

[Bug 1503099] Re: acpi-call-dkms 1.1.0-2: acpi-call kernel module failed to build

2018-02-18 Thread Raphaël HALIMI
- I suspect the user simply didn't have the kernel headers installed 
(DKMSBuildLog.txt)
- No update from user since the bug was reported (more than two years ago)
- No update from anyone else either

** Changed in: acpi-call (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  acpi-call-dkms 1.1.0-2: acpi-call kernel module failed to build

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

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

[Bug 1700625] Re: acpi-call-dkms 1.1.0-2: acpi-call kernel module failed to build

2018-02-18 Thread Raphaël HALIMI
- Use of option -fstack-protector-strong not supported by GCC (DKMSBuildLog.txt)
- No update from user since the bug was reported
- No update from anyone else either

** Changed in: acpi-call (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  acpi-call-dkms 1.1.0-2: acpi-call kernel module failed to build

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

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

[Bug 303604] Re: rhythmbox could not open resource for reading

2018-02-18 Thread moragos
*** This bug is a duplicate of bug 273294 ***
https://bugs.launchpad.net/bugs/273294

still happening using Galaxy 8, Ubuntu 17.10 and rhythmbox 3.4.1

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

Title:
  rhythmbox could not open resource for reading

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

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

[Bug 1675540] Re: i2c i2c-1: sendbytes: NAK bailout.

2018-02-18 Thread Serhiy Zahoriya
I'm getting this on a 14.04 production server without nouveau and X.
Can't test newer kernel since it's a production server. It started
happening after upgrade from 3.13.something to 4.4.0-112.

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

Title:
  i2c i2c-1: sendbytes: NAK bailout.

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

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

[Bug 1744711] Re: Update gnome-terminal to 3.28 (vte 0.52)

2018-02-18 Thread Egmont Koblinger
So glib 2.54 -> 2.55 upgrade has problems, and as a consequence, vte
upgrade (which requires glib >= 2.40) is held back?? I don't understand
it :D Nevermind, I'm sure it'll all be polished out for the final 18.04
+ 3.28, so it's okay.

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

Title:
  Update gnome-terminal to 3.28 (vte 0.52)

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

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

[Bug 1750222] [NEW] unity-lens-applications "Recently used" miss several apps

2018-02-18 Thread Wartori
Public bug reported:

Several applications are not shown in unity-lens-applications "Recently
used" and  Home Lens "Applications", after use!

Is think this is a Bug and has something to do with Gnome applications.

Ubuntu 16.04.3 LTS 64 Bit + unity-lens-applications
7.1.0+16.04.20160701-0ubuntu1

Ubuntu CD 16.04.2 LTS 64 Bit (verified download)


Affected are:

gnome-screenshot
calendar
Ubuntu Software (gnome-software)
dconf-editor (installed via gnome-software)
Disks
Disk Usage Analyzer
K3b (installed via gnome-software)


I've tried on two pc (fresh installation), also within the Ubuntu CD (Try 
Ubuntu) and figured out the same issue.

For normal (e.g. 14.04 LTS), all used applications should be shown in
Home Lens "Applications" and Application Lens "Recently used" at first
place, after they are used and closed.


What doesn't fix the issue:

- Change lens filter results

- System Settings - Clear Usage Data

- Change system language

- unity --reset

- unity --reset-icons

 - rm -r ~/.local/share/zeitgeist/
   zeitgeist-daemon --replace

- reinstall unity-lens-applications

- Fresh Ubuntu installation


What does temporarily work:

When i select "lock to launcher", then close the application and remove it from 
launcher, the application will appear like it should in the lenses.
When i have used "normal appearing" applications after that and then select one 
of the affected applications via  "Recently used" or Home Lens "Applications", 
it will not be ranked in first place.
It stay on the same place before selection, until i do the "lock to launcher" 
procedure.

Sometimes it is not possible to lock gnome-software to the launcher.
Probably this is related to this bug 
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1572456 which also affects 
my installation.

It seems to me, that in 14.04 removing software-center leads to a similar 
problem within unity-lens-applications.
So i also tried to install software-center (not gnome-software).
Itself appeared normal within lenses and launcher, without any effect to this 
issue.

** Affects: unity-lens-applications (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/1750222

Title:
  unity-lens-applications "Recently used" miss several apps

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

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

[Bug 1377653] Re: HDMI sound output not detected / NVIDIA optimus laptop

2018-02-18 Thread Guillaume Doisy
Same!
#19 with #24 works!
Ubuntu 16.04 
ASUS - ROG G502VS laptop
nvidia 1070 / driver 390.25
Intel(R) Core(TM) i7-6700HQ CPU
Thanks a lot!

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

Title:
  HDMI sound output not detected / NVIDIA optimus laptop

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

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

[Bug 1750223] [NEW] package xcursor-themes 1.0.4-1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2018-02-18 Thread Rafael Simionato Hayashi
Public bug reported:

There were a problem with the installing while updating

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: xcursor-themes 1.0.4-1
ProcVersionSignature: Ubuntu 4.4.0-97.120-generic 4.4.87
Uname: Linux 4.4.0-97-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sat Feb 17 14:17:15 2018
Dependencies:
 
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DuplicateSignature:
 package:xcursor-themes:1.0.4-1
 Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
 dpkg: error processing package xcursor-themes (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
0b) (prog-if 00 [VGA controller])
   Subsystem: Samsung Electronics Co Ltd Haswell-ULT Integrated Graphics 
Controller [144d:c737]
   Subsystem: Samsung Electronics Co Ltd GeForce 710M [144d:c737]
InstallationDate: Installed on 2015-12-22 (789 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 270E5J/2570EJ
PackageArchitecture: all
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-97-generic.efi.signed 
root=UUID=d1f73cbc-80fc-404c-aa29-debb09fc3021 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.25
SourcePackage: xcursor-themes
Title: package xcursor-themes 1.0.4-1 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)
dmi.bios.date: 06/23/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P07RCK.051.150623.XK
dmi.board.asset.tag: No Asset Tag
dmi.board.name: NP270E5J-XD1BR
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: SAMSUNG_SW_REVISION_1234567890ABCD
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP07RCK.051.150623.XK:bd06/23/2015:svnSAMSUNGELECTRONICSCO.,LTD.:pn270E5J/2570EJ:pvrP07RCK:rvnSAMSUNGELECTRONICSCO.,LTD.:rnNP270E5J-XD1BR:rvrSAMSUNG_SW_REVISION_1234567890ABCD:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
dmi.product.name: 270E5J/2570EJ
dmi.product.version: P07RCK
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.76-1~ubuntu16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.0.7-0ubuntu0.16.04.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 17.0.7-0ubuntu0.16.04.2
version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-0ubuntu0.7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1.2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Sun Feb 18 08:52:13 2018
xserver.configfile: default
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
 NOUVEAU(G0): [XvMC] Failed to initialize extension.
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   14410 
 vendor SEC
xserver.version: 2:1.18.4-0ubuntu0.7

** Affects: xcursor-themes (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package compiz-0.9 ubuntu xenial

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

Title:
  package xcursor-themes 1.0.4-1 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/xcursor-themes/+bug/1750223/+subscriptions

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

[Bug 1750203] Re: Please merge 10.1 from Debian

2018-02-18 Thread Hans Joachim Desserud
** Tags added: needs-debian-merge upgrade-software-version

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

Title:
  Please merge 10.1 from Debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/1750203/+subscriptions

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

[Bug 1750223] Re: package xcursor-themes 1.0.4-1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2018-02-18 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package xcursor-themes 1.0.4-1 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/xcursor-themes/+bug/1750223/+subscriptions

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

[Bug 1750225] [NEW] did a partial upgrade cos it was complaining that it could not do a full grade due to "unapproved" software... i don't have any "unapproved" software that I know of....

2018-02-18 Thread Moses Lim
Public bug reported:

i was not doing anything in particular ..

i saw an offer to upgrade my ubuntu BUT this time it offered a partial
upgrade becos of possibily "unapproved/unsupported" software ...

i don't recall installing any "unapproved/unsupported" software...

i tried the partial upgrade anyway and it refused,, telling me send in
info to you guys..

hope this helps...

feel free to contact me for further info..

moses

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubuntu-release-upgrader-core 1:16.04.23
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Sun Feb 18 22:07:06 2018
InstallationDate: Installed on 2017-03-14 (340 days ago)
InstallationMedia: Ubuntu 12.04.5 LTS "Precise Pangolin" - Release amd64 
(20140807.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: No upgrade log present (probably fresh install)
VarLogDistupgradeTermlog:

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

Title:
  did a partial upgrade cos it was complaining that it could not do a
  full grade due to "unapproved" software... i don't have any
  "unapproved" software that I know of

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

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

[Bug 1569357] Re: Ubuntu 16.04 - Unity desktop session broken when using non-LightDM as X Display Manager

2018-02-18 Thread Igor
@nadams
The only steps I've performed from your list to fix the issue are:

rm --recursive ~/.cache/compizconfig-1
rm --recursive ~/.Xauthority
dconf reset -f /org/compiz
setsid unity

I don't think there is a need to remove ~/.config/autostart directory

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

Title:
  Ubuntu 16.04 - Unity desktop session broken when using non-LightDM as
  X Display Manager

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

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

[Bug 1750228] [NEW] Accer TravelMate 7730 in the transition from 14.04 to 16.04 audio no longer works

2018-02-18 Thread otedesco
Public bug reported:

Ubuntu 16.04.3 Desk Top Amd64 Installed on Acer TravelMate 7730 nothing
works in audio. Also in the sound system test on the right and audio on
the left does not work. Problem with Acer TravelMate 7730 audio driver.
On the same computer Acer TravelMate 7730 previous Ubuntu 14.04 I386
audio all OK.

** Affects: alsa-driver (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/1750228

Title:
  Accer TravelMate 7730 in the transition from 14.04 to 16.04 audio no
  longer works

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

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

[Bug 1750226] [NEW] BUG: Bad rss-counter state mm:ffff8b256d6f4200 idx:0 val:-2

2018-02-18 Thread lotuspsychje
Public bug reported:

Automatic bug kernel oops on 18.04 devel branch @ 18/2/2018

ProblemType: KernelOops
DistroRelease: Ubuntu 18.04
Package: linux-image-4.13.0-32-generic 4.13.0-32.35
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  gdm 731 F pulseaudio
  lotuspsychje   1437 F pulseaudio
Date: Sun Feb 18 12:16:11 2018
Failure: oops
InstallationDate: Installed on 2017-12-16 (63 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20171215)
OopsText:
 BUG: Bad rss-counter state mm:8b256d6f4200 idx:0 val:-2
 BUG: Bad rss-counter state mm:8b256d6f4200 idx:3 val:2
 ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
 ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
 ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-generic 
root=UUID=c2cc7350-42f8-4953-840d-8330750d7f5c ro quiet splash vt.handoff=1
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon N/A
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: BUG: Bad rss-counter state mm:8b256d6f4200 idx:0 val:-2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/29/2004
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: KV8-MAX3 (VIA K8T800-8237)
dmi.board.vendor: http://www.abit.com.tw/
dmi.board.version: 1.x
dmi.chassis.type: 3
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd06/29/2004:svn:pn:pvr:rvnhttp//www.abit.com.tw/:rnKV8-MAX3(VIAK8T800-8237):rvr1.x:cvn:ct3:cvr:

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


** Tags: amd64 apport-kerneloops bionic kernel-oops

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

Title:
  BUG: Bad rss-counter state mm:8b256d6f4200 idx:0 val:-2

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

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

[Bug 1750226] Status changed to Confirmed

2018-02-18 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

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

Title:
  BUG: Bad rss-counter state mm:8b256d6f4200 idx:0 val:-2

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

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

[Bug 1734806] Re: Reset Ubuntu to Factory Defaults

2018-02-18 Thread Jeb E.
** Also affects: gnome-control-center
   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/1734806

Title:
  Reset Ubuntu to Factory Defaults

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1734806/+subscriptions

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

[Bug 1706114] Re: RDP Support for Server [ENHANCEMENT] 17.10 #julyshakedown

2018-02-18 Thread Jeb E.
Adding official RDP support should also, I hope, get Microsoft and
Amazon's attention to begin using RDP as r default way to remote into
virtual machines hosted in their cloud services.

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

Title:
  RDP Support for Server [ENHANCEMENT] 17.10 #julyshakedown

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

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

[Bug 1706114] Re: RDP Support for Server [ENHANCEMENT] 17.10 #julyshakedown

2018-02-18 Thread Jeb E.
*their default

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

Title:
  RDP Support for Server [ENHANCEMENT] 17.10 #julyshakedown

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

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

[Bug 1674661] Re: [SUGGESTION] UI lock during upgrade

2018-02-18 Thread Jeb E.
** Bug watch added: GNOME Bug Tracker #793561
   https://bugzilla.gnome.org/show_bug.cgi?id=793561

** Also affects: gnome-shell via
   https://bugzilla.gnome.org/show_bug.cgi?id=793561
   Importance: Unknown
   Status: Unknown

** Changed in: ubuntu-release-upgrader
   Status: New => Confirmed

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: New => Confirmed

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

Title:
  [SUGGESTION] UI lock during upgrade

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

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

[Bug 1750231] [NEW] package linux-image-extra-4.10.0-40-generic 4.10.0-40.44~16.04.1 failed to install/upgrade: підпроцес встановлено post-removal сценарій повернув статус помилку 1

2018-02-18 Thread Andy N.
Public bug reported:

after update get an error

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-extra-4.10.0-40-generic 4.10.0-40.44~16.04.1
ProcVersionSignature: Ubuntu 4.13.0-26.29~16.04.2-generic 4.13.13
Uname: Linux 4.13.0-26-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Wed Feb 14 06:57:22 2018
ErrorMessage: підпроцес встановлено post-removal сценарій повернув статус 
помилку 1
InstallationDate: Installed on 2017-03-24 (330 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.25
SourcePackage: linux-hwe
Title: package linux-image-extra-4.10.0-40-generic 4.10.0-40.44~16.04.1 failed 
to install/upgrade: підпроцес встановлено post-removal сценарій повернув статус 
помилку 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-hwe (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/1750231

Title:
  package linux-image-extra-4.10.0-40-generic 4.10.0-40.44~16.04.1
  failed to install/upgrade: підпроцес встановлено post-removal сценарій
  повернув статус помилку 1

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

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

[Bug 1750232] [NEW] Linux Mint/Ubuntu is taking modem off-hook during logon

2018-02-18 Thread cdgoldin
Public bug reported:

As of 15 February 2018 (and possibly earlier) the following bug has been
reintroduced:

When Linux Mint (Cinnamon OR Mate) OR UBUNTU starts up (_after_ the
login screen), the Smartlink internal modem is taken off hook, and
remains off hook (disabling the telephone line) until such time as the
system is shut down or rebooted (in which case it goes off hook again
after login).

This annoying bug was introduced with Linux Mint 17.0 Trusty, and also
occurs with Ubuntu 14.04. It disappeared with Linux Mint 18.0 Xenial
(which is based on Ubuntu 16.04). Now it is back, possibly as a result
of the latest updates, possibly earlier.

Yes, since Linux no longer supports the Smartlink modem, even with the
modifications to the kernel that previously worked, I could simply
disconnect the internal modem. But I dual-boot to Windoze, and DO use it
without problem in Windoze, so it is more than an annoyance.

I can understand Linux not supporting hardware, but it is unacceptable
that Linux is sending commands to unsupported hardware whihc cause it to
malfunction.

As a Linux USER, I have no way of isolating the component causing the
bug. It will require a trace of what is written to the COM port(s)
during login. But, since it was fixed before, there should be some
record of the cause and solution.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Linux Mint/Ubuntu is taking modem off-hook during logon

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

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

[Bug 1584557] Re: Seagate external drive causes SCSI bus resets when UAS enabled

2018-02-18 Thread Skyman
I'm also seeing this issue with a Maxtor Seagate 1 TB external USB 3 hard drive 
on HP Pavilion Desktop PC 570-p0xx
System is Kubuntu 16.04.3 LTS with Kernel 4.13.0-32-generic

The workaround/quirk from the original post makes the errors go away,
but the device is really slow.

lsusb output
Bus 005 Device 003: ID 0bc2:61b6 Seagate RSS LLC

Drive is brand new and has no SMART errors.

Output of lshw is attached. If you need any other informations please
let me know. But I could take some _weeks_ untill I will have access to
this machine again.

** Attachment added: "lshw output"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1584557/+attachment/5057651/+files/lshw.out

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

Title:
  Seagate external drive causes SCSI bus resets when UAS enabled

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

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

[Bug 1750232] Re: Linux Mint/Ubuntu is taking modem off-hook during logon

2018-02-18 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1750232/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  Linux Mint/Ubuntu is taking modem off-hook during logon

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

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

[Bug 1748863] Re: Messaging menu gone, items duplicated after libayatana port

2018-02-18 Thread Sean Davis
Resolved with the latest xfce4-indicator-plugin upload.
https://launchpad.net/ubuntu/+source/xfce4-indicator-plugin/2.3.3-1ubuntu1

** Changed in: xfce4-indicator-plugin (Ubuntu)
   Status: New => Fix Released

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

Title:
  Messaging menu gone, items duplicated after libayatana port

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

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

[Bug 1749964] Re: menulibre crashed with SIGABRT in Py_FatalError()

2018-02-18 Thread Jonasz
** Changed in: menulibre (Ubuntu)
 Assignee: (unassigned) => Jonasz (zumi999)

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

Title:
  menulibre crashed with SIGABRT in Py_FatalError()

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

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

[Bug 1750234] [NEW] package libinput-bin 1.6.3-1ubuntu1~16.04.1 failed to install/upgrade: Abhängigkeitsprobleme - verbleibt unkonfiguriert

2018-02-18 Thread Thomas Kügler
Public bug reported:

Ist schon häufiger aufgetreten.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libinput-bin 1.6.3-1ubuntu1~16.04.1
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Sun Feb 18 07:03:11 2018
ErrorMessage: Abhängigkeitsprobleme - verbleibt unkonfiguriert
InstallationDate: Installed on 2017-07-22 (210 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: libinput
Title: package libinput-bin 1.6.3-1ubuntu1~16.04.1 failed to install/upgrade: 
Abhängigkeitsprobleme - verbleibt unkonfiguriert
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libinput (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/1750234

Title:
  package libinput-bin 1.6.3-1ubuntu1~16.04.1 failed to install/upgrade:
  Abhängigkeitsprobleme - verbleibt unkonfiguriert

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

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

Re: [Bug 1750232] Re: Linux Mint/Ubuntu is taking modem off-hook during logon

2018-02-18 Thread cdgoldin
Thank you for your unhelpful reply. The nature of this problem precludes 
identifying the source package, as it is apparently something in the Linux 
kernel occuring before logon.

- Original Message - 
From: "Ubuntu Foundations Team Bug Bot" <1750...@bugs.launchpad.net>
To: 
Sent: Sunday, February 18, 2018 05:25
Subject: [Bug 1750232] Re: Linux Mint/Ubuntu is taking modem off-hook during 
logon


Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1750232/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  Linux Mint/Ubuntu is taking modem off-hook during logon

Status in Ubuntu:
  New

Bug description:
  As of 15 February 2018 (and possibly earlier) the following bug has
  been reintroduced:

  When Linux Mint (Cinnamon OR Mate) OR UBUNTU starts up (_after_ the
  login screen), the Smartlink internal modem is taken off hook, and
  remains off hook (disabling the telephone line) until such time as the
  system is shut down or rebooted (in which case it goes off hook again
  after login).

  This annoying bug was introduced with Linux Mint 17.0 Trusty, and also
  occurs with Ubuntu 14.04. It disappeared with Linux Mint 18.0 Xenial
  (which is based on Ubuntu 16.04). Now it is back, possibly as a result
  of the latest updates, possibly earlier.

  Yes, since Linux no longer supports the Smartlink modem, even with the
  modifications to the kernel that previously worked, I could simply
  disconnect the internal modem. But I dual-boot to Windoze, and DO use
  it without problem in Windoze, so it is more than an annoyance.

  I can understand Linux not supporting hardware, but it is unacceptable
  that Linux is sending commands to unsupported hardware whihc cause it
  to malfunction.

  As a Linux USER, I have no way of isolating the component causing the
  bug. It will require a trace of what is written to the COM port(s)
  during login. But, since it was fixed before, there should be some
  record of the cause and solution.

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

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

Title:
  Linux Mint/Ubuntu is taking modem off-hook during logon

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

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

[Bug 1750237] [NEW] system will not add or remove some software. Also screen greyed out and icons were not present

2018-02-18 Thread daniEL todd sigsworth
Public bug reported:

i guess i just got greedy and added too many programs.  I am very new and don't 
understand how to debug on my own.  System dependencies is bit out of my league 
right now. Will most likely reinstall from DVD that i downloaded and burned.  I 
do not recall if i MD5 this or not. So that may be and issue.  The problem did 
not start until i added a bunch of awesome toys. 
   Using Ubuntu 16.04.3 LTS Release 16.04

sorry i can't give more data than that

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libcups2:amd64 2.1.3-4ubuntu0.3
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-lowlatency 4.13.13
Uname: Linux 4.13.0-32-lowlatency x86_64
ApportVersion: 2.20.1-0ubuntu2.15
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
CrashReports:
 600:0:117:394601:2018-02-18 06:03:01.180194139 -0600:2018-02-18 
06:03:02.180194139 -0600:/var/crash/texlive-latex-base.0.crash
 600:0:117:387079:2018-02-18 05:58:13.489199638 -0600:2018-02-18 
05:58:14.489199638 -0600:/var/crash/libcups2:amd64.0.crash
 640:1000:117:98508:2018-02-16 06:17:26.441312789 -0600:2018-02-16 
06:17:27.441312789 -0600:/var/crash/_usr_bin_gnome-software.1000.crash
CupsErrorLog:
 W [18/Feb/2018:05:56:07 -0600] CreateProfile failed: 
org.freedesktop.ColorManager.AlreadyExists:profile id 
\'HP-ENVY-5530-series-Gray..\' already exists
 W [18/Feb/2018:05:56:07 -0600] CreateProfile failed: 
org.freedesktop.ColorManager.AlreadyExists:profile id 
\'HP-ENVY-5530-series-RGB..\' already exists
Date: Sun Feb 18 05:58:13 2018
DuplicateSignature:
 package:libcups2:amd64:2.1.3-4ubuntu0.3
 Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
 dpkg: error processing package libcups2:amd64 (--configure):
  package libcups2:amd64 is already installed and configured
ErrorMessage: package libcups2:amd64 is already installed and configured
InstallationDate: Installed on 2018-02-16 (2 days ago)
InstallationMedia: Ubuntu-Studio 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
Lpstat: device for HP-ENVY-5530-series: 
hp:/net/ENVY_5530_series?zc=HP3464A9E99E09
MachineType: Sony Corporation VGN-NR220E
Papersize: letter
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
PpdFiles: HP-ENVY-5530-series: HP Envy 5530 Series, hpcups 3.16.3
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-lowlatency 
root=UUID=1b7ff9e9-9345-4b33-9dae-9045cd67aa0a ro quiet splash vt.handoff=7
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-lowlatency 
root=UUID=1b7ff9e9-9345-4b33-9dae-9045cd67aa0a ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.25
SourcePackage: dpkg
Title: package libcups2:amd64 2.1.3-4ubuntu0.3 failed to install/upgrade: 
package libcups2:amd64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/23/2007
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: R1101J9
dmi.board.asset.tag: N/A
dmi.board.name: VAIO
dmi.board.vendor: Sony Corporation
dmi.board.version: N/A
dmi.chassis.asset.tag: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR1101J9:bd10/23/2007:svnSonyCorporation:pnVGN-NR220E:pvrC3LQLBBY:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.family: N/A
dmi.product.name: VGN-NR220E
dmi.product.version: C3LQLBBY
dmi.sys.vendor: Sony Corporation

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


** Tags: already-installed 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/1750237

Title:
  system will not add or remove some software. Also screen greyed out
  and icons were not present

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

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

[Bug 1750237] Re: system will not add or remove some software. Also screen greyed out and icons were not present

2018-02-18 Thread daniEL todd sigsworth
Hope this helps make Ubuntu Studio a more functional tool for other
users

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

Title:
  system will not add or remove some software. Also screen greyed out
  and icons were not present

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

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

[Bug 1721398] Re: Missing "idevicerestore" & "libirecovery" from libimobiledevice-utils package

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: libimobiledevice (Ubuntu)
   Status: New => Confirmed

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

Title:
  Missing "idevicerestore" & "libirecovery" from libimobiledevice-utils
  package

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

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

[Bug 1750237] Re: system will not add or remove some software. Also screen greyed out and icons were not present

2018-02-18 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  system will not add or remove some software. Also screen greyed out
  and icons were not present

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

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

[Bug 1750239] [NEW] viewer in hex mode sometimes shows "-" incorrectly

2018-02-18 Thread Peter Schmitt
Public bug reported:

Midnight commander:

Curious bug of "View Hex":
Depending on the name of a file (with or without extension .2)
  and on the directory(!)
the internal viewer with the hex option shows
the 1-byte ASCII character "-"
as (incorrectly) as 3 bytes "E2 80 90"
or (correctly)   as 1 byte  "2D".
This is demonstrated by screen shots taken with a 6-byte file,
but was discovered accidently with a larger file.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: mc 3:4.8.15-2
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
CurrentDesktop: Unity
Date: Sun Feb 18 14:10:37 2018
InstallationDate: Installed on 2016-11-12 (462 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
SourcePackage: mc
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

** Attachment added: "ViewHex.zip"
   
https://bugs.launchpad.net/bugs/1750239/+attachment/5057713/+files/ViewHex.zip

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

Title:
  viewer in hex mode sometimes shows "-" incorrectly

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

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

[Bug 1750238] [NEW] package vlc-plugin-qt (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/qvlc', which is also in package vlc 2.2.2-5ubuntu0.16.04.4

2018-02-18 Thread François-Xavier Curfs
Public bug reported:

Issue occurring during upgrade from 16.04 LTS to 17.10.

ProblemType: Package
DistroRelease: Ubuntu 17.10
Package: vlc-plugin-qt (not installed)
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
Date: Sun Feb 18 13:15:50 2018
DuplicateSignature:
 package:vlc-plugin-qt:(not installed)
 Unpacking kodi-repository-kodi (2:17.3+dfsg1-3) ...
 dpkg: error processing archive 
/tmp/apt-dpkg-install-H7THye/385-kodi-repository-kodi_2%3a17.3+dfsg1-3_all.deb 
(--unpack):
  trying to overwrite '/usr/share/kodi/addons/repository.xbmc.org/addon.xml', 
which is also in package kodi-data 2:17.3+dfsg1-3
ErrorMessage: trying to overwrite '/usr/bin/qvlc', which is also in package vlc 
2.2.2-5ubuntu0.16.04.4
InstallationDate: Installed on 2016-01-01 (778 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
Python3Details: /usr/bin/python3.6, Python 3.6.3, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14, python-minimal, 
2.7.14-2ubuntu1
SourcePackage: vlc
Title: package vlc-plugin-qt (not installed) failed to install/upgrade: trying 
to overwrite '/usr/bin/qvlc', which is also in package vlc 
2.2.2-5ubuntu0.16.04.4
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package artful package-conflict

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

Title:
  package vlc-plugin-qt (not installed) failed to install/upgrade:
  trying to overwrite '/usr/bin/qvlc', which is also in package vlc
  2.2.2-5ubuntu0.16.04.4

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

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

[Bug 1750238] Re: package vlc-plugin-qt (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/qvlc', which is also in package vlc 2.2.2-5ubuntu0.16.04.4

2018-02-18 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package vlc-plugin-qt (not installed) failed to install/upgrade:
  trying to overwrite '/usr/bin/qvlc', which is also in package vlc
  2.2.2-5ubuntu0.16.04.4

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

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

[Bug 1750235] Re: plymouthd crashed with SIGSEGV in script_obj_deref_direct()

2018-02-18 Thread Apport retracing service
*** This bug is a duplicate of bug 1745406 ***
https://bugs.launchpad.net/bugs/1745406

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1745406, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057667/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057670/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057678/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057680/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057681/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057682/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1750235/+attachment/5057683/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1745406
   plymouthd crashed with SIGSEGV in script_obj_deref_direct()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  plymouthd crashed with SIGSEGV in script_obj_deref_direct()

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

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

[Bug 1746848] Re: Ubuntu 17.10 keeps comming back after suspended on a Macbook Pro 15 retina 2013 late

2018-02-18 Thread Otto Julio Ahlert Pinno
I don't know if this helps but...

"dmidecode" command doesn't show a "Lid" entry.


** Attachment added: "dmidecode command"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1746848/+attachment/5057718/+files/dmidecode.txt

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

Title:
  Ubuntu 17.10 keeps comming back after suspended on a Macbook Pro 15
  retina 2013 late

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

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

[Bug 1750240] [NEW] package python-decorator 4.0.6-1 failed to install/upgrade: 子进程 已安装 post-installation 脚本 返回错误状态 1

2018-02-18 Thread duduguan
Public bug reported:

rush up

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: python-decorator 4.0.6-1
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Sun Feb 18 09:54:27 2018
Dependencies:
 
ErrorMessage: 子进程 已安装 post-installation 脚本 返回错误状态 1
InstallationDate: Installed on 2018-01-24 (25 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: python-decorator
Title: package python-decorator 4.0.6-1 failed to install/upgrade: 子进程 已安装 
post-installation 脚本 返回错误状态 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: python-decorator (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/1750240

Title:
  package python-decorator 4.0.6-1 failed to install/upgrade: 子进程 已安装
  post-installation 脚本 返回错误状态 1

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

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

[Bug 1750228] Re: Accer TravelMate 7730 in the transition from 14.04 to 16.04 audio no longer works

2018-02-18 Thread otedesco
This is my
lspci -v | grep -A7 -i "audio"
output:

00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio 
Controller (rev 03)
Subsystem: Acer Incorporated [ALI] 82801I (ICH9 Family) HD Audio 
Controller
Flags: bus master, fast devsel, latency 0, IRQ 26
Memory at f060 (64-bit, non-prefetchable) [size=16K]
Capabilities: 
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express
Port 1 (rev 03) (prog-if 00 [Normal decode])

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

Title:
  Accer TravelMate 7730 in the transition from 14.04 to 16.04 audio no
  longer works

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

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

[Bug 1734806] Re: Reset Ubuntu to Factory Defaults

2018-02-18 Thread Jeremy Bicha
** Project changed: gnome-control-center => gnome-settings-daemon
(Ubuntu)

** No longer affects: gnome-settings-daemon (Ubuntu)

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

Title:
  Reset Ubuntu to Factory Defaults

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

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

[Bug 1750242] [NEW] package samba 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to install/upgrade: под процеса инсталиран е скрипта post-installation върна грешка за състояние за излизане от 1

2018-02-18 Thread Emil
Public bug reported:

I just mount NTFS HDD with data and shear with Samba in local  network.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: samba 2:4.3.11+dfsg-0ubuntu0.16.04.12
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Sat Feb 17 19:15:35 2018
ErrorMessage: под процеса инсталиран е скрипта post-installation върна грешка 
за състояние за излизане от 1
InstallationDate: Installed on 2018-02-17 (1 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
NmbdLog:
 
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.25
SambaServerRegression: Yes
SmbConfIncluded: Yes
SourcePackage: samba
Title: package samba 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to install/upgrade: 
под процеса инсталиран е скрипта post-installation върна грешка за състояние за 
излизане от 1
UbuntuFailedConnect: Yes
UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  package samba 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to
  install/upgrade: под процеса инсталиран е скрипта post-installation
  върна грешка за състояние за излизане от 1

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

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

[Bug 1734806] Re: Reset Ubuntu to Factory Defaults

2018-02-18 Thread Jeremy Bicha
** Project changed: ubuntu-seeds => gnome-control-center (Ubuntu)

** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  Reset Ubuntu to Factory Defaults

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

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

[Bug 1734806] Re: Reset Ubuntu to Factory Defaults

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-control-center (Ubuntu)
   Status: New => Confirmed

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

Title:
  Reset Ubuntu to Factory Defaults

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

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

[Bug 1734806] Re: Reset Ubuntu to Factory Defaults

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: New => Confirmed

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

Title:
  Reset Ubuntu to Factory Defaults

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

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

[Bug 1739322] Re: Hazardous displays when coming back from sleep state

2018-02-18 Thread Christopher M. Penalver
Pierre Wilch, given this issue only happens when using Unity, I'll
reassign to Unity so a specialist may review.

** Description changed:

  Conditions:
  - in the upper bar the display of the seconds must be enabled
    (in my case the entire date-and-time is displayed, excepted the week 
number);
  - system is set to automatically go into sleep state after the selected delay
    (in my case the option "lock the keyboard" is not enabled).
  On awakening, for example by using the shift touch, parts of the screen are 
blinking according to 1 second rate and 3 seconds cycle.
  Coming back to normal behavior needs to close and re-open windows.
  
  To help to reproduce:
  - edit a message with thunderbird;
  - select ubuntu "parameters";
  - select "Luminosité & verrouillage" ("Brightness & keyboard locking"?);
  - select "1 minute";
  - wait 1 minute and going into sleep state;
  - when in sleep state press the "shift" key;
  and then I have a blinking "Christmas tree", too complicated to be described.
  I tested it again 3 times why writing this post (firefox had also an opened 
window, under thunderbird; with firefox alone, the screen blinks only one time 
-should also not-).
  
  WORKAROUND: When the seconds are not displayed in the upper bar there is
  no problem.
+ 
+ WORKAROUND: Use GNOME Flashback (Metacity) session.
  
  ---
  .tmp.unity_support_test.0:
  
  ApportVersion: 2.20.1-0ubuntu2.15
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0156] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Toshiba America Info Systems 3rd Gen Core processor Graphics 
Controller [1179:fb31]
  InstallationDate: Installed on 2017-06-29 (223 days ago)
  InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
  MachineType: TOSHIBA SATELLITE PRO C850-1GR
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-generic.efi.signed 
root=UUID=7169ec32-1674-4c34-b45b-2001ed412887 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
  Tags:  xenial ubuntu compiz-0.9
  Uname: Linux 4.13.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 10/01/2013
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.80
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.80:bd10/01/2013:svnTOSHIBA:pnSATELLITEPROC850-1GR:pvrPSCBXE-01T01GFR:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-1GR
  dmi.product.version: PSCBXE-01T01GFR
  dmi.sys.vendor: TOSHIBA
  version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.83-1~16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.4-0ubuntu1~16.04.4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.4-0ubuntu1~16.04.4
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

** Description changed:

  Conditions:
+ - Use the Unity desktop environment.
  - in the upper bar the display of the seconds must be enabled
    (in my case the entire date-and-time is displayed, excepted the week 
number);
  - system is set to automatically go into sleep state after the selected delay
    (in my case the option "lock the keyboard" is not enabled).
  On awakening, for example by using the shift touch, parts of the screen are 
blinking according to 1 second rate and 3 seconds cycle.
  Coming back to normal behavior needs to close and re-open windows.
  
  To help to reproduce:
  - edit a message with thunderbird;
  - select ubuntu "parameters";
  - select "Luminosité & verrouillage" ("Brightness & keyboard locking"?);
  - select "1 minute";
  - wait 1 minute and going into sleep state;
  - when in sleep state press the "shift" key;
  and th

[Bug 1698656] Re: navigation panel icons missing on standard install of 17.04

2018-02-18 Thread mx321
The steps described in #4 did not work for me. I managed to fix it by running 
qt5ct and selecting "Oxygen" as icon theme there. 
Rem: I also have QT_QPA_PLATFORMTHEME="qt5ct" in my env.

See https://bbs.archlinux.org/viewtopic.php?id=220907

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

Title:
  navigation panel icons missing on standard install of 17.04

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

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

[Bug 1750126] Re: major failure in startup

2018-02-18 Thread Christopher M. Penalver
Mohamed omar, I'll close this as per your comment
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1750126/comments/3
noting this was resolved by a reinstall.

** Changed in: xorg (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  major failure  in startup

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

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

[Bug 1750243] [NEW] [snap] StartupWMClass missing in .desktop file

2018-02-18 Thread Jonas
Public bug reported:

Chromium Snap Version 64.0.3282.167

How to reproduce:

In Gnome:

Add the Chromium Snap to the left launcher panel. 
Start the Chromium Snap.

Actual behavior: 
The Chromium snap starts and creates a new symbol in the launcher panel.

Desired behavior:
The Chromium snap should start using the symbol which is already pinned to the 
launcher panel.

In Budgie:

The Chromium Snap cannot be pinned to the panel at all.

Possible solution:

Add StartupWMClass= ... to the .desktop launcher of the chromium snap.

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


** Tags: snap

** Tags added: snap

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

Title:
  [snap] StartupWMClass missing in .desktop file

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

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

[Bug 1578951] Re: Libreoffice is crashing causing the session to be booted back to the login screen

2018-02-18 Thread Christopher M. Penalver
Titus, I'm closing this as per your comment
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1578951/comments/8
noting this was resolved by updating.

** Changed in: xorg (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  Libreoffice is crashing causing the session to be booted back to the
  login screen

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

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

[Bug 1750245] [NEW] i915 kbl_guc_ver9_14.bin does not load

2018-02-18 Thread Andrew Crouthamel
Public bug reported:

The provided i915/kbl_guc_ver9_14.bin does not load when configured to
do so . If the file is replaced by manually installing with the included
script from 01.org, it loads properly:
https://01.org/linuxgraphics/downloads/kabylake-guc-9.14

Before:
GuC firmware status:
path: i915/kbl_guc_ver9_14.bin
fetch: FAIL
load: NONE
version wanted: 9.14
version found: 0.0
header: offset is 0; size = 0
uCode: offset is 0; size = 0
RSA: offset is 0; size = 0

After:
GuC firmware status:
path: i915/kbl_guc_ver9_14.bin
fetch: SUCCESS
load: SUCCESS
version wanted: 9.14
version found: 9.14
header: offset is 0; size = 128
uCode: offset is 128; size = 142272
RSA: offset is 142400; size = 256

** Affects: linux-firmware (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/1750245

Title:
  i915 kbl_guc_ver9_14.bin does not load

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

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

[Bug 1746826] Re: could not upgrade mysql during lubuntu upgrade process from v 17.04 to 17.10 - Also data files are located on NTFS partition so that MySQL server on windows server installation can a

2018-02-18 Thread Umar Ali Khan
Yes! You are right. The user 'debian-sys-maint'@'localhost' was missing
from sys.user/users table and i inserted the user manually (with these
roles assigned : MaintanenceAdmin, ProcessAdmin, UserAdmin,
MonitorAdmin, DBDesigner, ReplicationAdmin, BackupAdmin, and custom role
- all global privileges granted except GRANT OPTION). Then afterwards,
the upgrade process went to completion smoothly.

You can change the status of this bug as Opinion or Won't Fix.

Thanks!

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

Title:
  could not upgrade mysql during lubuntu upgrade process from v 17.04 to
  17.10 - Also data files are located on NTFS partition so that MySQL
  server on windows server installation can also access same data files

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

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

[Bug 1697786] Re: Graphic drivers may cause problem with booting

2018-02-18 Thread Christopher M. Penalver
Ken Ludlow, thank you for reporting this and helping make Ubuntu better.

Could you please run the following command once from a terminal by ensuring you 
have the package xdiagnose installed, and that you click the Yes button for 
attaching additional debugging information:
apport-collect 1697786

When reporting xorg related bugs in the future, please do so via the
above method. You can learn more about this functionality at
https://wiki.ubuntu.com/ReportingBugs.

** Changed in: xorg (Ubuntu)
   Importance: Undecided => Low

** Changed in: xorg (Ubuntu)
   Status: New => Incomplete

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

Title:
  Graphic drivers may cause problem with booting

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

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

[Bug 1731071] Re: Gnome shell huge memory usage

2018-02-18 Thread Roland
*** This bug is a duplicate of bug 1672297 ***
https://bugs.launchpad.net/bugs/1672297

Same withe Ubuntu 17.10

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND 

 2810 roland20   0 4164560 583452  88184 S  10,3  7,4  28:44.58 gnome-shell

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

Title:
  Gnome shell huge memory usage

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

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

[Bug 1737524] Re: DVD R/W ODD is not being recognised by dvd decrypter

2018-02-18 Thread Christopher M. Penalver
** Package changed: xorg (Ubuntu) => wine1.6 (Ubuntu)

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

Title:
  DVD R/W ODD is not being recognised by dvd decrypter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wine1.6/+bug/1737524/+subscriptions

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

[Bug 1750246] [NEW] OpenNIC domains don't resolve

2018-02-18 Thread Dik
Public bug reported:

The resolving of *.libre, *.geek, etc. domains from OpenNIC don't work
out of the box. It is an issue, that don't allows to users to use this
part if Internet.

It would be fine to include in the Firefox an extension, that do the
resolving for this domains.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Package changed: network-manager (Ubuntu) => ubuntu

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

Title:
  OpenNIC domains don't resolve

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

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

[Bug 1697223] Re: Nil

2018-02-18 Thread Christopher M. Penalver
Douglas L. Turnbull, if you suspect a virus on your drive, it is best to
scan your OS for this via https://help.ubuntu.com/community/Antivirus to
confirm.

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

Title:
  Nil

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

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

[Bug 1584557] Re: Seagate external drive causes SCSI bus resets when UAS enabled

2018-02-18 Thread Kai-Heng Feng
This commit might help:

commit 7fee72d5e8f1e7b8d8212e28291b1a0243ecf2f1
Author: Hans de Goede 
Date:   Tue Nov 14 19:27:22 2017 +0100

uas: Always apply US_FL_NO_ATA_1X quirk to Seagate devices

Please try kernel version >= v4.15.

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

Title:
  Seagate external drive causes SCSI bus resets when UAS enabled

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

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

[Bug 1750248] [NEW] package shared-mime-info 1.8-1 failed to install/upgrade: post-install subprocess script returned error code 1

2018-02-18 Thread Nathan Graule
Public bug reported:

Installed blender from Thomas Schiex ppa: https://launchpad.net/~thomas-
schiex/+archive/ubuntu/blender

shared-mime-info didn't get configured on install, and apt -f install
reported that configuration was incomplete.

ProblemType: Package
DistroRelease: Ubuntu 17.10
Package: shared-mime-info 1.8-1
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
Date: Sun Feb 18 15:35:42 2018
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
InstallationDate: Installed on 2018-02-17 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20180105.1)
Python3Details: /usr/bin/python3.6, Python 3.6.3, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14, python-minimal, 
2.7.14-2ubuntu1
RelatedPackageVersions:
 dpkg 1.18.24ubuntu1
 apt  1.5.1
SourcePackage: shared-mime-info
Title: package shared-mime-info 1.8-1 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: shared-mime-info (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package artful

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

Title:
  package shared-mime-info 1.8-1 failed to install/upgrade: post-install
  subprocess script returned error code 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shared-mime-info/+bug/1750248/+subscriptions

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

[Bug 1750247] Re: Kodi segfaults when playing any video

2018-02-18 Thread Stephen Allen
I'll be happy to further any other information needed.

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

Title:
  Kodi segfaults when playing any video

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

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

[Bug 1750247] [NEW] Kodi segfaults when playing any video

2018-02-18 Thread Stephen Allen
Public bug reported:

Since an update on late Friday/early Saturday morning Feb.16-17, 2018. I
can play video outside of Kodi in gnome-mpv and vlc.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: kodi 2:17.6+dfsg1-1
ProcVersionSignature: Ubuntu 
4.13.0-32201802110420.0+mediatree+hauppauge-generic 4.13.13
Uname: Linux 4.13.0-32201802110420-generic x86_64
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
CurrentDesktop: GNOME
Date: Sun Feb 18 09:29:28 2018
InstallationDate: Installed on 2018-01-19 (30 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170920)
SourcePackage: kodi
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic kodi

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

Title:
  Kodi segfaults when playing any video

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

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

[Bug 1697093] Re: Black Screen after boot.

2018-02-18 Thread Christopher M. Penalver
Abhiroj, thank you for reporting this and helping make Ubuntu better.

1) Could you please provide the full computer model as noted on the
sticker of the computer itself (not from the Bug Description, or the
result of a terminal command)?

2) Did this happen after an update? if so, which specifically?

3) To see if this is resolved in your release, could you please update
your HWE stack via https://wiki.ubuntu.com/Kernel/LTSEnablementStack and
advise to the results?

4) If still reproducible after performing 3), please undo your
WORKAROUND, remove and PPAs installed, and provide the missing
information from https://wiki.ubuntu.com/DebuggingKernelBoot .

** Description changed:

- Please bear with me as This is the last place to resolve the as I have
- tried different resources available for the problem already, but with no
- effect.Long story short, Ubuntu 16.04 was working fine for a long time
- but since recently, It is showing up the black screen after boot.By
- blank screen, I mean:-
+ Ubuntu 16.04 was working fine for a long time but since recently, while
+ booting, after purple screen the screen goes blank. There is no mouse
+ pointer. A cursor blinks for a few seconds and screen goes 100% black
+ but still lit, and then after another few seconds, it goes completely
+ dark as if it is turned off. I then switch to the command-line screen or
+ tty1 to get the logs.
  
- **The Problem**:-
+ I've tried: the `oibaf-drivers` but this didn't help.
  
- After Boot (i.e. after purple screen),
- 
- 1. There is no mouse pointer.
- 
- 2. A cursor blinks for a few seconds and screen goes 100% black but
- still lit, and then after another few seconds, it goes completely dark
- as if it is turned off.
- 
- 3. I wait and then switch to the command-line screen or tty1 to get the
- logs.
- 
- **What I have done yet**:-
- 
- 1. I have updated my system, with `oibaf-drivers` but still no help.
- `fglrx` is officially deprecated for Ubuntu 16.04 and `amdgpu-pro`
- provided by AMD does not support AMD graphic card of my
- system.Currently, the system is using(I don't whether it is perfectly
- working or not) `radeon driver` (The OSS driver for AMD). For more info,
- here are the specs of GPU on my system:-
- 
- Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun LE
- [Radeon HD 8550M / R5 M230]
- 
- VGA compatible controller: Intel Corporation Haswell-ULT Integrated
- Graphics Controller (rev 09)
- 
- 2. `dmesg | grep -i radeon` shows no error during boot-up.
- 
- 3. Running the system in `nomodeset`, which is resulting in highly poor
- graphics performance. It is much deflected compared to ideal.
- 
- 4. Not running the system in `nomodeset` but using `startX` in tty1, the
- systemUI restarts again but `mouse pointer turns to a cross` and only
+ Using `startX` in tty1, the mouse pointer turns to a cross and only
  folders present on my desktop are visible, but no wallpaper can be seen,
- no side-dock, no launcher (after the click) and no status bar.The
+ no side-dock, no launcher (after the click) and no status bar. The
  desktop is completely absent though desktop folders are visible and can
  be opened.
  
- Please suggest a solution.
+ WORKAROUND: Use kernel parameter:
+ nomodeset
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.8.0-54.57~16.04.1-generic 4.8.17
  Uname: Linux 4.8.0-54-generic x86_64
  .tmp.unity_support_test.1:
-  
+ 
  ApportVersion: 2.20.1-0ubuntu2.6
  Architecture: amd64
  BootLog: /dev/sda11: clean, 302776/3129344 files, 2203296/12499968 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Jun 10 01:39:53 2017
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
-Subsystem: Lenovo Haswell-ULT Integrated Graphics Controller [17aa:380c]
-Subsystem: Lenovo Sun LE [Radeon HD 8550M / R5 M230] [17aa:380c]
+  Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
+    Subsystem: Lenovo Haswell-ULT Integrated Graphics Controller [17aa:380c]
+    Subsystem: Lenovo Sun LE [Radeon HD 8550M / R5 M230] [17aa:380c]
  InstallationDate: Installed on 2017-05-18 (21 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: LENOVO ACLU12
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-54-generic 
root=UUID=f693a857-8102-4f79-a16a-ad0d75fb8edc ro quiet splash nomodeset 
vt.handoff=7
  Renderer: Software
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 0

[Bug 1716253] Re: Nothing

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug is no longer a duplicate of bug 1716252
   Nothing
** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  Nothing

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

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

[Bug 1710381] Re: all

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  all

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

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

[Bug 1697275] Re: Nothing

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  Nothing

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

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

[Bug 1716252] Re: Nothing

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  Nothing

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

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

[Bug 1700339] Re: All

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  All

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

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

[Bug 1695948] Re: Nothing

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  Nothing

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

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

[Bug 1687016] Re: all

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  all

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

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

[Bug 1695987] Re: "Unknown option: proto udp6" error on openvpn import in KDE network manager

2018-02-18 Thread Christopher M. Penalver
** Package changed: xorg (Ubuntu) => kde-baseapps (Ubuntu)

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

Title:
  "Unknown option: proto udp6" error on openvpn import in KDE network
  manager

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

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

[Bug 1695765] Re: nothing

2018-02-18 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1657349 ***
https://bugs.launchpad.net/bugs/1657349

** This bug has been marked a duplicate of bug 1657349
   That's all

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

Title:
  nothing

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

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

Re: [Bug 1749878] Re: GDM doesn't accept mouse clicks

2018-02-18 Thread Stephen Allen
That's interesting @JouniMettala - I'm getting it on Gnome-Vanilla on
Xorg.

On Sun, Feb 18, 2018 at 4:35 AM Jouni Mettala 
wrote:

> I noticed this bug in Gnome with Wayland. Selected Gnome with Xorg and
> mouse buttons work. GDM session selector was affected so I had to change
> session with keyboard.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1749878
>
> Title:
>   GDM doesn't accept mouse clicks
>
> Status in gdm3 package in Ubuntu:
>   Incomplete
> Status in libinput package in Ubuntu:
>   Incomplete
> Status in mutter package in Ubuntu:
>   Incomplete
>
> Bug description:
>   I waited 48 hrs before reporting in the event that it was only
>   temporary as things can be in a state of flux with a developmental
>   version with updates often.
>
>   Anyway, after one of the recent updates for me, I couldn't change the
> session in the GDM session selector. Had to use the keyboard + return key
> to login. No biggie as I don't change sessions often.
>   I'm currently running vanilla gnome. This behaviour exists with the
> recent Ubuntu Kernel too (In case one is wondering about the custom kernel
> I'm running, if it's the problem).
>
>   Thank-you.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 18.04
>   Package: gdm3 3.26.2.1-2ubuntu2
>   ProcVersionSignature: Ubuntu
> 4.13.0-32201802110420.0+mediatree+hauppauge-generic 4.13.13
>   Uname: Linux 4.13.0-32201802110420-generic x86_64
>   ApportVersion: 2.20.8-0ubuntu10
>   Architecture: amd64
>   CurrentDesktop: GNOME
>   Date: Thu Feb 15 21:37:17 2018
>   InstallationDate: Installed on 2018-01-19 (27 days ago)
>   InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64
> (20170920)
>   SourcePackage: gdm3
>   UpgradeStatus: No upgrade log present (probably fresh install)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1749878/+subscriptions
>
-- 

This email is printed from 100% recycled electrons.

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

Title:
  GDM doesn't accept mouse clicks

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

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

[Bug 1750249] [NEW] package libsane1 1.0.27-1~experimental2ubuntu2.1 [modified: lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules] failed to install/upgrade: poging tot overschrijven van

2018-02-18 Thread www2
Public bug reported:

Hi cpu usage, automatic bug report

ProblemType: Package
DistroRelease: Ubuntu 17.10
Package: libsane1 1.0.27-1~experimental2ubuntu2.1 [modified: 
lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules]
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.7-0ubuntu3.7
AptOrdering:
 wine-devel-amd64:amd64: Install
 wine-devel-i386:i386: Install
 wine-devel:amd64: Install
 libsane1:i386: Install
 NULL: ConfigurePending
Architecture: amd64
Date: Sat Feb 17 23:53:17 2018
ErrorMessage: poging tot overschrijven van gedeelde 
'/lib/udev/hwdb.d/20-sane.hwdb', dat verschilt van andere exemplaren van pakket 
libsane1:i386
InstallationDate: Installed on 2017-07-01 (231 days ago)
InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
Python3Details: /usr/bin/python3.6, Python 3.6.3, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14, python-minimal, 
2.7.14-2ubuntu1
RelatedPackageVersions:
 dpkg 1.18.24ubuntu1
 apt  1.5.1
SourcePackage: sane-backends
Title: package libsane1 1.0.27-1~experimental2ubuntu2.1 [modified: 
lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules] failed to 
install/upgrade: poging tot overschrijven van gedeelde 
'/lib/udev/hwdb.d/20-sane.hwdb', dat verschilt van andere exemplaren van pakket 
libsane1:i386
UpgradeStatus: Upgraded to artful on 2018-01-11 (37 days ago)

** Affects: sane-backends (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package artful

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

Title:
  package libsane1 1.0.27-1~experimental2ubuntu2.1 [modified:
  lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules]
  failed to install/upgrade: poging tot overschrijven van gedeelde
  '/lib/udev/hwdb.d/20-sane.hwdb', dat verschilt van andere exemplaren
  van pakket libsane1:i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sane-backends/+bug/1750249/+subscriptions

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

[Bug 1734278] Re: Grub2 cannot boot up when 8254 time function disable

2018-02-18 Thread Bug Watch Updater
** Changed in: grub2 (Debian)
   Status: New => Fix Released

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

Title:
  Grub2 cannot boot up when 8254 time function disable

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1734278/+subscriptions

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

[Bug 1710511] Re: nano crashed with SIGSEGV in get_sysdep_segment_value()

2018-02-18 Thread Benno Schulenberg
The crash was in libc (while looking up the translation of a string),
not in nano itself.  Could it be that you updated libc shortly before
the crash?

As this crash happened in an alpha release, and if you cannot reproduce
it any more in 17.10 proper, I think this bug can be closed.

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

Title:
  nano crashed with SIGSEGV in get_sysdep_segment_value()

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

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

[Bug 1749878] Re: GDM doesn't accept mouse clicks

2018-02-18 Thread Jouni Mettala
But your GDM is still using Wayland, Right?

I had to edit /etc/gdm3/custom.conf and uncomment line:
WaylandEnable=false 

After that mouse worked in GDM greeter too.

I managed to reproduce this on another computer by using bionic-proposed main 
universe repository.
Maybe this is bug in gnome-session or related package.

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

Title:
  GDM doesn't accept mouse clicks

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

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

[Bug 1750249] Re: package libsane1 1.0.27-1~experimental2ubuntu2.1 [modified: lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules] failed to install/upgrade: poging tot overschrijven van g

2018-02-18 Thread dino99
*** This bug is a duplicate of bug 1725928 ***
https://bugs.launchpad.net/bugs/1725928

** This bug has been marked a duplicate of bug 1725928
   package libsane1 1.0.27-1~experimental2ubuntu1: multiarch packages with 
differing files  '/lib/udev/hwdb.d/20-sane.hwdb'

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

Title:
  package libsane1 1.0.27-1~experimental2ubuntu2.1 [modified:
  lib/udev/hwdb.d/20-sane.hwdb lib/udev/rules.d/60-libsane1.rules]
  failed to install/upgrade: poging tot overschrijven van gedeelde
  '/lib/udev/hwdb.d/20-sane.hwdb', dat verschilt van andere exemplaren
  van pakket libsane1:i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sane-backends/+bug/1750249/+subscriptions

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

[Bug 1728451] Re: Google Chrome icons missing

2018-02-18 Thread Roberto Leinardi
*** This bug is a duplicate of bug 1726402 ***
https://bugs.launchpad.net/bugs/1726402

** This bug has been marked a duplicate of bug 1726402
   No Google Chrome icons in top bar

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

Title:
  Google Chrome icons missing

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

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

[Bug 1750155]

2018-02-18 Thread Jeb E.
(In reply to Nikolay Sivov from comment #2)
> This sounds like a duplicate of bug 40613.

I tried the fixes mentioned within and nothing worked.

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

Title:
  App cannot be run "with full administrator rights"

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

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

[Bug 1750155]

2018-02-18 Thread Xerox-xerox2000x
(In reply to jebeld17 from comment #3)
> (In reply to Nikolay Sivov from comment #2)
> > This sounds like a duplicate of bug 40613.
> 
> I tried the fixes mentioned within and nothing worked.

I just tried, downloaded from

https://oneclient.sfx.ms/Win/Prod/17.3.7076.1026/OneDriveSetup.exe

It`s really a duplicate of bug 40613.

>From 
~/.wine/drive_c/users/louis/Local Settings/Application Data/Microsoft/OneDrive$ 

I ran

/opt/wine-staging/bin/wine runas /trustlevel:0x2 OneDrive.exe

and the error is gone.

Jebeld17: Please try the above and provide a downloadlink where you got
your file from. Regards

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

Title:
  App cannot be run "with full administrator rights"

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

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

[Bug 1726402] Re: No Google Chrome icons in top bar

2018-02-18 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  No Google Chrome icons in top bar

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

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

  1   2   3   >