[Bug 1959113] Re: missing built-in disk encryption at install time

2022-03-31 Thread Roy Ash
** Tags added: security

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

Title:
  missing built-in disk encryption at install time

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


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

[Bug 1886653] Re: cups-pki-expired

2022-02-19 Thread Roy Pardee
@sokolov--I also have a Dell printer & I think I have fixed the problem
by adding that AllowExpiredCerts option that @Nyyr mentioned, via the
GUI settings dialog.  As I recall the steps were:

settings -> printers -> Additional Printer settings
right-click on affected printer (for me Dell_Color_MFP_E525w etc.) -> properties
click 'job options' category on left
scroll all the way to the bottom, where it says "To add a new option, enter its 
name in the box below and click to add."  Type `AllowExpiredCerts` (without the 
back-ticks) and click 'Add'
enter the value 'true' for this new option.

After doing that, I could print a test page.

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

Title:
  cups-pki-expired

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


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

[Bug 1959113] Re: missing built-in disk encryption at install time

2022-01-26 Thread Roy Ash
Dear bot, I didn't fill a source package because I don't know what is
the appropriate package (if any) :-)

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

Title:
  missing built-in disk encryption at install time

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


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

[Bug 1959113] [NEW] missing built-in disk encryption at install time

2022-01-26 Thread Roy Ash
Public bug reported:

Is there a simple way to install Ubuntu on SD card for Raspberry Pi4
with full disk encryption?

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

Title:
  missing built-in disk encryption at install time

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


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

[Bug 1953671] Re: 5.15 and 5.16 arm64 kernels fail to boot in VMWare Fusion

2022-01-11 Thread Michael Roy
Hi there, VMware here...
We're able to repro this and have the following temporary workaround while we 
figure out who's code needs adjusting:

We are able to boot by adding:
acpi=force 

to: GRUB_CMDLINE_LINUX_DEFAULT 
in: /etc/default/grub
Such that the full line reads:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"

Remember to also disable Wayland (which is not presently supported in
this Fusion tech preview) in /etc/gdm3/custom.conf by uncommenting
WaylandEnable=false.

When it's in the unresponsive state it still boots so ssh works... you
can check /proc/iomem and it seems like the PCI memory is already
reserved for BOOTFB..

Not working state:
5000-7fff : pcie@0x4000
  7800-7fff : :00:0f.0
7800-782f : BOOTFB

Working state: (i.e. with acpi=force)

5000-7fff : PCI Bus :00
  5000-501f : PCI Bus :20
  5020-503f : PCI Bus :21
  5040-505f : PCI Bus :21
  7800-782f : BOOTFB

We have an internal bug filed so I'll update if we have more we can
share.

Thanks,
-Michael

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

Title:
  5.15 and 5.16 arm64 kernels fail to boot in VMWare Fusion

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


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

[Bug 1953401] [NEW] stable_sort results may be corrupted with some g++ optimization options

2021-12-06 Thread Roy Stogner
Public bug reported:

On an amd64 system running Ubuntu 21.10, using g++ 11.2.0 (Ubuntu
11.2.0-7ubuntu2) to compile and run

```
#include 
#include 
#include 

int main(void)
{
  std::vector,int>> testvec(19, 
{{1,2},12345}); // 18- works
  std::stable_sort(testvec.begin(), testvec.end());
  
  for (auto & p : testvec)
if (p.second != 12345)
  abort();
  
  return 0;
}
```

with `g++ -O2 -funroll-loops -o test.exe test.C && ./test.exe`,

the compilation completes but the executable aborts.  Examining testvec
shows that testvec[0].second == 0.  (In the more complex failures this
was distilled from, the corrupted data may be non-zero, but so far I've
only seen it at index 0.)

If I use 18 or fewer entries in the vector, the test passes.  If I
compile with -O0, -O1, or -O3, or if I omit -funroll-loops, or if I use
g++ 10.3.0-11ubuntu1 (with -std=c++17 specified) it passes.  If I use
pair instead of tuple the test passes, though my original failure case
was with a custom class there.

I haven't yet submitted this to GCC Bugzilla; they say they do not want
"Bugs in releases or snapshots of GCC not issued by the GNU Project.
Report them to whoever provided you with the release." and I'm not sure
if the package I'm using counts as "issued by" them or whether it's been
significantly patched downstream.

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: g++ 4:11.2.0-1ubuntu1
ProcVersionSignature: Ubuntu 5.13.0-22.22-generic 5.13.19
Uname: Linux 5.13.0-22-generic x86_64
ApportVersion: 2.20.11-0ubuntu71
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: XFCE
Date: Mon Dec  6 15:42:56 2021
InstallationDate: Installed on 2021-02-15 (294 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: gcc-defaults
UpgradeStatus: Upgraded to impish on 2021-12-05 (1 days ago)

** Affects: gcc-defaults (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug impish

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

Title:
  stable_sort results may be corrupted with some g++ optimization
  options

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-defaults/+bug/1953401/+subscriptions


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

[Bug 1952536] [NEW] package libvdpau1 (not installed) failed to install/upgrade: trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from other instances of package libvdpau1:amd64

2021-11-27 Thread SOUTI ROY
Public bug reported:

sudo apt-get -f install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  libvdpau1 mesa-vdpau-drivers mesa-vdpau-drivers:i386
The following NEW packages will be installed:
  libvdpau1
The following packages will be upgraded:
  mesa-vdpau-drivers mesa-vdpau-drivers:i386
2 upgraded, 1 newly installed, 0 to remove and 83 not upgraded.
262 not fully installed or removed.
Need to get 6,161 kB of archives.
After this operation, 92.2 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://in.archive.ubuntu.com/ubuntu focal/main amd64 libvdpau1 amd64 
1.3-1ubuntu2 [25.6 kB]
Get:2 http://in.archive.ubuntu.com/ubuntu focal-updates/main amd64 
mesa-vdpau-drivers amd64 21.0.3-0ubuntu0.3~20.04.4 [2,946 kB]
Get:3 http://in.archive.ubuntu.com/ubuntu focal-updates/main i386 
mesa-vdpau-drivers i386 21.0.3-0ubuntu0.3~20.04.4 [3,189 kB]
Fetched 6,161 kB in 17s (354 kB/s) 
(Reading database ... 202522 files and directories currently installed.)
Preparing to unpack .../libvdpau1_1.3-1ubuntu2_amd64.deb ...
Unpacking libvdpau1:amd64 (1.3-1ubuntu2) ...
dpkg: error processing archive 
/var/cache/apt/archives/libvdpau1_1.3-1ubuntu2_amd64.deb (--unpack):
 trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from 
other instances of package libvdpau1:amd64
Preparing to unpack .../mesa-vdpau-drivers_21.0.3-0ubuntu0.3~20.04.4_i386.deb 
...
Unpacking mesa-vdpau-drivers:i386 (21.0.3-0ubuntu0.3~20.04.4) over 
(21.0.3-0ubuntu0.3~20.04.3) ...
Preparing to unpack .../mesa-vdpau-drivers_21.0.3-0ubuntu0.3~20.04.4_amd64.deb 
...
Unpacking mesa-vdpau-drivers:amd64 (21.0.3-0ubuntu0.3~20.04.4) over 
(21.0.3-0ubuntu0.3~20.04.3) ...
Errors were encountered while processing:
 /var/cache/apt/archives/libvdpau1_1.3-1ubuntu2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
souti@souti-roy:~$ 


this is what I am geting

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: libvdpau1 (not installed)
ProcVersionSignature: Ubuntu 5.11.0-40.44~20.04.2-generic 5.11.22
Uname: Linux 5.11.0-40-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.21
AptOrdering:
 libvdpau1:amd64: Install
 mesa-vdpau-drivers:i386: Install
 mesa-vdpau-drivers:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
CompositorRunning: None
Date: Sun Nov 28 03:40:39 2021
DistUpgraded: Fresh install
DistroCodename: focal
DistroVariant: ubuntu
DpkgTerminalLog:
 Preparing to unpack .../libvdpau1_1.3-1ubuntu2_amd64.deb ...
 Unpacking libvdpau1:amd64 (1.3-1ubuntu2) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libvdpau1_1.3-1ubuntu2_amd64.deb (--unpack):
  trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from 
other instances of package libvdpau1:amd64
DuplicateSignature:
 package:libvdpau1:(not installed)
 Unpacking libvdpau1:amd64 (1.3-1ubuntu2) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libvdpau1_1.3-1ubuntu2_amd64.deb (--unpack):
  trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from 
other instances of package libvdpau1:amd64
ErrorMessage: trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is 
different from other instances of package libvdpau1:amd64
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0116] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company 2nd Generation Core Processor Family 
Integrated Graphics Controller [103c:1840]
 Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7500M/7600M Series] 
[1002:6840] (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Radeon HD 7670M [103c:1840]
InstallationDate: Installed on 2021-11-10 (17 days ago)
InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819)
MachineType: Hewlett-Packard HP Pavilion g6 Notebook PC
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-40-generic 
root=UUID=751fb0a9-8974-4aa0-9790-7c9ccb9e30a5 ro quiet splash vt.handoff=7
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: libvdpau
Title: package libvdpau1 (not installed) failed to install/upgrade: trying to 
overwrite shared '/etc/vdpau_wrapper.cfg', which is different from other 
instances of package libvdpau1:amd64
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/09/2012
dmi.bios.release: 15.22
dmi.bios.vendor: Insyde
dmi.bios.version: F.16
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 1840
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 56.2D
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.ec.firmware.release: 56.45
dm

[Bug 1892242] Re: Curtin doesn't handle type:mount entries without 'path' element

2021-08-25 Thread Roy Zuo
Another of our customers hit this bug again on bionic when their cloud
was redeployed. I understand it will be curtin snap going forward, but
why can't we have at least have a working version in deb repo so that
whoever is still using this will have a better experience?

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

Title:
  Curtin doesn't handle type:mount entries without 'path' element

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


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

[Bug 1937910] [NEW] package phpmyadmin 4:4.9.5+dfsg1-2 failed to install/upgrade: installed phpmyadmin package post-installation script subprocess returned error exit status 1

2021-07-24 Thread Abhisek Roy
Public bug reported:

 ERROR 2002 (HY000): Can't connect to local MySQL server through socket
'/var/run/mysqld/mysqld.sock' (2)

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: phpmyadmin 4:4.9.5+dfsg1-2
ProcVersionSignature: Ubuntu 5.8.0-63.71~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-63-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Jul 24 23:15:26 2021
ErrorMessage: installed phpmyadmin package post-installation script subprocess 
returned error exit status 1
InstallationDate: Installed on 2021-07-24 (0 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
PackageArchitecture: all
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: phpmyadmin
Title: package phpmyadmin 4:4.9.5+dfsg1-2 failed to install/upgrade: installed 
phpmyadmin package post-installation script subprocess returned error exit 
status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  package phpmyadmin 4:4.9.5+dfsg1-2 failed to install/upgrade:
  installed phpmyadmin package post-installation script subprocess
  returned error exit status 1

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


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

[Bug 1799550] Re: No way to encrypt at partition level (dual boot)

2021-07-14 Thread Roy Laurie
This is a blocker for me.

I understand, given physical access, how this doesn't fix significant
security problems. Regardless, gov is gov, and I want to move forward
with Ubuntu Server as a platform.

Can we push this up the queue?

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

Title:
  No way to encrypt at partition level (dual boot)

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


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

[Bug 1930324] [NEW] package grub-efi-amd64-signed 1.167~16.04.2+2.04-1ubuntu44 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2021-05-31 Thread Arnab Roy
Public bug reported:

While software update, it fails and asks to report this problem.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: grub-efi-amd64-signed 1.167~16.04.2+2.04-1ubuntu44
ProcVersionSignature: Ubuntu 4.4.0-210.242-generic 4.4.262
Uname: Linux 4.4.0-210-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.30
Architecture: amd64
Date: Tue Jun  1 06:49:51 2021
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-12-31 (1612 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.7
 apt  1.2.35
SourcePackage: grub2-signed
Title: package grub-efi-amd64-signed 1.167~16.04.2+2.04-1ubuntu44 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub2-signed (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/1930324

Title:
  package grub-efi-amd64-signed 1.167~16.04.2+2.04-1ubuntu44 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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

[Bug 1929559] [NEW] Crash during install process of Ubuntu 20.04 from USB install

2021-05-25 Thread Roy Ronalds
Public bug reported:

The installer crashed and exited out with a message as I was trying to
install with partitions on the drive.  Attached is the automatic
information reporting from the system.

1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> 
About Ubuntu
I have Ubuntu 20.04 installed on a usb drive, and am working on installing to a 
harddrive, both will be Ubuntu 20.04
2) The version of the package you are using, via 'apt-cache policy pkgname' or 
by checking in Software Center
I am using the installer for 20.04
3) What you expected to happen
I wanted the install and partitioning to proceed through to a complete OS 
install on the drives I am partitioning.
4) What happened instead
The install application crashed after the partitioning step was submitted, 
giving a message, and then existing out (sending automated bug reporting with 
me here).

I don't need a resolution per se, I am just going to try the install
again, but I thought I would continue to send along the crash report.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.10
ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.445.1
Date: Tue May 25 09:28:30 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity nomodeset ---
LiveMediaBuild: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 (20210209.1)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15.10 ubuntu

** Description changed:

  The installer crashed and exited out with a message as I was trying to
- install with partitions on the drive.
+ install with partitions on the drive.  Attached is the automatic
+ information reporting from the system.
+ 
+ 1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> 
About Ubuntu
+ I have Ubuntu 20.04 installed on a usb drive, and am working on installing to 
a harddrive, both will be Ubuntu 20.04
+ 2) The version of the package you are using, via 'apt-cache policy pkgname' 
or by checking in Software Center
+ I am using the installer for 20.04
+ 3) What you expected to happen
+ I wanted the install and partitioning to proceed through to a complete OS 
install on the drives I am partitioning.
+ 4) What happened instead
+ The install application crashed after the partitioning step was submitted, 
giving a message, and then existing out (sending automated bug reporting with 
me here).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubiquity 20.04.15.10
  ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: pass
  CasperVersion: 1.445.1
  Date: Tue May 25 09:28:30 2021
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity nomodeset ---
  LiveMediaBuild: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  The installer crashed and exited out with a message as I was trying to
  install with partitions on the drive.  Attached is the automatic
  information reporting from the system.
  
  1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> 
About Ubuntu
  I have Ubuntu 20.04 installed on a usb drive, and am working on installing to 
a harddrive, both will be Ubuntu 20.04
  2) The version of the package you are using, via 'apt-cache policy pkgname' 
or by checking in Software Center
  I am using the installer for 20.04
  3) What you expected to happen
  I wanted the install and partitioning to proceed through to a complete OS 
install on the drives I am partitioning.
  4) What happened instead
  The install application crashed after the partitioning step was submitted, 
giving a message, and then existing out (sending automated bug reporting with 
me here).
+ 
+ I don't need a resolution per se, I am just going to try the install
+ again, but I thought I would continue to send along the crash report.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubiquity 20.04.15.10
  ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: pass
  CasperVersion: 1.445.1
  Date: Tue May 25 09:28:30 2021
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 

[Bug 1929346] [NEW] Bug in the Calamares installer resulting in no installation of the boot loader in the BIOS mode

2021-05-23 Thread Saptarshi Roy
Public bug reported:

Dear Lubuntu Team

I’m writing to let you know that there is a serious bug in the Calamares
installer with the potential to brick computers due to installations
without a boot loader in BIOS+MBR mode.

I thought I’ll update another thread with the same issue 1, however,
considering that thread is locked, I’m creating this one with the
resolution.

When we try to install Lubuntu 20.04 LTS using the Calamares installer
in the BIOS mode, the installer should by default install the boot
loader in a 538MB fat32 partition with the boot flag, however, Calamares
doesn’t do that at all.

This results in a bricked device.

Anyone who wants to install Lubuntu 20.04 LTS in the BIOS mode with MBR,
needs to go for a manual partitioning, and then creating a MBR
partitioning table.

This bug is not present in the Ubiquity or the Kubuntu installer,
because I have installed all the Ubuntu 20.04 LTS flavours except
Lubuntu without any issues in the same system applying the same method -
automatically partitioning the entire disk in the BIOS+MBR mode.

I also encountered this bug while installing the most recent version of
Q4OS.

The Lubuntu team should either use the Ubiquity installer or fix this.

Thank you.

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


** Tags: bios focal lubuntu

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

Title:
  Bug in the Calamares installer resulting in no installation of the
  boot loader in the BIOS mode

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

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

[Bug 1925010] Re: shim-signed 15.4 does not boot on EFI 1.10 systems

2021-05-13 Thread Saptarshi Roy
Thank you!

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

Title:
  shim-signed 15.4 does not boot on EFI 1.10 systems

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

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

[Bug 1876999] Re: No system-config-samba package in 20.04 ?

2021-05-09 Thread Le Roy
It is absolutely regrettable to have eliminated System-config-samba for
focal Fossa. We are working on PC for more than thirty years, running on
Linux and Mac for twelve years and System-config-samba was very easy to
configure our private network at office and home; it was safe and worked
very well with a lot of different machines and OS. Now, some machines
can't get in the Intranet because there old OS are not compatible with
NFS or SSH.I hope that developers will get a solution

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

Title:
  No system-config-samba package in 20.04 ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/system-config-samba/+bug/1876999/+subscriptions

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

[Bug 1925815] [NEW] package gconf2 3.2.6-3ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2021-04-23 Thread Tapan Roy
Public bug reported:

Whenever I run apt-get install (for any binary) in command line prompt,
- I get the follwing error, please help me - what is the fix?

update-gconf-defaults: error: Destination directory does not exist.
dpkg: error processing package gconf2 (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 gconf2
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@LP-5CD9156H04:/home/tapan#

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: gconf2 3.2.6-3ubuntu6
ProcVersionSignature: Ubuntu 4.4.0-193.224-generic 4.4.236
Uname: Linux 4.4.0-193-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.26
AptOrdering:
 gconf2: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Fri Apr 23 19:49:20 2021
DpkgHistoryLog:
 Start-Date: 2021-04-23  19:49:19
 Commandline: apt-get install build-essential libgl1-mesa-dev
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2019-05-09 (715 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.6
 apt  1.2.32ubuntu0.1
SourcePackage: gconf
Title: package gconf2 3.2.6-3ubuntu6 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gconf (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/1925815

Title:
  package gconf2 3.2.6-3ubuntu6 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

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

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

[Bug 1918002] Re: [SRU] xfce4-weather-plugin 0.10.2

2021-03-21 Thread Saptarshi Roy
Thank you amazing team!

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

Title:
  [SRU] xfce4-weather-plugin 0.10.2

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

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

[Bug 1895246] Re: Plugin calls the incorrect API

2021-03-07 Thread Saptarshi Roy
+1

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

Title:
  Plugin calls the incorrect API

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

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

[Bug 1918002] Re: [SRU] xfce4-weather-plugin 0.10.2

2021-03-07 Thread Saptarshi Roy
+1

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

Title:
  [SRU] xfce4-weather-plugin 0.10.2

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

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

[Bug 1916483] [NEW] Kubuntu Desktop does not start up

2021-02-22 Thread Roy
Public bug reported:

Running plasmashell gives:

plasmashell: relocation error: plasmashell: symbol
_ZN20QOpenGLShaderProgram23hasOpenGLShaderProgramsEP14QOpenGLContext
version Qt_5 not defined in file libQt5Gui.so.5 with link time reference

uname -a:

Linux roy-ThinkPad-X1-Carbon-7th 5.4.0-65-generic #73~18.04.1-Ubuntu SMP
Tue Jan 19 09:02:24 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

lsb-release:

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.5 LTS"

---

I tried all possible updates and the problem persists.

** Affects: kubuntu-meta (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/1916483

Title:
  Kubuntu Desktop does not start up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1916483/+subscriptions

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

[Bug 1913868] [NEW] Green Line Out Rear displaced by Digital Output S/PDIF

2021-01-30 Thread Roy Leith
Public bug reported:

At boot, the Line Out Green Rear is replaced by Digital Output (SP/DIF)

Issuing the command,

systemctl --user restart pulseaudio

restores Line Out, which then works correctly.

There have been some instances when the issue returns after running an
audio program such as Reaper (DAW) or Audacity.

I obtained the work-around from Kubuntu Forums where there are several
similar reports from users of Kubuntu 20.10..

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 5.8.0-41.46-lowlatency 5.8.18
Uname: Linux 5.8.0-41-lowlatency x86_64
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Sat Jan 30 09:57:09 2021
InstallationDate: Installed on 2020-06-13 (230 days ago)
InstallationMedia: Kubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaRecordingTest: ALSA recording test through plughw:Generic_1 failed
Symptom_Card: Family 17h (Models 10h-1fh) HD Audio Controller - HD-Audio Generic
Symptom_Jack: Blue Line In, Rear
Symptom_Type: No sound at all
Title: [To Be Filled By O.E.M., Realtek ALC1220, Blue Line In, Rear] No sound 
at all
UpgradeStatus: Upgraded to groovy on 2021-01-26 (3 days ago)
dmi.bios.date: 11/18/2019
dmi.bios.release: 5.14
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P3.70
dmi.board.name: B450 Gaming-ITX/ac
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP3.70:bd11/18/2019:br5.14:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnB450Gaming-ITX/ac:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To Be Filled By O.E.M.
dmi.product.name: To Be Filled By O.E.M.
dmi.product.sku: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

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


** Tags: amd64 apport-bug groovy

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

Title:
  Green Line Out Rear displaced by Digital Output S/PDIF

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

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

[Bug 1902992] Re: upgrade from 18.04 to 20.04 stops midway"An unresolvable problem occurred while calculating the upgrade. This was likely caused by: * Unofficial software packages not provided by Ubu

2020-11-04 Thread Abhishek Ghosh Roy
Could not calculate the upgrade

An unresolvable problem occurred while calculating the upgrade.

 This was likely caused by:
 * Unofficial software packages not provided by Ubuntu
Please use the tool 'ppa-purge' from the ppa-purge 
package to remove software from a Launchpad PPA and 
try the upgrade again.

If none of this applies, then please report this bug using the command
'ubuntu-bug ubuntu-release-upgrader-core' in a terminal. If you want to
investigate this yourself the log files in '/var/log/dist-upgrade' will
contain details about the upgrade. Specifically, look at 'main.log' and
'apt.log'.

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

Title:
  upgrade from 18.04 to 20.04 stops midway"An unresolvable problem
  occurred while calculating the upgrade.   This was likely caused by:
  * Unofficial software packages not provided by Ubuntu Please use the
  tool 'ppa-purge' from the ppa-purge  package to remove software from a
  Launchpad PPA and  try the upgrade again."

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

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

[Bug 1902992] [NEW] upgrade from 18.04 to 20.04 stops midway"An unresolvable problem occurred while calculating the upgrade. This was likely caused by: * Unofficial software packages not provided by U

2020-11-04 Thread Abhishek Ghosh Roy
Public bug reported:

An unresolvable problem occurred while calculating the upgrade.

 This was likely caused by:
 * Unofficial software packages not provided by Ubuntu
Please use the tool 'ppa-purge' from the ppa-purge 
package to remove software from a Launchpad PPA and 
try the upgrade again.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.40
ProcVersionSignature: Ubuntu 5.4.0-52.57~18.04.1-generic 5.4.65
Uname: Linux 5.4.0-52-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.17
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov  5 11:10:00 2020
InstallationDate: Installed on 2020-09-01 (64 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-11-05 (0 days ago)
VarLogDistupgradeTermlog:

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


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

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

Title:
  upgrade from 18.04 to 20.04 stops midway"An unresolvable problem
  occurred while calculating the upgrade.   This was likely caused by:
  * Unofficial software packages not provided by Ubuntu Please use the
  tool 'ppa-purge' from the ppa-purge  package to remove software from a
  Launchpad PPA and  try the upgrade again."

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

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

[Bug 1900950] [NEW] on trying to upgrade to latest release, screen shows the following ; Checking for a new Ubuntu release Get:1 Upgrade tool signature [1, 554 B] Get:2 Upgrade tool [1,336 kB] Fetched

2020-10-22 Thread Roy Cohen
Public bug reported:

Checking for a new Ubuntu release
Get:1 Upgrade tool signature [1,554 B]  

  
Get:2 Upgrade tool [1,336 kB]   

  
Fetched 1,338 kB in 0s (0 B/s)  

  
authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg' 
extracting 'focal.tar.gz'
[screen is terminating]

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.40
Uname: Linux 5.7.1-050701-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.18
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: X-Cinnamon
Date: Thu Oct 22 16:45:05 2020
InstallationDate: Installed on 2019-01-07 (654 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-10-22 (0 days ago)
mtime.conffile..etc.update-manager.release-upgrades: 2020-10-17T10:26:37.353982

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


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

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

Title:
  on trying to upgrade to latest release, screen shows the following ;
  Checking for a new Ubuntu release Get:1 Upgrade tool signature [1,554
  B]
  Get:2 Upgrade tool [1,336 kB]
  Fetched 1,338 kB in 0s (0 B/s)
  authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg'  extracting
  'focal.tar.gz' [screen is terminating]

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

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

[Bug 684982]

2020-09-29 Thread Roy-orbison-g
@ericrboidi Bug 890125 is specific to MS Windows, vote for that.

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

Title:
  Firefox windows don't restore on correct workspaces

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

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

[Bug 1857943] Re: ua command does not exist, can't enable or install from esm

2020-09-19 Thread Saptarshi Roy
This also goes for Ubuntu 16.04 LTS.

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

Title:
  ua command does not exist, can't enable or install from esm

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

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

[Bug 1869507] Re: Keyboard Audio Feedback - Beep when a toggle key is pressed is disabled after every restart

2020-09-13 Thread Saptarshi Roy
This feature could also be toggled with dconf Editor (under "org.mate
.accessibility-keyboard"), and even if the Custom value is set to True,
still it reverts to False after a reboot.

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

Title:
  Keyboard Audio Feedback - Beep when a toggle key is pressed is
  disabled after every restart

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

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

[Bug 388168] Re: Evolution doesn't open

2020-09-03 Thread Saptarshi Roy
This issue still keeps on popping up from time to time albeit rarely.

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

Title:
  Evolution doesn't open

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

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

[Bug 1793465] Re: Mate Panel consumes huge amount of memory even when idling

2020-08-31 Thread Saptarshi Roy
I can also confirm that on my Ubuntu MATE 20.04, if the system is not
rebooted for days then there is an astronomical amount of usage of the
CPU, RAM as well as the SWAP memory.

'Top' and 'System Monitor' show the culprits to be Evolution (Calendar
?) and Indicator Date Time Service.

I use Evolution and have also configured the time to show the seconds,
but I'm not aware as to what is leading to all this.

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

Title:
  Mate Panel consumes huge amount of memory even when idling

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

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

[Bug 1793465] Re: Mate Panel consumes huge amount of memory even when idling

2020-08-28 Thread Saptarshi Roy
This is appreciated, Martin.

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

Title:
  Mate Panel consumes huge amount of memory even when idling

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

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

[Bug 1888304] [NEW] Whenever I tried to upgrade using "sudo apt upgrade" its throwing me the error "mongodb-org : Depends: mongodb-org-server but it is not installed Depends: mongodb-org-mongos but it

2020-07-20 Thread Sanjib Roy
Public bug reported:

Whenever I tried to upgrade using "sudo apt upgrade" its throwing me the error 
"mongodb-org : Depends: mongodb-org-server but it is not installed
 Depends: mongodb-org-mongos but it is not installed
 Depends: mongodb-org-tools but it is not installed"

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.37
ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
Uname: Linux 5.3.0-46-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.15
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Tue Jul 21 00:52:09 2020
InstallationDate: Installed on 2019-12-27 (206 days ago)
InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 (20190805)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: ubuntu-release-upgrader
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


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

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

Title:
  Whenever I tried to upgrade using "sudo apt upgrade" its throwing me
  the error "mongodb-org : Depends: mongodb-org-server but it is not
  installedDepends: mongodb-org-mongos but it is not
  installedDepends: mongodb-org-tools but it is not
  installed"

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

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

[Bug 1807056] Re: Occasional Keyboard freeze

2020-07-18 Thread Abhishek Roy
I am facing same problem as the problem mentioned. My keyboard is
getting freeze for few minutes after which it is again working fine. I
have checked in linux mint too, I am facing same problem. Any help in
this regard will be highly helpful in this regard.

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

Title:
  Occasional Keyboard freeze

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

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

[Bug 1825636] Re: Battery drain during sleep. System suspended before kernel suspends all tasks

2020-07-17 Thread Roy Sanderson
Can confirm that this bug is also affecting Dell Latitude 7490 with
Ubuntu 18.04 LTS

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

Title:
  Battery drain during sleep. System suspended before kernel suspends
  all tasks

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

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

[Bug 1887543] [NEW] Issuse with keyboard in asus vivobook s14

2020-07-14 Thread Abhishek Roy
Public bug reported:

My keyboard keys especially "5","R","E" and "F" stops working but after
restart it works fine. But it is very difficult to restart laptop while
in middle of the work. I have checked in answers relating to my problem
in ubuntu forums.

One of the solution which i have got was installing xserver-xorg-input .
I did so by sudo apt-get install xserver-xorg-input-all. But still I am
facing the problem.

I also want to add that the keys which I have mentioned above is working
in grub menu and while log in the computer.

I'll be very grateful if you can help me in this regard.

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

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

Title:
  Issuse with keyboard in asus vivobook s14

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

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

[Bug 1058515] Re: inheriting environmental variables when creating new terminal window or tab

2020-06-22 Thread Roy Stogner
I just tried switching from xfce4-terminal to gnome-terminal, only to
discover that new tabs spawned via Ctrl+Shift+T (or File->New Tab) in
the latter fail to inherit my session's $SSH_AUTH_SOCK or
$SSH_AGENT_PID.

The second-best workaround is indeed to only spawn new tabs via "gnome-
terminal --tab", but that's a bit unwieldy and it's not quite the same
(the new tab inherits the environment of the shell running that command,
which may have changed from the session environment), so I'm afraid the
best workaround was to switch back to xfce4-terminal...

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

Title:
  inheriting environmental variables when creating new terminal window
  or tab

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

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

[Bug 1877830] [NEW] package flashplugin-installer 32.0.0.363ubuntu0.16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2020-05-10 Thread Puspak Singha Roy
Public bug reported:

my update suddenly got stopped and showing error

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: flashplugin-installer 32.0.0.363ubuntu0.16.04.1
ProcVersionSignature: Ubuntu 4.15.0-91.92~16.04.1-generic 4.15.18
Uname: Linux 4.15.0-91-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.23
Architecture: amd64
Date: Sun May 10 12:24:13 2020
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2020-03-12 (58 days ago)
InstallationMedia: Ubuntu 16.04.6 LTS "Xenial Xerus" - Release amd64 (20190227)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.6
 apt  1.2.32
SourcePackage: flashplugin-nonfree
Title: package flashplugin-installer 32.0.0.363ubuntu0.16.04.1 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
UpgradeStatus: Upgraded to xenial on 2020-05-01 (8 days ago)

** Affects: flashplugin-nonfree (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package third-party-packages xenial

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

Title:
  package flashplugin-installer 32.0.0.363ubuntu0.16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flashplugin-nonfree/+bug/1877830/+subscriptions

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

[Bug 1856621] [NEW] chromium discatches mouse when left click

2019-12-16 Thread Roy Servais
Public bug reported:

Chromium works perfect till i click to fire my guns,
i cant move the ship and see the mouse pointer of ubuntu.
if ik click outside of chromium windows and move mouse back on chromium this 
error repeats.
i then can move ship till ik click. i can fire though but cant move.
i have ubuntu 19.10 with alternate desktop. i think gnome 3.0 classic or 
something.

** Affects: chromium-bsu (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/1856621

Title:
  chromium discatches mouse when left click

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

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

[Bug 525033] Re: During installation "Error informing the kernel about modifications to partition /dev/XXX -- Device or resource busy"

2019-11-21 Thread Thomas Roy
Hey i finally got the solution.
The thing is that before installing linux you must change the boot type from 
"UEFI" to "LEGACY" and then boot the usb/cd of linux or ubuntu.
Have a good day

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

Title:
  During installation "Error informing the kernel about modifications to
  partition /dev/XXX -- Device or resource busy"

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

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

[Bug 1849982] [NEW] package zfs-dkms 0.8.1-1ubuntu14 failed to install/upgrade: installed zfs-dkms package post-installation script subprocess returned error exit status 10

2019-10-26 Thread Roy
Public bug reported:

Package is really zfs-dkms but bug tool no have

upgrading 19.04 - 19.10 mac Mini

   Processing triggers for initramfs-tools (0.133ubuntu10) ...
   This system doesn't support Secure Boot
   Secure Boot not enabled on this system.
   Errors were encountered while processing:
zfs-dkms

ProblemType: Package
DistroRelease: Ubuntu 19.10
Package: zfs-dkms 0.8.1-1ubuntu14
ProcVersionSignature: Ubuntu 5.0.0-29.31-generic 5.0.21
Uname: Linux 5.0.0-29-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zlua zcommon znvpair
ApportVersion: 2.20.11-0ubuntu8
Architecture: amd64
Date: Sat Oct 26 12:22:09 2019
ErrorMessage: installed zfs-dkms package post-installation script subprocess 
returned error exit status 10
InstallationDate: Installed on 2019-06-20 (128 days ago)
InstallationMedia: Ubuntu-Server 19.04 "Disco Dingo" - Release amd64 
(20190416.1)
PackageArchitecture: all
Python3Details: /usr/bin/python3.7, Python 3.7.5rc1, python3-minimal, 3.7.5-1
PythonDetails: /usr/bin/python2.7, Python 2.7.17rc1, python-minimal, 2.7.17-1
RelatedPackageVersions:
 dpkg 1.19.7ubuntu2
 apt  1.9.4
SourcePackage: zfs-linux
Title: package zfs-dkms 0.8.1-1ubuntu14 failed to install/upgrade: installed 
zfs-dkms package post-installation script subprocess returned error exit status 
10
UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)

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


** Tags: amd64 apport-package eoan

** Description changed:

+ Package is really zfs-dkms but bug tool no have
+ 
  upgrading 19.04 - 19.10 mac Mini
  
-Processing triggers for initramfs-tools (0.133ubuntu10) ...
-This system doesn't support Secure Boot
-Secure Boot not enabled on this system.
-Errors were encountered while processing:
- zfs-dkms
+    Processing triggers for initramfs-tools (0.133ubuntu10) ...
+    This system doesn't support Secure Boot
+    Secure Boot not enabled on this system.
+    Errors were encountered while processing:
+ zfs-dkms
  
  ProblemType: Package
  DistroRelease: Ubuntu 19.10
  Package: zfs-dkms 0.8.1-1ubuntu14
  ProcVersionSignature: Ubuntu 5.0.0-29.31-generic 5.0.21
  Uname: Linux 5.0.0-29-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zlua zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  Date: Sat Oct 26 12:22:09 2019
  ErrorMessage: installed zfs-dkms package post-installation script subprocess 
returned error exit status 10
  InstallationDate: Installed on 2019-06-20 (128 days ago)
  InstallationMedia: Ubuntu-Server 19.04 "Disco Dingo" - Release amd64 
(20190416.1)
  PackageArchitecture: all
  Python3Details: /usr/bin/python3.7, Python 3.7.5rc1, python3-minimal, 3.7.5-1
  PythonDetails: /usr/bin/python2.7, Python 2.7.17rc1, python-minimal, 2.7.17-1
  RelatedPackageVersions:
-  dpkg 1.19.7ubuntu2
-  apt  1.9.4
+  dpkg 1.19.7ubuntu2
+  apt  1.9.4
  SourcePackage: zfs-linux
  Title: package zfs-dkms 0.8.1-1ubuntu14 failed to install/upgrade: installed 
zfs-dkms package post-installation script subprocess returned error exit status 
10
  UpgradeStatus: Upgraded to eoan on 2019-10-26 (0 days ago)

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

Title:
  package zfs-dkms 0.8.1-1ubuntu14 failed to install/upgrade: installed
  zfs-dkms package post-installation script subprocess returned error
  exit status 10

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

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

[Bug 684982]

2019-09-02 Thread Roy-orbison-g
I'm on 69.0b12 on M$ Windows, and all windows are still restored to a
single virtual desktop.

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

Title:
  Firefox windows don't restore on correct workspaces

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

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

[Bug 1840832] Re: Update to netplan.io 0.98 release

2019-08-25 Thread Roy Belio
This version is very crucial and important to out latest product which relies 
on the use-domains configuration option.
Since this fix is already released can you give a schedule as to when it will 
be available in Bionic updates?

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

Title:
  Update to netplan.io 0.98 release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1840832/+subscriptions

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

[Bug 1813160] [NEW] display problem

2019-01-24 Thread sharmistha roy
Public bug reported:

display is going black for fraction of second.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-127.153-generic 4.4.128
Uname: Linux 4.4.0-127-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.18
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Thu Jan 24 18:47:01 2019
DistUpgraded: Fresh install
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-xenial-amd64-20160624-2
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 oem-audio-hda-daily, 0.201710250904~ubuntu16.04.1, 4.4.0-127-generic, x86_64: 
installed
 oem-audio-hda-daily, 0.201710250904~ubuntu16.04.1, 4.4.0-94-generic, x86_64: 
installed
 oem-wifi-intel-iwlwifi-lp1757035-4.4-dkms, 1.2, 4.4.0-127-generic, x86_64: 
installed
 oem-wifi-intel-iwlwifi-lp1757035-4.4-dkms, 1.2, 4.4.0-94-generic, x86_64: 
installed
GraphicsCard:
 Intel Corporation Device [8086:5917] (rev 07) (prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:0841]
InstallationDate: Installed on 2018-08-26 (151 days ago)
InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
MachineType: Dell Inc. Vostro 3478
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-127-generic.efi.signed 
root=UUID=a241a9ad-c097-481d-b704-f28b73bb8feb ro acpi_rev_override quiet 
splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/22/2018
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.4.1
dmi.board.name: 08R7RH
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.4.1:bd05/22/2018:svnDellInc.:pnVostro3478:pvr:rvnDellInc.:rn08R7RH:rvrA00:cvnDellInc.:ct10:cvr:
dmi.product.name: Vostro 3478
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12.2+16.04.20160415-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.1.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Thu Jan 24 16:25:51 2019
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id1805 
 vendor BOE
xserver.version: 2:1.18.4-0ubuntu0.7

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


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

Title:
  display problem

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

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

[Bug 1810491] [NEW] package nginx-core 1.14.0-0ubuntu1.2 failed to install/upgrade: installed nginx-core package post-installation script subprocess returned error exit status 1

2019-01-04 Thread Shoumi Roy
Public bug reported:

 Errors were encountered while processing:
 nginx-core
 nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: nginx-core 1.14.0-0ubuntu1.2
ProcVersionSignature: Ubuntu 4.15.0-43.46-generic 4.15.18
Uname: Linux 4.15.0-43-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.5
AptOrdering: NULL: ConfigurePending
Architecture: amd64
Date: Fri Jan  4 13:26:04 2019
ErrorMessage: installed nginx-core package post-installation script subprocess 
returned error exit status 1
InstallationDate: Installed on 2018-07-01 (186 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
Python3Details: /usr/local/bin/python3.7, Python 3.7.0, unpackaged
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2.1
 apt  1.6.6
SourcePackage: nginx
Title: package nginx-core 1.14.0-0ubuntu1.2 failed to install/upgrade: 
installed nginx-core package post-installation script subprocess returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package bionic

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

Title:
  package nginx-core 1.14.0-0ubuntu1.2 failed to install/upgrade:
  installed nginx-core package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1809073] [NEW] package xbrlapi 5.5-4ubuntu2.0.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2018-12-18 Thread Vikramjit Roy
Public bug reported:

I am not able to back up

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: xbrlapi 5.5-4ubuntu2.0.1
ProcVersionSignature: Ubuntu 4.15.0-39.42-generic 4.15.18
Uname: Linux 4.15.0-39-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
Date: Wed Dec 19 11:16:56 2018
DuplicateSignature:
 package:xbrlapi:5.5-4ubuntu2.0.1
 Unpacking python-gi (3.26.1-2) ...
 dpkg: error processing package xbrlapi (--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
InstallationDate: Installed on 2018-11-16 (32 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2.1
 apt  1.6.6
SourcePackage: brltty
Title: package xbrlapi 5.5-4ubuntu2.0.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)

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


** Tags: amd64 apport-package bionic 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/1809073

Title:
  package xbrlapi 5.5-4ubuntu2.0.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/brltty/+bug/1809073/+subscriptions

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

Re: [Bug 1781571] Re: package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed to install/upgrade: Le paquet est dans un état incohérent; vous devriez le réinstaller avant d'essayer de le suppr

2018-11-10 Thread Christopher ROY
Good evening,

I solved my problem by un installing Thunderbird and erasing all Kind of
trace of the software and its installation package.


I did throw Thunderbird away as an unstable and too complex to upgrade soft.

Regards


I do not expect any answer, so do reply to this mail.

Christophe ROY


Le sam. 10 nov. 2018 à 12:11, Paul White <1781...@bugs.launchpad.net> a
écrit :

> Christopher,
>
> We are sorry that we do not always have the capacity to review all
> reported bugs in a timely manner. You reported this bug some time ago
> and there have been several updates to Thunderbird since that time.
> Thunderbird 60.2.1 is the currently supported release in Ubuntu.
>
> Do you still see a problem related to the one that you reported?
>
> Please let us know if you do otherwise this bug report will expire in
> approximately 60 days time.
>
> Thank you for helping make Ubuntu better.
>
> Paul White
> [Ubuntu Bug Squad]
>
> ** Changed in: thunderbird (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1781571
>
> Title:
>   package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed to
>   install/upgrade: Le paquet est dans un état incohérent; vous devriez
>   le réinstaller avant d'essayer de le supprimer.
>
> Status in thunderbird package in Ubuntu:
>   Incomplete
>
> Bug description:
>   Impossible to uninstall or update Thunderbird nor any other
>   application
>
>   ProblemType: Package
>   DistroRelease: Ubuntu 17.10
>   Package: thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1
>   ProcVersionSignature: Ubuntu 4.13.0-38.43-generic 4.13.16
>   Uname: Linux 4.13.0-38-generic x86_64
>   AddonCompatCheckDisabled: False
>   AlsaVersion: Advanced Linux Sound Architecture Driver Version
> k4.13.0-38-generic.
>   ApportVersion: 2.20.7-0ubuntu3.7
>   AptOrdering:
>thunderbird-dbg:amd64: Remove
>NULL: ConfigurePending
>   Architecture: amd64
>   ArecordDevices:
> List of CAPTURE Hardware Devices 
>card 0: PCH [HDA Intel PCH], device 0: ALC236 Analog [ALC236 Analog]
>  Subdevices: 1/1
>  Subdevice #0: subdevice #0
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC0:  christophe   1448 F pulseaudio
>   BuildID: 20180124151331
>   Card0.Amixer.info:
>Card hw:0 'PCH'/'HDA Intel PCH at 0x9081 irq 258'
>  Mixer name : 'Realtek ALC236'
>  Components : 'HDA:10ec0236,17aa3800,0011
> HDA:80862882,80860101,0010'
>  Controls  : 26
>  Simple ctrls  : 10
>   Channel: Unavailable
>   Date: Fri Jul 13 12:03:19 2018
>   DpkgHistoryLog:
>Start-Date: 2018-07-13  12:03:19
>Commandline: /usr/sbin/synaptic
>Requested-By: christophe (1000)
>Remove: thunderbird-dbg:amd64 (1:52.6.0+build1-0ubuntu0.17.10.1)
>   DpkgTerminalLog:
>dpkg: erreur de traitement du paquet thunderbird-dbg (--remove) :
> Le paquet est dans un état incohérent; vous devriez
> le réinstaller avant d'essayer de le supprimer.
>   ErrorMessage: Le paquet est dans un état incohérent; vous devriez  le
> réinstaller avant d'essayer de le supprimer.
>   ForcedLayersAccel: False
>   IfupdownConfig:
># interfaces(5) file used by ifup(8) and ifdown(8)
>auto lo
>iface lo inet loopback
>   InstallationDate: Installed on 2017-11-27 (227 days ago)
>   InstallationMedia: Lubuntu 17.10 "Artful Aardvark" - Release amd64
> (20171017.1)
>   IpRoute:
>default via 192.168.1.1 dev enp1s0 proto static metric 100
>192.168.1.0/24 dev enp1s0 proto kernel scope link src 192.168.1.96
> metric 100
>   NoProfiles: True
>   PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No
> PulseAudio daemon running, or not running as session daemon.
>   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
>   RunningIncompatibleAddons: False
>   SourcePackage: thunderbird
>   Title: package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed
> to install/upgrade: Le paquet est dans un état incohérent; vous devriez  le
> réinstaller avant d'essayer de le supprimer.
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 07/30/2015
>   dmi.bios.vendor: LENOVO
>   dmi.bios.version: C0CN31WW
>   dmi.board.asset.tag: No Asset Tag
>   dmi.board.name: Mini
>   dmi.board.vendor: LENOVO
>   dmi.board.version: SDK0J91175WIN
>   dmi.c

[Bug 1636573] Re: xinit flooding syslog

2018-11-10 Thread Roy Gilby
[ANEWGUY]   Upgrade to Mint 19 - problem solved, as it includes the
newer version of Python Cypto

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

Title:
  xinit flooding syslog

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

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

Re: [Bug 1636573] Re: xinit flooding syslog

2018-11-10 Thread Roy Gilby
Do a clean install (NOT AN UPGRADE) of Mint 19 - that fixes the problem for
Kodi.  Mint 18.3 is using is based on an older Ubuntu.   The clean install
is not much harder than an upgrade, and gives a better result.  BUT, using
a live CD or USB to do some testing of Mint 19 on your hardware to make
sure that it is fully compatible, before doing the install.  Having a
separate partition for you /home folders also makes a clean install much
easier.

RoyG

On Sat, 10 Nov 2018 at 18:15, anewguy <1636...@bugs.launchpad.net>
wrote:

> I just ran into this same problem with Linux Mint when I went from
> version 18 to version 18.3.  I see it uses a lot of things from Ubuntu
> Zenial.  I tried the download links in Mike's post above from 2017 but
> the links have expired or something else as they no longer work.  I know
> Mint is different from Ubuntu but I know it is also based on Ubuntu, so
> I hope it was ok to post here.  Looking for help getting this to work.
> Kodi issues an error about current crypto being 1.2.3 but needing 1.7.
> I does look like i have the 1.2.3 package installed.  I don't know how
> to get the 2 packages Mike mentioned above.  I am also an idiot at most
> of this but hoping I can do what's needed to fix this.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1636573
>
> Title:
>   xinit flooding syslog
>
> Status in pyOpenSSL:
>   Fix Released
> Status in pyopenssl package in Ubuntu:
>   Fix Released
> Status in pyopenssl source package in Yakkety:
>   Fix Released
>
> Bug description:
>   I am using xinit (1.3.4-3ubuntu1) to start an X11 session as follows
>   (kodi is a media center):
>
>   /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /usr/bin/kodi-
>   standalone -- :1 -nolisten tcp vt8
>
>   This used to work fine with Ubuntu 16.04, but since the upgrade to
>   16.10 lots of log messages are sent to syslog. They are all
>   repetitions of the following two lines:
>
>   Oct 24 22:54:50 tiger xinit[26430]: extern "Python": function
> Cryptography_rand_bytes() called, but @ffi.def_extern() was not called in
> the current subinterpreter.  Returning 0.
>   Oct 24 22:54:50 tiger xinit[26430]: extern "Python": function
> Cryptography_rand_status() called, but @ffi.def_extern() was not called in
> the current subinterpreter.  Returning 0.
>
>   These messages amount to >200 GB per day, so this is eating up all the
>   disk space.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 16.10
>   Package: xorg 1:7.7+13ubuntu4
>   ProcVersionSignature: Ubuntu 4.8.0-22.24-generic 4.8.0
>   Uname: Linux 4.8.0-22-generic x86_64
>   NonfreeKernelModules: nvidia_uvm nvidia
>   ApportVersion: 2.20.3-0ubuntu8
>   Architecture: amd64
>   CurrentDesktop: KDE
>   Date: Tue Oct 25 18:41:22 2016
>   EcryptfsInUse: Yes
>   InstallationDate: Installed on 2012-01-06 (1753 days ago)
>   InstallationMedia: Kubuntu 11.10 "Oneiric Ocelot" - Release amd64
> (20111012)
>   SourcePackage: xorg
>   Symptom: display
>   UpgradeStatus: Upgraded to yakkety on 2016-10-13 (11 days ago)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/pyopenssl/+bug/1636573/+subscriptions
>

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

Title:
  xinit flooding syslog

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

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

[Bug 1775953] Re: Qtiplot crashes when selecting python as scripting language

2018-10-23 Thread Analabha Roy
** Also affects: qtiplot (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/1775953

Title:
  Qtiplot crashes when selecting python as scripting language

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

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

[Bug 1797793] [NEW] qtiplot crashes upon upgrade from xenial to bionic

2018-10-14 Thread Analabha Roy
Public bug reported:

When I upgraded from Xenial to Bionic, qtiplot was updated to the
version in the bionic repository (0.9.8.9-17), as did all its
dependencies. Upon launch, it segfaults. Note that this may be a qt4
problem, as a couple of other qt4 applications segfaulted as well.

Info:

$ lsb_release -rd
Description:Ubuntu 18.04.1 LTS
Release:18.04

$ apt-cache policy qtiplot
qtiplot:
  Installed: (none)
  Candidate: 0.9.8.9-17
  Version table:
 0.9.8.9-17 500
500 http://in.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages


Source Package:
https://launchpad.net/ubuntu/+source/qtiplot/0.9.8.9-17

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


** Tags: bionic qt4 qtiplot

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

Title:
  qtiplot crashes upon upgrade from xenial to bionic

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

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

[Bug 1749961] Re: xhci_hcd: TRB DMA errors reported with ASMedia ASM1142 USB 3.1 Controller

2018-10-05 Thread Roy Thompson
Hi Guilherme,

Thanks for the response. I have several (3) quad port ASMedia 2142
PCIe/USB 3.1 cards installed in a Dell R740 rack server.  I am using the
standard Ubuntu 18.04 kernel (Linux dell-PowerEdge-R740
4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64
x86_64 x86_64 GNU/Linux).

For one of my applications, it runs a loop that opens and closes a high
speed connection to a USB device connected through the ASMedia board.
After this goes on for several minutes without any issues, I see this in
dmesg:

[Oct 5 10:12] xhci_hcd :be:00.0: WARN Set TR Deq Ptr cmd failed due to 
incorrect slot or ep state.
[  +3.418076] xhci_hcd :be:00.0: WARN Successful completion on short TX
[  +0.35] xhci_hcd :be:00.0: ERROR Transfer event TRB DMA ptr not part 
of current TD ep_index 12 comp_code 1
[  +0.03] xhci_hcd :be:00.0: Looking for event-dma 001fe9759610 
trb-start 001fe9759620 trb-end 001fe9759620 seg-start 001fe9759000 
seg-end 001fe9759ff0

This is then followed shortly after by several kernel dump messages, and
then the whole system starts behaving erratically, requiring a hard
reboot to recover.

The condition is easy for me to reproduce and I will happily provide any
logs that may be of use to help debug this.  Please just let me know
what you would like and how to get them (as I am not a kernel expert).

Thanks,
Roy

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

Title:
  xhci_hcd: TRB DMA errors reported with ASMedia ASM1142 USB 3.1
  Controller

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

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

[Bug 1749961] Re: xhci_hcd: TRB DMA errors reported with ASMedia ASM1142 USB 3.1 Controller

2018-10-04 Thread Roy Thompson
I am running into this same issue with an ASMedia 2142 USB board.  Was a
fix ever identified?

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

Title:
  xhci_hcd: TRB DMA errors reported with ASMedia ASM1142 USB 3.1
  Controller

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

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

Re: [Bug 1602120] Re: Thunderbird - When Autosave is Enabled - Autosave files are not deleted when the emal is sent

2018-07-14 Thread Roy Gilby
I don't know if this bug still exists as I no longer use Thunderbird.

RoyG

On 15/07/18 02:06, gf wrote:
> Hello Roy,
> Thank you for submitting this bug and reporting a problem with Thunderbird.  
> You made this bug report in 2016 and there have been several versions of 
> Ubuntu and Thunderbird since then.
>
> Could you confirm that this is no longer a problem and that we can close the 
> ticket?
> If it is still a problem, are you still interested in finding a solution to 
> this bug?
> If you are, could you run the following (only once):
> apport-collect BUGNUMBER
> and upload the updated logs and and any other logs that are relevant for this 
> particular issue.
>
> Thank you again for helping make Ubuntu and Thunderbird better.
> G
>
> ** Changed in: thunderbird (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/1602120

Title:
  Thunderbird - When Autosave is Enabled - Autosave files are not
  deleted when the emal is sent

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

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

[Bug 1781571] [NEW] package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed to install/upgrade: Le paquet est dans un état incohérent; vous devriez le réinstaller avant d'essayer de le suppri

2018-07-13 Thread Christopher ROY
Public bug reported:

Impossible to uninstall or update Thunderbird nor any other application

ProblemType: Package
DistroRelease: Ubuntu 17.10
Package: thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1
ProcVersionSignature: Ubuntu 4.13.0-38.43-generic 4.13.16
Uname: Linux 4.13.0-38-generic x86_64
AddonCompatCheckDisabled: False
AlsaVersion: Advanced Linux Sound Architecture Driver Version 
k4.13.0-38-generic.
ApportVersion: 2.20.7-0ubuntu3.7
AptOrdering:
 thunderbird-dbg:amd64: Remove
 NULL: ConfigurePending
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: PCH [HDA Intel PCH], device 0: ALC236 Analog [ALC236 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  christophe   1448 F pulseaudio
BuildID: 20180124151331
Card0.Amixer.info:
 Card hw:0 'PCH'/'HDA Intel PCH at 0x9081 irq 258'
   Mixer name   : 'Realtek ALC236'
   Components   : 'HDA:10ec0236,17aa3800,0011 
HDA:80862882,80860101,0010'
   Controls  : 26
   Simple ctrls  : 10
Channel: Unavailable
Date: Fri Jul 13 12:03:19 2018
DpkgHistoryLog:
 Start-Date: 2018-07-13  12:03:19
 Commandline: /usr/sbin/synaptic
 Requested-By: christophe (1000)
 Remove: thunderbird-dbg:amd64 (1:52.6.0+build1-0ubuntu0.17.10.1)
DpkgTerminalLog:
 dpkg: erreur de traitement du paquet thunderbird-dbg (--remove) :
  Le paquet est dans un état incohérent; vous devriez
  le réinstaller avant d'essayer de le supprimer.
ErrorMessage: Le paquet est dans un état incohérent; vous devriez  le 
réinstaller avant d'essayer de le supprimer.
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2017-11-27 (227 days ago)
InstallationMedia: Lubuntu 17.10 "Artful Aardvark" - Release amd64 (20171017.1)
IpRoute:
 default via 192.168.1.1 dev enp1s0 proto static metric 100 
 192.168.1.0/24 dev enp1s0 proto kernel scope link src 192.168.1.96 metric 100
NoProfiles: True
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
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
RunningIncompatibleAddons: False
SourcePackage: thunderbird
Title: package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed to 
install/upgrade: Le paquet est dans un état incohérent; vous devriez  le 
réinstaller avant d'essayer de le supprimer.
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/30/2015
dmi.bios.vendor: LENOVO
dmi.bios.version: C0CN31WW
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Mini
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J91175WIN
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo YOGA 300-11IBY
dmi.modalias: 
dmi:bvnLENOVO:bvrC0CN31WW:bd07/30/2015:svnLENOVO:pn80M0:pvrLenovoYOGA300-11IBY:rvnLENOVO:rnMini:rvrSDK0J91175WIN:cvnLENOVO:ct10:cvrLenovoYOGA300-11IBY:
dmi.product.family: IDEAPAD
dmi.product.name: 80M0
dmi.product.version: Lenovo YOGA 300-11IBY
dmi.sys.vendor: LENOVO

** Affects: thunderbird (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/1781571

Title:
  package thunderbird-dbg 1:52.6.0+build1-0ubuntu0.17.10.1 failed to
  install/upgrade: Le paquet est dans un état incohérent; vous devriez
  le réinstaller avant d'essayer de le supprimer.

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-07-12 Thread Roy Kimbrell
I booted another machine (currently running 18.04) from the USB memory
stick with 16.04 on it. I plugged in three USB memory sticks. Each came
up in a couple of seconds. When that machine is running 18.04 it takes
4+ minutes for a single memory stick to be available.

Note that dmesg shows that the OS sees the memory stick nearly
immediately. It's Nautilus (guessing) that doesn't make it available.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-07-11 Thread Roy Kimbrell
I booted the Dell Studio XPS machine from a USB drive loaded with Ubuntu
16.04. I inserted multiple USB drives (one holding the OS was already
there) and two others. They mounted within seconds and Nautilus
displayed their contents when the drive was clicked on.

This did not happen in Ubuntu 18.04. A drive would not come up for 4+
minutes. And would not mount multiple USB drives.

HOWEVER, something hinky did happen. When multiple drives were mounted,
the USB mouse would not function. So there is something wrong with the
USB subsystem in that machine.

But, 16.04 definitely worked better than 18.04.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-07-09 Thread Roy Kimbrell
My apologies. Sorry, but the encrypted USB drive was defective. I put it
in another computer (Ubuntu 17.10) and it would be recognized only if it
were held in the drive in a particular way. Either an internal
connection is bad or the external contacts are not aligned properly.

The other USB drive still takes 4+ minutes to be recognized and mounted
by the OS. In the other computer (Ubuntu 17.10) it comes up in less than
30 seconds.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-07-04 Thread Roy Kimbrell
Inserted a regular USB memory stick after the most recent update and a reboot. 
I always try this after an update in case something got fixed. The memory stick 
appeared on the desktop 4 minutes and 20 seconds after I inserted it. Too long, 
wouldn't you say?
 
I tried inserting my encrypted USB memory stick. Nothing happened after 7 
minutes. Here's the dmesg stream:

[  660.298830] usb 2-1.3: new high-speed USB device number 10 using ehci-pci
[  660.416427] usb 2-1.3: New USB device found, idVendor=05dc, idProduct=a838
[  660.416430] usb 2-1.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[  660.416432] usb 2-1.3: Product: USB Flash Drive
[  660.416434] usb 2-1.3: Manufacturer: Lexar
[  660.416435] usb 2-1.3: SerialNumber: AAAE359Y7BWXS1P7
[  660.417374] usb-storage 2-1.3:1.0: USB Mass Storage device detected
[  660.417629] scsi host6: usb-storage 2-1.3:1.0
[  661.604039] scsi 6:0:0:0: Direct-Access LexarUSB Flash Drive  1100 
PQ: 0 ANSI: 6
[  661.604446] sd 6:0:0:0: Attached scsi generic sg2 type 0
[  661.605782] sd 6:0:0:0: [sdb] 62517248 512-byte logical blocks: (32.0 
GB/29.8 GiB)
[  661.606942] sd 6:0:0:0: [sdb] Write Protect is off
[  661.606946] sd 6:0:0:0: [sdb] Mode Sense: 43 00 00 00
[  661.608069] sd 6:0:0:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[  661.615900]  sdb: sdb1
[  661.619979] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[  683.875699] usb 2-1.3: USB disconnect, device number 10
[  683.876481] sd 6:0:0:0: [sdb] Synchronizing SCSI cache
[  683.876526] sd 6:0:0:0: [sdb] Synchronize Cache(10) failed: Result: 
hostbyte=DID_NO_CONNECT driverbyte=DRIVER_OK
[  987.207732] usb 2-1.3: new high-speed USB device number 11 using ehci-pci
[  987.715730] usb 2-1.3: device not accepting address 11, error -71
[  988.780035] usb 2-1-port3: Cannot enable. Maybe the USB cable is bad?
[  988.780161] usb 2-1-port3: attempt power cycle

No attempt to decrypt.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1770617] Re: Dia-normal, GIMP crash when attempting to print using network printer

2018-06-27 Thread Roy
** Also affects: gtk+2.0 (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/1770617

Title:
  Dia-normal, GIMP crash when attempting to print using network printer

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

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

[Bug 1424528] Re: File should be moved from dev package to main

2018-06-25 Thread Roy Bellingan
Still present in 17.10

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

Title:
  File should be moved from dev package to main

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

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

[Bug 1777544] [NEW] package kodi-bin 2:17.6+dfsg1-1ubuntu1 failed to install/upgrade: trying to overwrite '/usr/bin/kodi', which is also in package kodi 2:17.6+dfsg1-1ubuntu1

2018-06-18 Thread Roy
Public bug reported:

not sure what happened

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: kodi-bin 2:17.6+dfsg1-1ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-23.25-generic 4.15.18
Uname: Linux 4.15.0-23-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.2
AptOrdering:
 kodi:amd64: Install
 kodi-bin:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
Date: Tue Jun 19 10:47:22 2018
ErrorMessage: trying to overwrite '/usr/bin/kodi', which is also in package 
kodi 2:17.6+dfsg1-1ubuntu1
InstallationDate: Installed on 2018-05-18 (31 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
Python3Details: /usr/bin/python3.6, Python 3.6.5, python3-minimal, 3.6.5-3
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.1
SourcePackage: kodi
Title: package kodi-bin 2:17.6+dfsg1-1ubuntu1 failed to install/upgrade: trying 
to overwrite '/usr/bin/kodi', which is also in package kodi 
2:17.6+dfsg1-1ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package bionic

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

Title:
  package kodi-bin 2:17.6+dfsg1-1ubuntu1 failed to install/upgrade:
  trying to overwrite '/usr/bin/kodi', which is also in package kodi
  2:17.6+dfsg1-1ubuntu1

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-17 Thread Roy Kimbrell
Could not mount a video DVD unless the DVD had been inserted and then
the machine rebooted. At this point, the DVD is mounted and can be
played. After ejecting the DVD and inserting another DVD, the newer DVD
is not recognized unless the machine is rebooted.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-12 Thread Roy Kimbrell
The latest Ubuntu update included Linux version 4.15.0-23-generic. This
appears, after a single test after a reboot, to have allowed a FAT-
formatted USB memory stick to be recognized and mounted. I opened the
device and copied a file to it then unmounted it with no problem.

However, the encrypted device still does not work. When inserted, a
dialog box appears that allows no input except in it. I entered the pass
phrase, but nothing happened except the pass phrase (dots only) were
spread out beyond their input area. The machine was effectively locked
out. Previously, I had power cycled the machine to get out of this
condition, but this time I had an appointment and just left it. When I
returned several hours later, the dialog box had disappeared. Yet I was
not able to access the device: a box with an error message appeared
instead. Nor could it be ejected: "Writing data to Lexar USB Flash Drive
Device should not be unplugged."

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-12 Thread Roy Kimbrell
dmesg output after plugging in encrypted flash drive:

[  919.639686] usb 2-1.3: new high-speed USB device number 26 using ehci-pci
[  919.757260] usb 2-1.3: New USB device found, idVendor=05dc, idProduct=a838
[  919.757264] usb 2-1.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[  919.757266] usb 2-1.3: Product: USB Flash Drive
[  919.757268] usb 2-1.3: Manufacturer: Lexar
[  919.757269] usb 2-1.3: SerialNumber: AAAE359Y7BWXS1P7
[  919.758328] usb-storage 2-1.3:1.0: USB Mass Storage device detected
[  919.758543] scsi host6: usb-storage 2-1.3:1.0
[  920.936918] scsi 6:0:0:0: Direct-Access LexarUSB Flash Drive  1100 
PQ: 0 ANSI: 6
[  920.937343] sd 6:0:0:0: Attached scsi generic sg2 type 0
[  920.938391] sd 6:0:0:0: [sdb] 62517248 512-byte logical blocks: (32.0 
GB/29.8 GiB)
[  920.939511] sd 6:0:0:0: [sdb] Write Protect is off
[  920.939514] sd 6:0:0:0: [sdb] Mode Sense: 43 00 00 00
[  920.940674] sd 6:0:0:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[  920.948341]  sdb: sdb1
[  920.952267] sd 6:0:0:0: [sdb] Attached SCSI removable disk

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-07 Thread Roy Kimbrell
This problem may be associated with the USB software. I shut  down the
machine and pulled the battery and the Logitech mouse USB receiver.
Booted the machine. With just the sign-in box on the screen, both the
mouse and the trackpad worked. Immediately after sign-in the mouse could
not be controlled by the trackpad. The keyboard continued to work. I
rebooted the machine after removing the Logitech USB receiver. The
trackpad would not work. I inserted the Logitech USB receiver, but it
did not allow the mouse to work. Rebooting reactivated the Logitech
mouse.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-07 Thread Roy Kimbrell
The feature for mounting both unencrypted and encrypted USB drives
worked well(!) in Ubuntu 17.10. And it continues to work with the test
USB drives I'm using. If I insert an encrypted USB drive in my tower
machine (Ubuntu 17.10) I get a dialog box asking for my pass phrase
right away. If I enter the correct phrase, I get immediate access to the
contents of the USB drive.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-07 Thread Roy Kimbrell
I inserted a standard USB drive into my laptop (Ubuntu 18.04). After
about five minutes it was recognized and mounted. I inserted my
encrypted USB drive, but it was never mounted - presumably because the
file system type was not recognized - because something is wrong with
the decryption feature.

Five minutes is way(!) too long for the standard USB drive to wait to be
recognized.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-06-05 Thread Roy Kimbrell
Inserted an unencrypted USB drive.
dmesg showed it as /dev/sdc1
tried:
sudo mount /dev/sdc1 temp

The drive mounted and I was able to access it.

Entered: 
sudo umount temp

and the drive appeared to unmount.

Tried the same with the encrypted drive and got this:

 sudo mount /dev/sdc1 temp
mount: /home/rek/temp: unknown filesystem type 'crypto_LUKS'.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-29 Thread Roy Kimbrell
Booted a tower machine (it had been powered off) running Ubuntu 17.10
(Artful). Ran SW updates. Rebooted. Inserted encrypted USB flash drive.
Was asked several times for the password. Gave it - multiple times.
Finally I was able to open drive. That lasted about 10 minutes when all
the files in the window disappeared (folder is empty message). Pulled
the flash drive and reinserted it. This time it worked. Request for
password showed up in its black window. I entered the password (twice -
I might have screwed it up). Was able to access files with no problems.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-27 Thread Roy Kimbrell
After a reboot, inserted encrypted USB flash drive (32G Lexar). Waited
about 15 minutes and the request for the password was displayed. I
entered the password, but nothing happened. Waited five minutes - then
rebooted with the drive still inserted. It was not recognized (by
Nautilus) upon completion of the reboot. Removed and inserted and it was
eventually recognized, but no window asking for a password showed until
I opened the "file cabinet" and clicked on the drive listed on the left.
A request for password then appeared. I entered the password and was
able to open the drive. However after about ten minutes, I could not
open any files - a lock icon appeared on the file icon. Removed the USB
flash drive and rebooted.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-27 Thread Roy Kimbrell
Tried ...

 apt-get install --reinstall nautilus
 
No change. Still cannot mount USB flash drives.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-27 Thread Roy Kimbrell
** Also affects: nautilus (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/1773597

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-26 Thread Roy Kimbrell
This bug occurred on a Dell Studio XPS. It also occurred on an Alienware
machine - both fairly old, perhaps 8 years. The Alienware machine was at
the same software level as the Dell Studio XPS. On the Alienware
machine, occasionally after some time (say five minutes). With an
encrypted drive, the drive might appear (or not), but access was iffy -
with the system asking multiple times for the password, but almost never
granting access. When access was granted, access to the files was
eventually terminated - the directory window in Nautilus eventually
showing no files.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] Re: USB flash drive won't mount

2018-05-26 Thread Roy Kimbrell
I've tried mounting several different flash drives: One Lexar, one
encrypted Lexar, one Sandisk.

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

Title:
  USB flash drive won't mount

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

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

[Bug 1773597] [NEW] USB flash drive won't mount

2018-05-26 Thread Roy Kimbrell
Public bug reported:

[0.00] Linux version 4.15.0-22-generic (buildd@lgw01-amd64-013) (gcc 
version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)) #24-Ubuntu SMP Wed May 16 12:15:17 UTC 
2018 (Ubuntu 4.15.0-22.24-generic 4.15.17)
[0.00] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-22-generic 
root=UUID=870f1d77-345c-44b2-99e6-79adea07159c ro quiet splash vt.handoff=1

Ubuntu version: Ubuntu 18.04 LTS, software is up to date

Steps to create problem:

1. Reboot
2. Insert USB flash drive

USB flash drive does not appear on desktop or in Nautilus file window

dmesg | tail

[ 1435.463032] usb 2-1.3: new high-speed USB device number 8 using ehci-pci
[ 1435.685760] usb 2-1.3: New USB device found, idVendor=05dc, idProduct=c75c
[ 1435.685763] usb 2-1.3: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[ 1435.685765] usb 2-1.3: Product: USB Flash Drive
[ 1435.685766] usb 2-1.3: Manufacturer: Lexar
[ 1435.685767] usb 2-1.3: SerialNumber: D2036779FCE9EDC016EF

lsusb

Bus 002 Device 007: ID 413c:8156 Dell Computer Corp. Wireless 370 Bluetooth 
Mini-card
Bus 002 Device 006: ID 413c:8158 Dell Computer Corp. Integrated Touchpad / 
Trackstick
Bus 002 Device 005: ID 413c:8157 Dell Computer Corp. Integrated Keyboard
Bus 002 Device 004: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of 
BCM2046 Bluetooth)
Bus 002 Device 008: ID 05dc:c75c Lexar Media, Inc. 
Bus 002 Device 003: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0c45:640f Microdia 
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

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

Title:
  USB flash drive won't mount

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

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

[Bug 1770617] Re: Dia-normal crashes when attempting to print using network printer

2018-05-11 Thread Roy
Backtrace for same problem in GIMP.

** Also affects: gimp (Ubuntu)
   Importance: Undecided
   Status: New

** Attachment added: "GIMP backtrace"
   
https://bugs.launchpad.net/ubuntu/+source/dia/+bug/1770617/+attachment/5137753/+files/GIMP%20backtrace.txt

** Summary changed:

- Dia-normal crashes when attempting to print using network printer
+ Dia-normal, GIMP crash when attempting to print using network printer

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

Title:
  Dia-normal, GIMP crash when attempting to print using network printer

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

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

[Bug 1770617] [NEW] Dia-normal crashes when attempting to print using network printer

2018-05-11 Thread Roy
Public bug reported:

When I attempt to print a diagram from dia-normal using one of the
network printers offered by cups, the program crashes in the process of
selecting a printer from the list of available printers.

Steps to reproduce:
1) Start dia, open a diagram
2) Select File->Print
3) Click on a (network) printer in the list of printers
-> Crash

Expected result:
The ability to click the print button and have my diagram roll off the printer.

Actual result:
Dia graphical interface disappears, the following assertion shows up in a 
terminal:
*** Error in `dia-normal': double free or corruption (!prev): 
0x0285db10 ***

Additional information:
- Disabling the avahi daemon makes this problem disappear without loss of 
network printing ability, presumably because our network configuration does not 
rely on printer auto-discovery.
- Problems do not occur when printing from e.g. evince.
- But similar problems do exist with the Gimp. Perhaps this is a bug in one of 
the libraries used by dia and Gimp (GTK2 print dialogue/back-end problems 
solved in GTK3?)
- This bug may be related to bug #1701128, but without access to the logs I am 
unable to verify.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: dia 0.97.3-1
ProcVersionSignature: Ubuntu 4.4.0-124.148-generic 4.4.117
Uname: Linux 4.4.0-124-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.17
Architecture: amd64
CurrentDesktop: GNOME
Date: Fri May 11 11:09:10 2018
InstallationDate: Installed on 2016-05-04 (736 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
SourcePackage: dia
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

** Attachment added: "Backtrace"
   
https://bugs.launchpad.net/bugs/1770617/+attachment/5137713/+files/dia%20backtrace.txt

** Description changed:

  When I attempt to print a diagram from dia-normal using one of the
  network printers offered by cups, the program crashes in the process of
  selecting a printer from the list of available printers.
  
  Steps to reproduce:
  1) Start dia, open a diagram
  2) Select File->Print
  3) Click on a (network) printer in the list of printers
  -> Crash
  
  Expected result:
  The ability to click the print button and have my diagram roll off the 
printer.
  
  Actual result:
  Dia graphical interface disappears, the following assertion shows up in a 
terminal:
  *** Error in `dia-normal': double free or corruption (!prev): 
0x0285db10 ***
  
  Additional information:
  - Disabling the avahi daemon makes this problem disappear without loss of 
network printing ability, presumably because our network configuration does not 
rely on printer auto-discovery.
  - Problems do not occur when printing from e.g. evince.
- - But similar problems do exist with the Gimp. Perhaps this is a bug in one 
of the libraries used by dia and Gimp (GTK2 print dialogue/back-end problems 
solved in GTK?)
+ - But similar problems do exist with the Gimp. Perhaps this is a bug in one 
of the libraries used by dia and Gimp (GTK2 print dialogue/back-end problems 
solved in GTK3?)
  - This bug may be related to bug #1701128, but without access to the logs I 
am unable to verify.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: dia 0.97.3-1
  ProcVersionSignature: Ubuntu 4.4.0-124.148-generic 4.4.117
  Uname: Linux 4.4.0-124-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.17
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May 11 11:09:10 2018
  InstallationDate: Installed on 2016-05-04 (736 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  SourcePackage: dia
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Dia-normal crashes when attempting to print using network printer

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

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

[Bug 1767686] [NEW] package kaccounts-providers (not installed) failed to install/upgrade: trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in package account

2018-04-28 Thread Rajdeep Roy Chowdhury
Public bug reported:

When I was trying to install KDE, I got this error.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: kaccounts-providers (not installed)
ProcVersionSignature: Ubuntu 4.4.0-97.120-generic 4.4.87
Uname: Linux 4.4.0-97-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Sat Apr 28 22:43:46 2018
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-xenial-amd64-20160624-2
DuplicateSignature:
 package:kaccounts-providers:(not installed)
 Unpacking kde-config-telepathy-accounts (4:15.12.3-0ubuntu1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/kde-config-telepathy-accounts_4%3a15.12.3-0ubuntu1_amd64.deb
 (--unpack):
  trying to overwrite '/usr/share/accounts/services/google-im.service', which 
is also in package account-plugin-google 0.12+16.04.20160126-0ubuntu1
ErrorMessage: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package account-plugin-facebook 0.12+16.04.20160126-0ubuntu1
InstallationDate: Installed on 2017-05-29 (334 days ago)
InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.15ubuntu0.2
SourcePackage: kaccounts-providers
Title: package kaccounts-providers (not installed) failed to install/upgrade: 
trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', 
which is also in package account-plugin-facebook 0.12+16.04.20160126-0ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: kaccounts-providers (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  package kaccounts-providers (not installed) failed to install/upgrade:
  trying to overwrite '/etc/signon-ui/webkit-
  options.d/www.facebook.com.conf', which is also in package account-
  plugin-facebook 0.12+16.04.20160126-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kaccounts-providers/+bug/1767686/+subscriptions

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


[Bug 1763232] [NEW] Width and Update Interval Optons do not Save

2018-04-11 Thread Michael Roy
Public bug reported:

Package: mate-applets 1.20.1-0ubuntu1
Release: 18.04 Ubuntu Bionic Beaver (development branch)
Version: 1.20.1-0ubuntu1

Expected:
Changes to System Monitor applet width and System monitor update interval save 
and are persistent following a reboot.

Actual:
Changes to System Monitor applet width and System Monitor update interval do 
not save and return to default states following a reboot.

Steps to Reproduce:

1. In Ubuntu Mate, right-click on a panel and click "Add to Panel..." 
2. Add System Monitor applet to Panel
3. Right click on System Monitor applet in Panel
4. Click Preferences
5. In "System Monitor Preferences" window, go to "Options" section and change 
the values for "System monitor width:" and "System monitor update interval" (I 
changed to 80 pixels and 1 milliseconds, respectively)
6. Click "Close" to close (and save) changed width and update interval options
7. System monitor width and System monitor update interval appears to change as 
expected, HOWEVER now try the following:

8. Right click on System Monitor applet in Panel
9.  Click Preferences
10. In "System Monitor Preferences" window, under "Options" section, the values 
shown for "System monitor width:" and "System monitor update interval" have 
reverted to default values ***even though the applet itself remains at user-set 
values***  The values displayed in the System Monitor Preferences dialog are 
now inconsistent with the appearance of the applet, which is incorrect behavior.

11. Change the values for "System monitor width:" and "System monitor update 
interval" to match the appearance of the applet (I changed to 80 pixels and 
1 milliseconds, respectively)
12. Click "Close" to close (and save) changed pixels and milliseconds settings
13. Right click on System Monitor applet in Panel
14. Click "Lock To Panel
15. Reboot computer
16. Upon reboot and login, system monitor applet width and update interval have 
reverted to default values, ignoring user-set values. This is incorrect 
behavior.

** Affects: mate-desktop
 Importance: Unknown
 Status: New

** Affects: mate-applets (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: applet monitor system

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

Title:
  Width and Update Interval Optons do not Save

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

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

[Bug 1763232] Re: Width and Update Interval Optons do not Save

2018-04-11 Thread Michael Roy
Small edit: millisecond setting in the above step-by-step should be
1,000, not 10,000.

** Package changed: mate-system-monitor (Ubuntu) => mate-applets
(Ubuntu)

** Bug watch added: github.com/mate-desktop/mate-applets/issues #291
   https://github.com/mate-desktop/mate-applets/issues/291

** Also affects: mate-desktop via
   https://github.com/mate-desktop/mate-applets/issues/291
   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/1763232

Title:
  Width and Update Interval Optons do not Save

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

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

[Bug 555079] Re: supertux2 crashed with SIGSEGV in __dynamic_cast()

2018-03-07 Thread Roy Jamison via ubuntu-bugs
This was fixed in 2014. Given Xenial pulls a 2015+ version from
upstream, this should be fixed, so marking it as such.

** Changed in: supertux (Ubuntu)
   Status: Triaged => 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/555079

Title:
  supertux2 crashed with SIGSEGV in __dynamic_cast()

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

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

[Bug 1510125] Re: occasionally loses external monitor

2018-03-02 Thread Roy
This is present for:
- GNOME/Wayland session
- Ubuntu 17.10
- 4.13.0-36-generic
ie. any Ubuntu any kernel

symptom:
tail --follow=name --retry /var/log/syslog
Mar  2 11:36:06 c89 kernel: [649937.206226] thunderbolt :07:00.0: resetting 
error on 0:c.
Mar  2 11:36:06 c89 kernel: [649937.206258] thunderbolt :07:00.0: 0:c: 
hotplug: scanning
Mar  2 11:36:06 c89 kernel: [649937.206261] thunderbolt :07:00.0: 0:c: 
hotplug: no switch found
Mar  2 11:36:07 c89 kernel: [649937.685613] thunderbolt :07:00.0: resetting 
error on 0:c.
Mar  2 11:36:07 c89 kernel: [649937.685645] thunderbolt :07:00.0: 0:c: got 
unplug event for disconnected port, ignoring

Present since:
- always, but was earlier hidden by more severe i915 bugs

Happens when:
- many windows, or when opening many such as when restoring a crashed Chromium 
or LibreOffice session
- 2 external monitors via DisplayPort

Affect hardware:
- Product Name: MacBookPro12,1
lspci -v -s 00:02.0  [21/21]
00:02.0 VGA compatible controller: Intel Corporation Iris Graphics 6100 (rev 09)
 (prog-if 00 [VGA controller])  
Subsystem: Apple Inc. Iris Graphics 6100
Flags: bus master, fast devsel, latency 0, IRQ 50   
Memory at c000 (64-bit, non-prefetchable) [size=16M]
Memory at b000 (64-bit, prefetchable) [size=256M]   
I/O ports at 3000 [size=64] 
[virtual] Expansion ROM at 000c [disabled] [size=128K]  
Capabilities:
Kernel driver in use: i915  
Kernel modules: i915

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

Title:
  occasionally loses external monitor

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

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

[Bug 1741555] [NEW] package libsystemd0:i386 229-4ubuntu21 failed to install/upgrade: package libsystemd0:i386 is already installed and configured

2018-01-05 Thread Ullash Roy
Public bug reported:

app's are not installing from store

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libsystemd0:i386 229-4ubuntu21
ProcVersionSignature: Ubuntu 4.10.0-42.46~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
CrashReports:
 600:0:117:504519:2018-01-06 02:21:21.971122980 +0530:2018-01-06 
02:21:22.971122980 +0530:/var/crash/libsystemd0:i386.0.crash
 640:1000:117:96573:2018-01-05 12:40:37.582445994 +0530:2018-01-05 
12:40:39.294440116 +0530:/var/crash/_usr_bin_nautilus.1000.crash
 600:0:117:504506:2018-01-06 02:21:23.183124441 +0530:2018-01-06 
02:21:23.055123514 +0530:/var/crash/libxau6:i386.0.crash
 640:1000:117:55031:2018-01-05 12:40:41.254433385 +0530:2018-01-05 
15:29:53.244872949 +0530:/var/crash/_usr_share_apport_apport-gtk.1000.crash
 600:0:117:504516:2018-01-06 02:21:23.047123456 +0530:2018-01-06 
02:21:22.971122906 +0530:/var/crash/libjson-c2:i386.0.crash
Date: Sat Jan  6 02:21:22 2018
DuplicateSignature:
 package:libsystemd0:i386:229-4ubuntu21
 Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
 dpkg: error processing package libsystemd0:i386 (--configure):
  package libsystemd0:i386 is already installed and configured
ErrorMessage: package libsystemd0:i386 is already installed and configured
InstallationDate: Installed on 2018-01-04 (0 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
PackageArchitecture: i386
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: dpkg
Title: package libsystemd0:i386 229-4ubuntu21 failed to install/upgrade: 
package libsystemd0:i386 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed apport-package i386 xenial

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

Title:
  package libsystemd0:i386 229-4ubuntu21 failed to install/upgrade:
  package libsystemd0:i386 is already installed and configured

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

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

[Bug 1740574] [NEW] cannot install grub, trying to dual boot with windows 7 on an acer e 15 start

2017-12-29 Thread Moksh Roy
Public bug reported:

was trying to install the student version for dual booting and it is not
working because of the grub package not being able to install. I am not
well versed with linus so that is the only information that I can
provide from my side

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.4
ProcVersionSignature: Ubuntu 4.10.0-28.32~16.04.2-generic 4.10.17
Uname: Linux 4.10.0-28-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CasperVersion: 1.376.2
Date: Sat Dec 30 11:59:10 2017
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
ProcEnviron:
 LANGUAGE=en_IN
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubiquity-2.21.63.4 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/1740574

Title:
  cannot install grub, trying to dual boot with windows 7 on an acer e
  15 start

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

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

[Bug 1732994] [NEW] cant install ubuntu

2017-11-17 Thread CHANDAN ROY
Public bug reported:

I couldn’t install any of the versions of ubuntu what i have I
downloaded from the official website. every time when i am going to
install it is showing some type of freezing error and my system is
taking too much time to start "try ubuntu" from the boot menu.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.4
ProcVersionSignature: Ubuntu 4.10.0-28.32~16.04.2-generic 4.10.17
Uname: Linux 4.10.0-28-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CasperVersion: 1.376.2
Date: Sat Nov 18 02:03:20 2017
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
ProcEnviron:
 LANGUAGE=en_IN
 PATH=(custom, no user)
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug ubiquity-2.21.63.4 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/1732994

Title:
  cant install ubuntu

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

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

[Bug 1724037] [NEW] Gnome shell is too big

2017-10-16 Thread roy
Public bug reported:

It should be possible to scale down the whole shell to less than 100%
e.g. 90% 85% etc.

thanks

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-shell 3.26.1-0ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Mon Oct 16 20:14:43 2017
DisplayManager: gdm3
GsettingsChanges:
 b'org.gnome.shell' b'favorite-apps' b"['org.gnome.Nautilus.desktop', 
'firefox.desktop']"
 b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
InstallationDate: Installed on 2017-10-16 (0 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Beta amd64 (20171012)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (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/1724037

Title:
  Gnome shell is too big

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

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

[Bug 1386032] Re: ibus-sunpinyin preferences panel does not work

2017-10-16 Thread Roy
*** This bug is a duplicate of bug 1697660 ***
https://bugs.launchpad.net/bugs/1697660

** This bug has been marked a duplicate of bug 1697660
   [ibus][SunPinyin] Failed to open Preferences

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

Title:
  ibus-sunpinyin preferences panel does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-sunpinyin/+bug/1386032/+subscriptions

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

[Bug 1722096] [NEW] AisleRiot card theme is not branded

2017-10-08 Thread Roy
Public bug reported:

Description:Ubuntu 16.04.3 LTS
Release:16.04

branding-ubuntu: 0.8


AisleRiot uses .svgz file for card theme. bonded.svg in this package is
not used.

Expected
branding-ubuntu should include a file bonded.svgz, and get bonded.svgz in 
package aisleriot diverted.

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


** Tags: artwork

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

Title:
  AisleRiot card theme  is not branded

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

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

[Bug 1721167] [NEW] Guest stopped after "Virtqueue size exceeded error"

2017-10-03 Thread Roy Zuo
Public bug reported:

Nova VM suddenly stopped itself. The symptom looks like Bug 1612089,
except that there was no operation at all that triggered the failure.

qemu-system-x86: Installed: 1:2.5+dfsg-5ubuntu10.14

2017-10-02T08:45:50.126526Z qemu-system-x86_64: Virtqueue size
exceeded

Oct 2 08:45:50 compute2104 libvirtd[3852619]: internal error: End of file 
from monitor 
Oct 2 08:45:50 compute2104 virtlogd[16355]: Cannot open log file: 
'/var/log/libvirt/qemu/instance-b179.log': Device or resource busy 
Oct 2 08:45:50 compute2104 libvirtd[3852619]: Cannot open log file: 
'/var/log/libvirt/qemu/instance-b179.log': Device or resource busy 
Oct 2 08:45:50 compute2104 virtlogd[16355]: End of file while reading data: 
Input/output error 
Oct 2 08:45:51 compute2104 ntpd[68848]: Deleting interface #69 
tap0b046500-75, fe80::fc16:3eff:fe70:e693%93#123, interface stats: received=0, 
sent=0, dropped=0, active_time=3036645 secs 
Oct 2 08:46:02 compute2104 ntpd[68848]: Soliciting pool server 
150.95.148.140 
Oct 2 08:46:06 compute2104 nova-compute[2363693]: 2017-10-02 08:46:06.206 
2363693 WARNING nova.compute.manager [req-ca962397-1a61-4a99-96ff-09f39497d480 
- - - - -] [instance: c6e4d3dd-695b-42fa-bb9b-adde93e921bb] Instance shutdown 
by itself. Calling the stop API. Current vm_state: active, current task_state: 
None, original DB power_state: 1, current VM power_state: 4 

mysql> select created_at,action,instance_uuid,user_id from 
nova.instance_actions where 
instance_uuid='c6e4d3dd-695b-42fa-bb9b-adde93e921bb';
+-++--+--+
| created_at | action | instance_uuid | user_id |
+-++--+--+
| 2017-08-28 05:14:45 | create | c6e4d3dd-695b-42fa-bb9b-adde93e921bb | 
fe7cd39bbc5d44929fbd6add769c37b9 |
| 2017-10-02 08:46:06 | stop | c6e4d3dd-695b-42fa-bb9b-adde93e921bb | NULL |
| 2017-10-02 09:15:29 | start | c6e4d3dd-695b-42fa-bb9b-adde93e921bb | 
fe7cd39bbc5d44929fbd6add769c37b9 |
+-++--+--+

** Affects: qemu (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/1721167

Title:
  Guest stopped after "Virtqueue size exceeded error"

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

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

[Bug 1721167] Re: Guest stopped after "Virtqueue size exceeded error"

2017-10-03 Thread Roy Zuo
It appears the bug is the same as this one
https://lists.gnu.org/archive/html/qemu-devel/2017-06/msg03729.html

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

Title:
  Guest stopped after "Virtqueue size exceeded error"

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

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

[Bug 1717388] [NEW] Duplicate lines created when copying csv file from a windows shared folder through Virtualbox

2017-09-14 Thread Roy Jamison
Public bug reported:

Running: Ubuntu 16.04.3 LTS
System: Virtualbox VM

When copying a large csv file (30-40 columns with strange characters, null 
bytes, etc.) from a shared folder with windows through vbox to Ubuntu, the data 
is corrupted in a strange way.
Some of the lines are repeated further down. The original csv still in the 
shared folder opens fine, so this doesn't appear to be a problem with 
LibreOffice or Ubuntu's ability to view shared files, it looks like a copying 
error with nautilus.

Copying using 'cp' through the terminal works without issue.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: nautilus 1:3.18.4.is.3.14.3-0ubuntu6
ProcVersionSignature: Ubuntu 4.10.0-33.37~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-33-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Sep 15 00:53:01 2017
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b"'814x581+999+107'"
InstallationDate: Installed on 2017-08-24 (21 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  Duplicate lines created when copying csv file from a windows shared
  folder through Virtualbox

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

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

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

2017-08-25 Thread Roy Michael Conn Jr.
I get this after login in Ubuntu GNOME amd64, and I am using VirtualBox
to run the OS.

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

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/1542000/+subscriptions

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


[Bug 940030] Re: rsyslog stops working after logrotate until restarted

2017-08-18 Thread roy
A workaround.

Have/Had the same issue. 
As the logrotate is executed by the daily cronjob, I modified 
/etc/cron.daily/logrotate to the following:
-
#!/bin/sh

/usr/sbin/logrotate -s /var/lib/logrotate/logrotate.status /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
/bin/systemctl restart rsyslog
exit 0


And that resolved the issue.

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

Title:
  rsyslog stops working after logrotate until restarted

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

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


[Bug 1710331] [NEW] package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade: package libc6-dbg:amd64 is not ready for configuration cannot configure (current status 'half-installed')

2017-08-12 Thread SANJIB DEB ROY
Public bug reported:

ubuntu, updation error

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libc6-dbg:amd64 2.23-0ubuntu9
ProcVersionSignature: Ubuntu 4.4.0-89.112-generic 4.4.76
Uname: Linux 4.4.0-89-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
Date: Sat Aug 12 11:36:32 2017
Dependencies:
 gcc-6-base 6.0.1-0ubuntu1
 libc6 2.23-0ubuntu9
 libgcc1 1:6.0.1-0ubuntu1
DuplicateSignature:
 package:libc6-dbg:amd64:2.23-0ubuntu9
 Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
 dpkg: error processing package libc6-dbg:amd64 (--configure):
  package libc6-dbg:amd64 is not ready for configuration
ErrorMessage: package libc6-dbg:amd64 is not ready for configuration  cannot 
configure (current status 'half-installed')
InstallationDate: Installed on 2016-02-11 (547 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.24
SourcePackage: glibc
Title: package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade: package 
libc6-dbg:amd64 is not ready for configuration  cannot configure (current 
status 'half-installed')
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: glibc (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/1710331

Title:
  package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade:
  package libc6-dbg:amd64 is not ready for configuration  cannot
  configure (current status 'half-installed')

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

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

[Bug 1710331] Re: package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade: package libc6-dbg:amd64 is not ready for configuration cannot configure (current status 'half-installed')

2017-08-12 Thread SANJIB DEB ROY
** Description changed:

  ubuntu, updation error
  
  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libc6-dbg:amd64 2.23-0ubuntu9
  ProcVersionSignature: Ubuntu 4.4.0-89.112-generic 4.4.76
  Uname: Linux 4.4.0-89-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.10
  Architecture: amd64
  Date: Sat Aug 12 11:36:32 2017
  Dependencies:
-  gcc-6-base 6.0.1-0ubuntu1
-  libc6 2.23-0ubuntu9
-  libgcc1 1:6.0.1-0ubuntu1
+  gcc-6-base 6.0.1-0ubuntu1
+  libc6 2.23-0ubuntu9
+  libgcc1 1:6.0.1-0ubuntu1
  DuplicateSignature:
-  package:libc6-dbg:amd64:2.23-0ubuntu9
-  Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
-  dpkg: error processing package libc6-dbg:amd64 (--configure):
-   package libc6-dbg:amd64 is not ready for configuration
+  package:libc6-dbg:amd64:2.23-0ubuntu9
+  Processing triggers for libglib2.0-0:amd64 (2.48.2-0ubuntu1) ...
+  dpkg: error processing package libc6-dbg:amd64 (--configure):
+   package libc6-dbg:amd64 is not ready for configuration
  ErrorMessage: package libc6-dbg:amd64 is not ready for configuration  cannot 
configure (current status 'half-installed')
  InstallationDate: Installed on 2016-02-11 (547 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  RelatedPackageVersions:
-  dpkg 1.18.4ubuntu1.2
-  apt  1.2.24
+  dpkg 1.18.4ubuntu1.2
+  apt  1.2.24
  SourcePackage: glibc
  Title: package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade: 
package libc6-dbg:amd64 is not ready for configuration  cannot configure 
(current status 'half-installed')
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  package libc6-dbg:amd64 2.23-0ubuntu9 failed to install/upgrade:
  package libc6-dbg:amd64 is not ready for configuration  cannot
  configure (current status 'half-installed')

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

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

[Bug 1590543] Re: A2DP configuration does not work on Kubuntu 16.04 with stereo speaker

2017-05-15 Thread Hervé Le Roy
Until this is fixed in a future release of Kubuntu, this gist does the
job: https://gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae

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

Title:
  A2DP configuration does not work on Kubuntu 16.04 with stereo speaker

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

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


[Bug 1454668] Re: Failed to upgrade/reinstall libreoffice-common

2017-04-25 Thread Jean-Francis Roy
I had the same issue with different packages (namely texlive-related
packages) during a distribution update from 16.10 to 17.04, resulting in
an incomplete upgrade. After a couple hours of trying to fix the issues,
I finally suspected Sophos, and disabling/enabling on-access scanning
worked around the problem.

This bug is not only related to libreoffice-commons but to other
packages as well, but unfortunately I didn't note what packages they
were.

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

Title:
  Failed to upgrade/reinstall libreoffice-common

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

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


[Bug 1683996] [NEW] package mysql-server-5.7 5.7.17-0ubuntu0.16.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-04-18 Thread prahllad roy
Public bug reported:

one dialog are open continuously,

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mysql-server-5.7 5.7.17-0ubuntu0.16.04.2
ProcVersionSignature: Ubuntu 4.8.0-46.49~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-46-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Mon Apr 17 11:13:36 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2017-04-13 (5 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
Logs.var.log.daemon.log:
 
MySQLConf.etc.mysql.conf.d.mysql.cnf: [mysql]
MySQLConf.etc.mysql.conf.d.mysqldump.cnf:
 [mysqldump]
 quick
 quote-names
 max_allowed_packet = 16M
MySQLConf.etc.mysql.mysql.conf.d.mysqld_safe_syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['ib_logfile1', 'mysql', 'performance_schema', 
'debian-5.7.flag', 'ibdata1', 'mysql_upgrade_info', 'ib_buffer_pool', 
'ib_logfile0', 'auto.cnf', 'sys', 'ibtmp1']
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.8.0-46-generic 
root=UUID=9ce3c9c2-1a08-4a70-8fb1-2043b02dc46c ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: mysql-5.7
Title: package mysql-server-5.7 5.7.17-0ubuntu0.16.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-5.7 (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  package mysql-server-5.7 5.7.17-0ubuntu0.16.04.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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


[Bug 1680241] [NEW] package linux-image-extra-4.8.0-45-generic 4.8.0-45.48~16.04.1 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2017-04-05 Thread Biplab Roy
Public bug reported:

Cannot upgrade or remove kernels.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-extra-4.8.0-45-generic 4.8.0-45.48~16.04.1
Uname: Linux 4.10.1-041001-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Thu Apr  6 01:55:24 2017
ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: initramfs-tools
Title: package linux-image-extra-4.8.0-45-generic 4.8.0-45.48~16.04.1 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package linux-image-extra-4.8.0-45-generic 4.8.0-45.48~16.04.1 failed
  to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

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

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


[Bug 1638842] Re: network-manager does not manage ethernet and bluetooth interfaces when Ubuntu 16.10 is installed using chroot/netboot method

2017-03-21 Thread Miguel Rubio-Roy
*** This bug is a duplicate of bug 1658921 ***
https://bugs.launchpad.net/bugs/1658921

Same problem after an upgrade from 16.04 to 16.10 via "do-release-upgrade". 
Ethernet and WiFi not managed.
Solved it creating blank file at 
/etc/NetworkManager/conf.d/10-globally-managed-devices.conf
as per comment #6

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

Title:
  network-manager does not manage ethernet and bluetooth interfaces when
  Ubuntu 16.10 is installed using chroot/netboot method

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

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


Re: [Bug 1620483] Re: package virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-01-18 Thread Roy Bettle
I've been able to get the correct extension pack to manually install.
There's some interesting USB wierdness afterwards where I had to downshift
to USB1, but that's the only thing I've noticed so far.

On Wed, Jan 18, 2017 at 8:11 AM, lewis pusey <1620...@bugs.launchpad.net>
wrote:

> So the latest virtualbox and the virtualbox ext pack are a version
> mismatch.
> I'm running 64 bit virtual box latest so the ext pack is out of date.
> You can't run a virtual appliance without it.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1620483
>
> Title:
>   package virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1 failed to
>   install/upgrade: subprocess installed post-installation script
>   returned error exit status 1
>
> Status in virtualbox-ext-pack package in Ubuntu:
>   Expired
>
> Bug description:
>   package virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1 failed to
>   install/upgrade: subprocess installed post-installation script
>   returned error exit status 1
>
>   ProblemType: Package
>   DistroRelease: Ubuntu 16.04
>   Package: virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1
>   ProcVersionSignature: Ubuntu 4.4.0-36.55-generic 4.4.16
>   Uname: Linux 4.4.0-36-generic x86_64
>   ApportVersion: 2.20.1-0ubuntu2.1
>   AptOrdering:
>virtualbox-ext-pack: Install
>virtualbox-ext-pack: Configure
>NULL: ConfigurePending
>   Architecture: amd64
>   Date: Tue Sep  6 07:55:25 2016
>   ErrorMessage: subprocess installed post-installation script returned
> error exit status 1
>   InstallationDate: Installed on 2016-08-26 (10 days ago)
>   InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64
> (20160719)
>   PackageArchitecture: all
>   RelatedPackageVersions:
>dpkg 1.18.4ubuntu1.1
>apt  1.2.12~ubuntu16.04.1
>   SourcePackage: virtualbox-ext-pack
>   Title: package virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1 failed to
> install/upgrade: subprocess installed post-installation script returned
> error exit status 1
>   UpgradeStatus: No upgrade log present (probably fresh install)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/virtualbox-ext-
> pack/+bug/1620483/+subscriptions
>


--

--Roy


Roy Bettle
roy.bet...@gmail.com

(949) 201-9762 Cell

"Opportunity is missed by most people because it comes dressed in overalls
and looks like work."
-- Thomas Edison

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

Title:
  package virtualbox-ext-pack 5.0.24-0ubuntu1.16.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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


  1   2   3   4   5   6   7   8   9   10   >