[Bug 1421760] Re: /usr/bin/env hangs when a variable is set

2022-05-05 Thread Milan Hauth
workaround: add -S

#! /usr/bin/env -S A=B python
import os; print(os.environ["A"])


why?

shebangs have the limitation (or feature)
that you can pass only one argument

so

#! /usr/bin/env A=B python

is parsed as

argv[0] = "/usr/bin/env"
argv[1] = "A=B python"


you can see this with

#! /usr/bin/printf A=B '(%s) ' 1 2 3 4

which prints

A=B '(./test.sh) ' 1 2 3 4

and

#! /usr/bin/env -S printf '(%s) ' 1 2 3 4

prints

(1) (2) (3) (4) (./test.sh)



now the question is,
why does `argv[1] = "A=B python"` lead to infinite recursion?

expected result:

/usr/bin/env: ‘A=B python’: No such file or directory
/usr/bin/env: use -[v]S to pass options in shebang lines

just like

#! /usr/bin/env hello world

throws

/usr/bin/env: ‘hello world’: No such file or directory
/usr/bin/env: use -[v]S to pass options in shebang lines

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

Title:
  /usr/bin/env hangs when a variable is set

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


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

[Bug 1968135] Re: BTRFS root subvolume @ mounted always as readonly (... ro rootflags=subvol=@ ...) on Jammy beta

2022-04-27 Thread Milan Ulej
The ro flag should not be on booted system, unfortunately this bug
passed to the release. This caused jammy LTS unusable if rootfs is on
BTRFS (without workaround above).

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

Title:
  BTRFS root subvolume @ mounted always as readonly (... ro
  rootflags=subvol=@ ...) on Jammy beta

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


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

[Bug 1968094] Re: BTRFS root subvolume @ mounted always as readonly (... ro rootflags=subvol=@ ...) on Jammy

2022-04-07 Thread Milan Ulej
*** This bug is a duplicate of bug 1968135 ***
https://bugs.launchpad.net/bugs/1968135

** This bug has been marked a duplicate of bug 1968135
   BTRFS root subvolume @ mounted always as readonly (... ro rootflags=subvol=@ 
...) on Jammy beta

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

Title:
  BTRFS root subvolume @ mounted always as readonly (... ro
  rootflags=subvol=@ ...) on Jammy

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


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

[Bug 1968135] [NEW] BTRFS root subvolume @ mounted always as readonly (... ro rootflags=subvol=@ ...) on Jammy beta

2022-04-07 Thread Milan Ulej
Public bug reported:

= Description =
On Ubuntu Jammy Jellyfish (beta 220330) where root (/) is installed on single 
BTRFS formated partition (no LVM, no separate /boot), then root subvolume 
(subvol=@) is always mounted as read only. There is a kernel flag (ro) appended 
to GRUB configuration file /boot/grub/grub.cfg created by script 
/usr/sbin/update-grub during every kernel update. Only home subvolume (@home) 
remains mounted as rw according to fstab which is correct. Read-only mounted 
root (/) leads to many issues.
Image: Jammy Beta (220330)

= Steps to Reproduce =
1. Install Jammy Beta (220330) on EFI PC x86_64 GPT partitioning and select FS 
root (/) to one single BTRFS partition (where subvolumes @ and @home are 
created). There are only 3 partitions EFI system partition (/dev/sda1), one 
swap (sda2), and one BTRFS formated (/dev/sda3) for FS root (/).
2. Launch the kernel via the default grub entry (or look for kernel boot 
parameters pressing ) - root subvolume (@) is mounted as readonly.

= Expected Results =
root / should be mounted as rw (mount -v | grep @), there should be no (ro) 
flag in /proc/cmdline for FS root. It is possible to temporarily avoid this 
behaviour in /etc/defaul/grub:
GRUB_CMDLINE_LINUX_DEFAULT="rw quiet splash"
Then there still remains "ro" kernel parameter which is followed by "rw quiet 
splash" at the end.
 
= Actual Results =
in grub.cfg:
linux /@/boot/vmlinuz-5.15.0-23-generic root=UUID=--... 
rootflags=subvol=@ ro quiet splash $vt_handoff
in /proc/cmdline:
BOOT_IMAGE=/@/boot/vmlinuz-5.15.0-25-generic 
root=UUID=981dd6de-02fc-41a9-9e2a-09dbbc776b2b ro rootflags=subvol=@ quiet 
splash vt.handoff=7

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


** Tags: jammy

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

Title:
  BTRFS root subvolume @ mounted always as readonly (... ro
  rootflags=subvol=@ ...) on Jammy beta

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


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

[Bug 1968094] [NEW] BTRFS root subvolume @ mounted always as readonly (... ro rootflags=subvol=@ ...) on Jammy

2022-04-06 Thread Milan Ulej
Public bug reported:

= Description =
On Ubuntu Jammy Jellyfish (beta 220330) installed fully on BTRFS filesystem, 
root subvolume (subvol=@) is always mounted as read only. There is a kernel 
flag (ro) appended to GRUB configuration file /boot/grub/grub.cfg created by 
script /usr/sbin/update-grub during every kernel update. Only home subvolume 
(@home) is actually mounted as rw according to fstab which is correct.
Image: Jammy Beta (220330)

= Steps to Reproduce =
1. Install Jammy Beta (220330) on PC w. EFI and select FS root (/) to BTRFS 
(subvolumes @ and @home are created)
2. Launch the kernel via the default grub entry

= Expected Results =
root / should be mounted as rw (mount -v | grep @), there should be no (ro) 
flag on /proc/cmdline

= Actual Results =
in grub.cfg:
linux   /@/boot/vmlinuz-5.15.0-23-generic root=UUID=--... 
rootflags=subvol=@ ro quiet splash $vt_handoff
in /proc/cmdline:
BOOT_IMAGE=/@/boot/vmlinuz-5.15.0-25-generic 
root=UUID=981dd6de-02fc-41a9-9e2a-09dbbc776b2b ro rootflags=subvol=@ quiet 
splash vt.handoff=7

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


** Tags: jammy

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

Title:
  BTRFS root subvolume @ mounted always as readonly (... ro
  rootflags=subvol=@ ...) on Jammy

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


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

[Bug 1930103] Re: isc-dhcp-server overwrites /etc/default/isc-dhcp-server during update

2021-06-02 Thread Milan Kerslager
I had a working setup and it was broken by update.
The config file was modified/recreated/whatever.
I don't know what was exactly written in this file before update and no backup 
was created.

In any case, update must not break working config, especially on LTS
version.

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

Title:
  isc-dhcp-server overwrites /etc/default/isc-dhcp-server during update

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

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

[Bug 1930103] [NEW] isc-dhcp-server overwrites /etc/default/isc-dhcp-server during update

2021-05-28 Thread Milan Kerslager
Public bug reported:

Today unattended upgrade of ISC DHCPD overwrite config file /etc/default
/isc-dhcp-server and set wrong interface where daemon have to listen
(eno2 instead of br0 as was set before update).

I see no backup file of original config file so I had to investigate
where the problem was.

Update have to never overwrite config file and throw away previous
version.

/var/log/apt/history.log:
Start-Date: 2021-05-28  06:17:41
Commandline: /usr/bin/unattended-upgrade
Upgrade: isc-dhcp-server:amd64 (4.4.1-2.1ubuntu5, 4.4.1-2.1ubuntu5.20.04.2)
End-Date: 2021-05-28  06:17:47

root@linux:~# ls -l /etc/default/isc-dhcp-server
-rw-r--r-- 1 root root 629 May 28 06:17 /etc/default/isc-dhcp-server

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

** Description changed:

  Today unattended upgrade of ISC DHCPD overwrite config file /etc/default
  /isc-dhcp-server and set wrong interface where daemon have to listen
  (eno2 instead of br0 as was set before update).
  
  I see no backup file of original config file so I had to investigate
  where the problem was.
  
  Update have to never overwrite config file and throw away previous
  version.
  
  /var/log/apt/history.log:
  Start-Date: 2021-05-28  06:17:41
  Commandline: /usr/bin/unattended-upgrade
  Upgrade: isc-dhcp-server:amd64 (4.4.1-2.1ubuntu5, 4.4.1-2.1ubuntu5.20.04.2)
  End-Date: 2021-05-28  06:17:47
+ 
+ root@linux:~# ls -l /etc/default/isc-dhcp-server
+ -rw-r--r-- 1 root root 629 May 28 06:17 /etc/default/isc-dhcp-server

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

Title:
  isc-dhcp-server overwrites /etc/default/isc-dhcp-server during update

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

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

[Bug 1920076] [NEW] critical error grub file

2021-03-18 Thread Milan Vondrak
Public bug reported:

critical error grub file

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
CasperMD5CheckMismatches: ./boot/grub/efi.img
CasperMD5CheckResult: fail
CasperVersion: 1.445.1
CurrentDesktop: ubuntu:GNOME
Date: Thu Mar 18 23:20:50 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 (20210209.1)
ProcEnviron:
 LANGUAGE=cs_CZ.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=cs_CZ.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  critical error grub file

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

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

[Bug 1918739] [NEW] Gnome-shell got stuck and produces a plethora of error log messages to syslog file

2021-03-11 Thread Milan P
Public bug reported:

This is the message in syslog file:

мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:43 hpz gnome-shell[2689]: == Stack trace for context 
0x5563584e4900 ==
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz systemd-journald[377]: Suppressed 496051 messages from 
user@1000.service
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().
мар 11 09:34:44 hpz gnome-shell[2689]: Attempting to run a JS callback during 
garbage collection. This is most likely caused by destroying a Clutter actor or 
GTK widget with ::destroy signal connected, or using the destroy(), dispose(), 
or remove() vfuncs. Because it would crash the application, it has been blocked.
мар 11 09:34:44 hpz gnome-shell[2689]: The offending callback was SourceFunc().

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
ProcVersionSignature: Ubuntu 5.8.0-44.50~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-44-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Thu Mar 11 23:17:11 2021
DisplayManager: gdm3
InstallationDate: Installed on 2020-10-17 (145 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
RelatedPackageVersions: mutter-common 3.36.7+git20201123-0.20.04.1
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal

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

Title:
  Gnome-shell got stuck and produces a plethora of error log messages to
  syslog file

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

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

[Bug 1909729] ProcEnviron.txt

2020-12-30 Thread Francisco Milan
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1909729/+attachment/5448203/+files/ProcEnviron.txt

** Description changed:

  Hi there,
  
     After running "sudo apt upgrade" in a Terminal window I noticed that
  the remaining time for 1 minute is displayed as "60s", I think to keep
  consistency this would need to be displayed as "1min 0s" since at some
  point I also saw the remaining time displayed as "5min 0s" (refer to the
  attached images). Going even further I would recommend removing the "0s"
- from the remaining time when applicable, e.g. displaying only "5min"
- instead of "5min 0s", "1min" instead of "1min 0s" and so on.
+ portion from the remaining time when applicable, e.g. displaying only
+ "5min" instead of "5min 0s", "1min" instead of "1min 0s" and so on.
  
  I'm using Ubuntu 20.04 (Focal Fossa).
  
  Best regards,
  
  Paco Milán.
- --- 
+ ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-06 (299 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: apt 2.0.2ubuntu0.1
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Tags:  focal
  Uname: Linux 5.4.0-54-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-05-10 (235 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo vboxsf
  _MarkForUpload: True

** Description changed:

  Hi there,
  
     After running "sudo apt upgrade" in a Terminal window I noticed that
  the remaining time for 1 minute is displayed as "60s", I think to keep
  consistency this would need to be displayed as "1min 0s" since at some
  point I also saw the remaining time displayed as "5min 0s" (refer to the
  attached images). Going even further I would recommend removing the "0s"
  portion from the remaining time when applicable, e.g. displaying only
- "5min" instead of "5min 0s", "1min" instead of "1min 0s" and so on.
+ "5min" instead of "5min 0s", "1min" instead of "1min 0s", and so on.
  
  I'm using Ubuntu 20.04 (Focal Fossa).
  
  Best regards,
  
  Paco Milán.
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.12
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-06 (299 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: apt 2.0.2ubuntu0.1
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
  Tags:  focal
  Uname: Linux 5.4.0-54-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-05-10 (235 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo vboxsf
  _MarkForUpload: True

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] ProcCpuinfoMinimal.txt

2020-12-30 Thread Francisco Milan
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1909729/+attachment/5448202/+files/ProcCpuinfoMinimal.txt

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] Re: Remaining time while running "sudo apt upgrade"

2020-12-30 Thread Francisco Milan
apport information

** Tags added: apport-collected focal

** Description changed:

  Hi there,
  
     After running "sudo apt upgrade" in a Terminal window I noticed that
  the remaining time for 1 minute is displayed as "60s", I think to keep
  consistency this would need to be displayed as "1min 0s" since at some
  point I also saw the remaining time displayed as "5min 0s" (refer to the
  attached images). Going even further I would recommend removing the "0s"
  from the remaining time when applicable, e.g. displaying only "5min"
  instead of "5min 0s", "1min" instead of "1min 0s" and so on.
  
  I'm using Ubuntu 20.04 (Focal Fossa).
  
  Best regards,
  
  Paco Milán.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.12
+ Architecture: amd64
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 20.04
+ InstallationDate: Installed on 2020-03-06 (299 days ago)
+ InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
+ Package: apt 2.0.2ubuntu0.1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65
+ Tags:  focal
+ Uname: Linux 5.4.0-54-generic x86_64
+ UpgradeStatus: Upgraded to focal on 2020-05-10 (235 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo vboxsf
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1909729/+attachment/5448201/+files/Dependencies.txt

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] Re: Remaining time while running "sudo apt upgrade"

2020-12-30 Thread Francisco Milan
** Attachment added: "Ubuntu version.jpg"
   
https://bugs.launchpad.net/ubuntu/+bug/1909729/+attachment/5448175/+files/Ubuntu%20version.jpg

** Description changed:

  Hi there,
  
-After running "sudo apt upgrade" in a Terminal window I noticed that
- the remaining time for 1 minute is displayed as "60 s", I think to keep
+    After running "sudo apt upgrade" in a Terminal window I noticed that
+ the remaining time for 1 minute is displayed as "60s", I think to keep
  consistency this would need to be displayed as "1m 0s" since at some
  point I also saw the remaining time displayed as "5min 0s" (refer to the
  attached images). Going even further I would recommend removing the "0s"
  from the remaining time when applicable, e.g. displaying only "5min"
  instead of "5min 0s", "1min" instead of "1min 0s" and so on.
  
  I'm using Ubuntu 20.04 (Focal Fossa).
  
  Best regards,
  
  Paco Milán.

** Description changed:

  Hi there,
  
     After running "sudo apt upgrade" in a Terminal window I noticed that
  the remaining time for 1 minute is displayed as "60s", I think to keep
- consistency this would need to be displayed as "1m 0s" since at some
+ consistency this would need to be displayed as "1min 0s" since at some
  point I also saw the remaining time displayed as "5min 0s" (refer to the
  attached images). Going even further I would recommend removing the "0s"
  from the remaining time when applicable, e.g. displaying only "5min"
  instead of "5min 0s", "1min" instead of "1min 0s" and so on.
  
  I'm using Ubuntu 20.04 (Focal Fossa).
  
  Best regards,
  
  Paco Milán.

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] Re: Remaining time while running "sudo apt upgrade"

2020-12-30 Thread Francisco Milan
** Attachment added: "5min 0s.jpg"
   
https://bugs.launchpad.net/ubuntu/+bug/1909729/+attachment/5448171/+files/5min%200s.jpg

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] Re: Remaining time while running "sudo apt upgrade"

2020-12-30 Thread Francisco Milan
** Attachment added: "60s.jpg"
   
https://bugs.launchpad.net/ubuntu/+bug/1909729/+attachment/5448173/+files/60s.jpg

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

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1909729] [NEW] Remaining time while running "sudo apt upgrade"

2020-12-30 Thread Francisco Milan
Public bug reported:

Hi there,

   After running "sudo apt upgrade" in a Terminal window I noticed that
the remaining time for 1 minute is displayed as "60s", I think to keep
consistency this would need to be displayed as "1min 0s" since at some
point I also saw the remaining time displayed as "5min 0s" (refer to the
attached images). Going even further I would recommend removing the "0s"
from the remaining time when applicable, e.g. displaying only "5min"
instead of "5min 0s", "1min" instead of "1min 0s" and so on.

I'm using Ubuntu 20.04 (Focal Fossa).

Best regards,

Paco Milán.

** Affects: apt (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/1909729

Title:
  Remaining time while running "sudo apt upgrade"

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

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

[Bug 1901377] Re: Incorrect label in Software Updater

2020-10-31 Thread Francisco Milan
Hi Timo,

Shouldn't this fix be accepted into focal-proposed instead?

As you can see in the attached image, I would be able to test it with:
> "Software & Updates"
> "Developer Options"
> "Pre-released updates (focal-proposed)"

Thanks,

Paco Milan.

** Attachment added: "Capture.PNG"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1901377/+attachment/5429919/+files/Capture.PNG

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

Title:
  Incorrect label in Software Updater

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

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

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Tags added: minisap

** Tags added: gorilla groovy

** Tags added: sybase

** Tags added: 20.10

** Tags removed: gorilla groovy
** Tags added: groovygorilla

** Tags removed: groovygorilla
** Tags added: groovy-gorilla

** Tags added: sap

** Tags added: virtualbox virtualmachine

** Tags added: upgrade

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Attachment added: "Image 01 - startsap_D00.log"
   
https://bugs.launchpad.net/ubuntu/+source/minisapserver/+bug/1901945/+attachment/5428684/+files/Image%2001%20-%20startsap_D00.log

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Attachment added: "Image 02.png"
   
https://bugs.launchpad.net/ubuntu/+source/minisapserver/+bug/1901945/+attachment/5428685/+files/Image%2002.png

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1901945] [NEW] Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
Public bug reported:

Hi there,

I think I found an issue and I wonder if you can have a look at
this.

Background:
I have Focal Fossa on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can log in to the SAP 
system, I'm also able to restart the sap server as many times as I want and I 
can also log in to SAP without any problem (see the attached file "Image 
01.png" and related log files).

Issue:
After restarting the virtual machine I'm not able to start the sap server 
anymore (see the attached file "Image 02.png" and related log file).

I don't know the specific package in Ubuntu that has the issue, so I'm
not sure if I'm filing this bug in the correct area, I started using
this tool to report bugs recently (this is just the second Ubuntu issue
I have reported ever).

Please let me know in case you need any additional information to fix
this issue.

Thanks a lot,

Francisco Milan.

"Installing SAP NetWeaver Developer Edition on an Ubuntu desktop VM – the 
non-concise guide"
https://blogs.sap.com/2018/04/05/installing-sap-netweaver-developer-edition-on-an-ubuntu-desktop-vm-the-non-concise-guide/

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

** Attachment added: "Image 01.png"
   
https://bugs.launchpad.net/bugs/1901945/+attachment/5428674/+files/Image%2001.png

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Attachment added: "Image 02 - startdb.log"
   
https://bugs.launchpad.net/ubuntu/+source/minisapserver/+bug/1901945/+attachment/5428686/+files/Image%2002%20-%20startdb.log

** Description changed:

  Hi there,
  
- I think I found an issue and I wonder if you can have a look at
+ I think I found an issue and I wonder if you can have a look at
  this.
  
  Background:
- I have Ubuntu 20.04 on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after installing 
Ubuntu 20.10 I'm able to start the sap server and I can to login to SAP system, 
I'm also able to restart the sap server as many times as I want and I can also 
login to SAP without any problem. (see the attached file "Image 01.png" and 
related log files).
+ I have Ubuntu 20.04 on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can to login to SAP 
system, I'm also able to restart the sap server as many times as I want and I 
can also login to SAP without any problem. (see the attached file "Image 
01.png" and related log files).
  
  Issue:
-  After restarting the virtual machine I'm not able to start the sap server 
anymore (see the attached file "Image 02.png" and related log file).
+  After restarting the virtual machine I'm not able to start the sap server 
anymore (see the attached file "Image 02.png" and related log file).
  
- 
- I don't know the specific package in Ubuntu that has the issue, so I'm not 
sure if I'm filing this bug in the correct area, I starting using this tool to 
report bugs recently (this is just the second Ubuntu issue I have reported 
ever).
+ I don't know the specific package in Ubuntu that has the issue, so I'm
+ not sure if I'm filing this bug in the correct area, I starting using
+ this tool to report bugs recently (this is just the second Ubuntu issue
+ I have reported ever).
  
  Please let me know in case you need any additional information to fix
  this issue.
- 
  
  Thanks a lot,
  
  Francisco Milan.
  
  "Installing SAP NetWeaver Developer Edition on an Ubuntu desktop VM – the 
non-concise guide"
  
https://blogs.sap.com/2018/04/05/installing-sap-netweaver-developer-edition-on-an-ubuntu-desktop-vm-the-non-concise-guide/

** Description changed:

  Hi there,
  
  I think I found an issue and I wonder if you can have a look at
  this.
  
  Background:
- I have Ubuntu 20.04 on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can to login to SAP 
system, I'm also able to restart the sap server as many times as I want and I 
can also login to SAP without any problem. (see the attached file "Image 
01.png" and related log files).
+ I have Focal Fossa on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can to login to SAP 
system, I'm also able to restart the sap server as many times as I want and I 
can also login to SAP without any problem. (see the attached file "Image 
01.png" and related log files).
  
  Issue:
   After restarting the virtual machine I'm not able to start the sap server 
anymore (see the attached file "Image 02.png" and related log file).
  
  I don't know the specific package in Ubuntu that has the issue, so I'm
  not sure if I'm filing this bug in the correct area, I starting using
  this tool to report bugs recently (this is just the second Ubuntu issue
  I have reported ever).
  
  Please let me know in case you need any additional information to fix
  this issue.
  
  Thanks a lot,
  
  Francisco Milan.
  
  "Installing SAP NetWeaver Developer Edition on an Ubuntu desktop VM – the 
non-concise guide"
  
https://blogs.sap.com/2018/04/05/installing-sap-netweaver-developer-edition-on-an-ubuntu-desktop-vm-the-non-concise-guide/

** Description changed:

  Hi there,
  
  I think I found an issue and I wonder if you can have a look at
  this.
  
  Background:
- I have Focal Fossa on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can to login to SAP 
system, I'm also able to restart the sap server as many times as I want and I 
can also login to SAP without any problem. (see the attached file "Image 
01.png" and related log files).
+ I have Focal Fossa on VirtualBox and I use it to run SAP NetWeaver Developer 
Edition (refer to the link at the bottom of this message), after upgrading to 
Groovy Gorilla I'm able to start the sap server and I can logi

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Attachment added: "Image 01 - startsap_ASCS01.log"
   
https://bugs.launchpad.net/ubuntu/+source/minisapserver/+bug/1901945/+attachment/5428683/+files/Image%2001%20-%20startsap_ASCS01.log

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1901945] Re: Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting Virtual machine.

2020-10-28 Thread Francisco Milan
** Attachment added: "Image 01 - startdb.log"
   
https://bugs.launchpad.net/ubuntu/+source/minisapserver/+bug/1901945/+attachment/5428675/+files/Image%2001%20-%20startdb.log

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

Title:
  Upgraded to Ubuntu 20.10. Can't start Mini SAP server after restarting
  Virtual machine.

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

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

[Bug 1897703] [NEW] An unresolvable problem occurred while calculating the upgrade

2020-09-29 Thread Milan Hirapra
Public bug reported:

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'.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.38
ProcVersionSignature: Ubuntu 4.15.0-118.119-generic 4.15.18
Uname: Linux 4.15.0-118-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.17
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Tue Sep 29 14:29:13 2020
InstallationDate: Installed on 2018-11-13 (686 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-09-29 (0 days ago)
VarLogDistupgradeTermlog:

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


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

** Attachment added: "screenshot-newtab-2020.09.29-14_36_58.png"
   
https://bugs.launchpad.net/bugs/1897703/+attachment/5415203/+files/screenshot-newtab-2020.09.29-14_36_58.png

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

Title:
  An unresolvable problem occurred while calculating the upgrade

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

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

[Bug 1892488] [NEW] package rsyslog 8.2001.0-1ubuntu1.1 failed to install/upgrade: balík je ve velmi nekonzistentním stavu - před pokusem o konfiguraci by měl by být přeinstalován.

2020-08-21 Thread Milan Hybner
Public bug reported:

?

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: rsyslog 8.2001.0-1ubuntu1.1
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
CasperMD5CheckResult: skip
Date: Fri Aug 21 12:48:05 2020
ErrorMessage: balík je ve velmi nekonzistentním stavu - před pokusem o 
konfiguraci by měl by být přeinstalován.
InstallationDate: Installed on 2020-08-21 (0 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.2, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.1
SourcePackage: rsyslog
Title: package rsyslog 8.2001.0-1ubuntu1.1 failed to install/upgrade: balík je 
ve velmi nekonzistentním stavu - před pokusem o konfiguraci by měl by být 
přeinstalován.
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: rsyslog (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/1892488

Title:
  package rsyslog 8.2001.0-1ubuntu1.1 failed to install/upgrade: balík
  je ve velmi nekonzistentním stavu - před pokusem o konfiguraci by měl
  by být přeinstalován.

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

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

[Bug 1856608] Re: [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

2020-08-03 Thread Milan Bulat
I can also confirm that upgrading to kernel 5.8.0 didn't fix the
problem.

@dannf: I have tried three different USB cables with exactly the same
results. I'm pretty sure the problem is in the USB kernel drivers.

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

Title:
  [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is
  bad?

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

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

[Bug 1856608] Re: [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

2020-08-03 Thread Milan Bulat
I can also confirm that the bug is not fixed, and I can also confirm two
Bamoqi's posts - I'm testing it on various mobile phones and it's
messing up my development workflow as phones sometimes do not connect
when attached to USB cable.

I have tried three different USB-A -> USB-C cables from various
manufacturers, and they are all reported as bad by the kernel.

Very annoying bug.

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

Title:
  [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is
  bad?

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

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

[Bug 39315] Re: Keyboard random repeat and dropped key presses

2020-04-18 Thread Milan Kragujevic
This is a horrible problem that has been happening for years on multiple
devices, latest of which is HP 15-db1041nm.

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

Title:
  Keyboard random repeat and dropped key presses

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.15/+bug/39315/+subscriptions

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

[Bug 1871883] [NEW] boot loader crashes on installation

2020-04-09 Thread Milan Rocher
Public bug reported:

I'm trying to dual-boot ubuntu 19.10 and windows 10. I created three partitions 
on my sdb for "/", "/home" and "swap" and then created a "systemgrub" partition 
on my sda as it was requested to do so.
The installatiob goes well until the last bit where grub starts to install. It 
gives me a fatal error and a window pops up with three options: choose new 
location for grub, continue without grub, or cancel installation. I picked 
continue without grub and the installer gave a message that stated that it 
crashed and now I'm here.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: ubiquity 19.10.21 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
Uname: Linux 5.3.0-18-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu8
Architecture: amd64
CasperVersion: 1.427
CurrentDesktop: ubuntu:GNOME
Date: Thu Apr  9 18:51:00 2020
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed initrd=/casper/initrd quiet 
splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
ProcEnviron:
 LANGUAGE=en_ZA.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_ZA.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug eoan ubiquity-19.10.21 ubuntu

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

Title:
  boot loader crashes on installation

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

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

[Bug 1848854] Re: Filezilla start after 25 seconds delay

2020-02-09 Thread Milan Kragujevic
I can confirm that installing `appmenu-gtk2-module` solves this problem.

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-12-11 Thread Milan Kragujevic
I have attached dmesg | grep psmouse before, this is full dmesg.
Currently my laptop's log is being spammed by Realtek WiFi problems, so
it's pretty short and includes only a few psmouse parts.

** Attachment added: "dmesg_2019-12-11_11-28.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1854329/+attachment/5311721/+files/dmesg_2019-12-11_11-28.log

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-12-07 Thread Milan Kragujevic
No, it does not help.

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 381017]

2019-12-02 Thread Milan Knizek
Wow, after several years of not using TB I have recently migrated from
Evolution Mail only to find out this stuff does not work yet. What a
pity. (Arch Linux, MATE desktop.)

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

Title:
  Cannot drag attachment from mail attachment pane to desktop

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

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

[Bug 1854329] ProcEnviron.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308411/+files/ProcEnviron.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] ProcCpuinfoMinimal.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308410/+files/ProcCpuinfoMinimal.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] ProcInterrupts.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308413/+files/ProcInterrupts.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] WifiSyslog.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308419/+files/WifiSyslog.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-11-28 Thread Milan Kragujevic
Correction: I have booted using Ubuntu kernel and attached new apport
log info.

Linux version 5.3.0-23-generic (buildd@lgw01-amd64-002) (gcc version
9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2)) #25-Ubuntu SMP Tue Nov 12
09:22:33 UTC 2019

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] UdevDb.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1854329/+attachment/5308418/+files/UdevDb.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] ProcCpuinfo.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308409/+files/ProcCpuinfo.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] ProcModules.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308415/+files/ProcModules.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-11-28 Thread Milan Kragujevic
apport information

** Description changed:

  I have a problem with the touchpad on HP 15-db1041nm (AMD Ryzen 5
  3500U). The touchpad freezes for a few seconds then resumes working.
  
  There are also freezes when typing where letters repeat, so instead of the 
letter r i get r. 
  This may be a different and unrelated bug which I will open, but I'm 
mentioning as the built-in keyboard could be attached to the same bus?
  
  This is similar to bug #1803171, but on HP. I was instructed to report a
  new bug.
  
  Attached is dmesg | grep psmouse showing the sync problems that appear.
  
  Description:  Ubuntu 19.10
  Release:  19.10
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu8.2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 19.10
  InstallationDate: Installed on 2019-10-28 (30 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  Package: linux (not installed)
  Tags:  eoan
  Uname: Linux 5.4.0-050400-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
  _MarkForUpload: True
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu8.2
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  milan   951 F pulseaudio
+  /dev/snd/controlC0:  milan   951 F pulseaudio
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 19.10
+ InstallationDate: Installed on 2019-10-28 (30 days ago)
+ InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
+ IwConfig:
+  lono wireless extensions.
+  
+  eno1  no wireless extensions.
+ MachineType: HP HP Laptop 15-db1xxx
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-23-generic 
root=UUID=c6d5dded-989d-4d10-a52c-4e53aaaba9d2 ro mitigations=off quiet splash 
mitigations=off vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
+ RelatedPackageVersions:
+  linux-restricted-modules-5.3.0-23-generic N/A
+  linux-backports-modules-5.3.0-23-generic  N/A
+  linux-firmware1.183.2
+ RfKill:
+  
+ Tags:  eoan
+ Uname: Linux 5.3.0-23-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
+ _MarkForUpload: True
+ dmi.bios.date: 06/27/2019
+ dmi.bios.vendor: Insyde
+ dmi.bios.version: F.12
+ dmi.board.asset.tag: Type2 - Board Asset Tag
+ dmi.board.name: 85EA
+ dmi.board.vendor: HP
+ dmi.board.version: 51.16
+ dmi.chassis.asset.tag: Chassis Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: HP
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnInsyde:bvrF.12:bd06/27/2019:svnHP:pnHPLaptop15-db1xxx:pvrType1ProductConfigId:rvnHP:rn85EA:rvr51.16:cvnHP:ct10:cvrChassisVersion:
+ dmi.product.family: 103C_5335KV HP Notebook
+ dmi.product.name: HP Laptop 15-db1xxx
+ dmi.product.sku: 6VK24EA#BED
+ dmi.product.version: Type1ProductConfigId
+ dmi.sys.vendor: HP

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308404/+files/AlsaInfo.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] PulseList.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308417/+files/PulseList.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] CurrentDmesg.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308406/+files/CurrentDmesg.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Lspci.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1854329/+attachment/5308407/+files/Lspci.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Lsusb.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1854329/+attachment/5308408/+files/Lsusb.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] CRDA.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1854329/+attachment/5308405/+files/CRDA.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] ProcCpuinfoMinimal.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308400/+files/ProcCpuinfoMinimal.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-11-28 Thread Milan Kragujevic
** Attachment added: "lspci-vnvn.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1854329/+attachment/5308403/+files/lspci-vnvn.log

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

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] [NEW] Synaptics Touchpad "loosing sync" on HP laptop

2019-11-28 Thread Milan Kragujevic
Public bug reported:

I have a problem with the touchpad on HP 15-db1041nm (AMD Ryzen 5
3500U). The touchpad freezes for a few seconds then resumes working.

There are also freezes when typing where letters repeat, so instead of the 
letter r i get r. 
This may be a different and unrelated bug which I will open, but I'm mentioning 
as the built-in keyboard could be attached to the same bus?

This is similar to bug #1803171, but on HP. I was instructed to report a
new bug.

Attached is dmesg | grep psmouse showing the sync problems that appear.

Description:Ubuntu 19.10
Release:19.10
--- 
ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu8.2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
DistroRelease: Ubuntu 19.10
InstallationDate: Installed on 2019-10-28 (30 days ago)
InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
Package: linux (not installed)
Tags:  eoan
Uname: Linux 5.4.0-050400-generic x86_64
UnreportableReason: The running kernel is not an Ubuntu kernel
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
_MarkForUpload: True
--- 
ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  milan   951 F pulseaudio
 /dev/snd/controlC0:  milan   951 F pulseaudio
CurrentDesktop: ubuntu:GNOME
DistroRelease: Ubuntu 19.10
InstallationDate: Installed on 2019-10-28 (30 days ago)
InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
IwConfig:
 lono wireless extensions.
 
 eno1  no wireless extensions.
MachineType: HP HP Laptop 15-db1xxx
Package: linux (not installed)
ProcFB: 0 amdgpudrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-23-generic 
root=UUID=c6d5dded-989d-4d10-a52c-4e53aaaba9d2 ro mitigations=off quiet splash 
mitigations=off vt.handoff=7
ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
RelatedPackageVersions:
 linux-restricted-modules-5.3.0-23-generic N/A
 linux-backports-modules-5.3.0-23-generic  N/A
 linux-firmware1.183.2
RfKill:
 
Tags:  eoan
Uname: Linux 5.3.0-23-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
_MarkForUpload: True
dmi.bios.date: 06/27/2019
dmi.bios.vendor: Insyde
dmi.bios.version: F.12
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 85EA
dmi.board.vendor: HP
dmi.board.version: 51.16
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.12:bd06/27/2019:svnHP:pnHPLaptop15-db1xxx:pvrType1ProductConfigId:rvnHP:rn85EA:rvr51.16:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP Notebook
dmi.product.name: HP Laptop 15-db1xxx
dmi.product.sku: 6VK24EA#BED
dmi.product.version: Type1ProductConfigId
dmi.sys.vendor: HP

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


** Tags: apport-collected eoan

** Attachment added: "dmesg-psmouse.log"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308399/+files/dmesg-psmouse.log

** Tags added: apport-collected eoan

** Description changed:

  I have a problem with the touchpad on HP 15-db1041nm (AMD Ryzen 5
  3500U). The touchpad freezes for a few seconds then resumes working.
  
  There are also freezes when typing where letters repeat, so instead of the 
letter r i get r. 
  This may be a different and unrelated bug which I will open, but I'm 
mentioning as the built-in keyboard could be attached to the same bus?
  
  This is similar to bug #1803171, but on HP. I was instructed to report a
  new bug.
  
  Attached is dmesg | grep psmouse showing the sync problems that appear.
  
  Description:  Ubuntu 19.10
  Release:  19.10
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu8.2
+ Architecture: amd64
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 19.10
+ InstallationDate: Installed on 2019-10-28 (30 days ago)
+ InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
+ Package: linux (not installed)
+ Tags:  eoan
+ Uname: Linux 5.4.0-050400-generic x86_64
+ UnreportableReason: The running kernel is not an Ubuntu kernel
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
+ _MarkForUpload: True

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ub

[Bug 1854329] ProcEnviron.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1854329/+attachment/5308401/+files/ProcEnviron.txt

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1854329] Re: Synaptics Touchpad "loosing sync" on HP laptop

2019-11-28 Thread Milan Kragujevic
** Attachment added: "version.2.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1854329/+attachment/5308402/+files/version.2.log

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

Title:
  Synaptics Touchpad "loosing sync" on HP laptop

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

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

[Bug 1848854] ProcEnviron.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1848854/+attachment/5308394/+files/ProcEnviron.txt

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1848854] ProcCpuinfoMinimal.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1848854/+attachment/5308393/+files/ProcCpuinfoMinimal.txt

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1848854] Dependencies.txt

2019-11-28 Thread Milan Kragujevic
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1848854/+attachment/5308392/+files/Dependencies.txt

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1848854] Re: Filezilla start after 25 seconds delay

2019-11-28 Thread Milan Kragujevic
ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu8.2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
DistroRelease: Ubuntu 19.10
InstallationDate: Installed on 2019-10-28 (30 days ago)
InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
Package: filezilla 3.39.0-2
PackageArchitecture: amd64
Tags:  eoan
Uname: Linux 5.4.0-050400-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm audio cdrom dip lpadmin lxd plugdev sambashare sudo video
_MarkForUpload: True


** Tags added: apport-collected

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1848854] Re: Filezilla start after 25 seconds delay

2019-11-28 Thread Milan Kragujevic
I have the same problem. I have also measured that it takes exactly 25
seconds to start FileZilla, and the problem appears on every startup.

I have attached the output of strace filezilla.

I will attempt to attach apport data.

** Attachment added: "filezilla-strace.log"
   
https://bugs.launchpad.net/ubuntu/+source/filezilla/+bug/1848854/+attachment/5308383/+files/filezilla-strace.log

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

Title:
  Filezilla start after 25 seconds delay

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

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

[Bug 1803171] Re: Touchpad freeze after suspend (lost sync)

2019-11-16 Thread Milan Kragujevic
I can confirm the bug still exists. HP 15-db1041nm (AMD Ryzen 5 3500U).

Ubuntu 19.10 64bit

Linux milan-laptop 5.3.0-19-generic #20-Ubuntu SMP Fri Oct 18 09:04:39
UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio1/input0
S: Sysfs=/devices/platform/i8042/serio1/input/input6
U: Uniq=
H: Handlers=mouse1 event7 
B: PROP=1
B: EV=b
B: KEY=e520 3 0 0 0 0
B: ABS=66080001103

[362762.275019] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[362762.276080] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[362762.284581] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[363205.407414] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[363205.408473] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[363205.417004] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[363209.335461] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[363209.336379] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[363209.344905] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[363638.833900] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[363638.834961] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[363638.842406] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[363645.249693] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[363645.250752] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[363645.259212] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[365771.694077] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[365771.695139] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[365771.703604] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.
[365844.187342] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 4
[365844.188401] psmouse serio1: TouchPad at isa0060/serio1/input0 lost sync at 
byte 1
[365844.196848] psmouse serio1: TouchPad at isa0060/serio1/input0 - driver 
resynced.

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

Title:
  Touchpad freeze after suspend (lost sync)

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

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

[Bug 1786964] [NEW] package php7.2-readline 7.2.7-0ubuntu0.18.04.2 failed to install/upgrade: проблеми међузависности — остављам неподешеним

2018-08-14 Thread Milan Vicic
Public bug reported:

/

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: php7.2-readline 7.2.7-0ubuntu0.18.04.2
ProcVersionSignature: Ubuntu 4.15.0-30.32-generic 4.15.18
Uname: Linux 4.15.0-30-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
Date: Tue Aug 14 17:03:35 2018
ErrorMessage: проблеми међузависности — остављам неподешеним
InstallationDate: Installed on 2018-07-14 (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-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2
 apt  1.6.3
SourcePackage: php7.2
Title: package php7.2-readline 7.2.7-0ubuntu0.18.04.2 failed to 
install/upgrade: проблеми међузависности — остављам неподешеним
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: php7.2 (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/1786964

Title:
  package php7.2-readline 7.2.7-0ubuntu0.18.04.2 failed to
  install/upgrade: проблеми међузависности — остављам неподешеним

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php7.2/+bug/1786964/+subscriptions

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

[Bug 1773457] Re: Full-system encryption needs to be supported out-of-the-box including /boot and should not delete other installed systems

2018-08-03 Thread Milan Niznansky
@Phillip

I believe that in the heat of the argument the key point was lost.

In the enterprise world, the "desktop" method of "lets assume we can
wipe all user data" and "lets assume this is a single-disk use case"
simply do not add up.

For me, the current model is simply unusable for 2 fundamental reasons:
A) As a corporate policy /precedes GDPR, but I presume it is not unique/ the 
only partition except from mandatory encryption is the EFI partition. This is 
not up for discussion. There is NO WAY you will even be able to win this 
argument with the InfoSec Crowd. Because they are right. You need to assume 
*not only* scenarios of external attacker but also the user himself mis-using 
the /boot partition to exchange confidential data. And please do not go with 
the "then you are already compromised so you lost anyway" argument. The point 
is is defense-in-depth. With trusted boot you can actually ignore the EFI-the 
system will refuse to boot if the EFI is messed with. Etc.

B) And this is even more critical, I have a powerfull workstation with
several SSDs used as Virtualization host for a bunch of VMs under VMware
workstation. I NEED to use custom partitioning to be able to create a
custom LUKS volume and pass that volume directly to VMs to do their
stuff - while staying fully encrypted on the HW level.

In summary, for "Kid's computer", the current approach is fine. No
question there. Bu then, for a Kid's computer, Win10 is fine too so is a
Mac ...

What this bug report is about is how to address PROFESSIONAL / ADVANCED use 
cases seemlessly.
Right now, the solution prepared by Paddy is absolutely fine - and it is even 
fine if it is NOT included in Uniquity.
But we should get the Grub bug fixed - bar the need for the "RefreshGrub" 
script, I found Paddy's solution infitintely more practical than being forced 
to use Red Hat (which supports a custom configuration just fine) or a Mac for 
that matter.


I am marking this against Grub too - as maybe first step is to fix the Grub bug 
and once that is done, consider extenting this to Ubiquity for the next LTS 
cycle.

** Also affects: grub (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/1773457

Title:
  Full-system encryption needs to be supported out-of-the-box including
  /boot and should not delete other installed systems

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

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

[Bug 1752053] Re: nvidia-390 fails to boot graphical display

2018-05-11 Thread Milan Pultar
I am not sure whether it is ok to post here, but I have lately found
this github repo dedicated to making Ubuntu run on XPS 9560. It works
for Ubuntu 17.10 and 18.04 will be hopefully added as well. Many of us
have this laptop and the repo partly adresses the issues mentioned here
so I thought posting the link here might not be a bad idea. I have not
tried this myself yet, but I guess installing U17.10 is the only option
now because of the drivers problem...


https://github.com/stockmind/dell-xps-9560-ubuntu-respin

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

Title:
  nvidia-390 fails to boot graphical display

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

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

[Bug 1752053] Re: nvidia-390 fails to boot graphical display

2018-05-02 Thread Milan Pultar
Hi. I am new to this forum. I have recently bought Dell XPS 15 9560 with
GTX 1050 graphic card. I am trying Ubuntu 18.04, but I can't find any
working nvidia driver. From ppa I tried 384, 390 as well as 396, each
installation results in black screen. If I uninstall nvidia driver,
laptop boots normally. I also tried the proprietary driver from Nvidia
website, which didn't work as well. I also tried to switch using nvidia-
prime after installation, which broke Ubuntu and I had to reinstall the
system. So... are there any fixes coming? I don't have xorg.conf file so
deleting it is not an option.

I did not imagine this hardware has so bad support on Linux. Did anybody
have good experience with older Ubuntu and GTX 1050? I don't want to
give up and agree this issue is NOT FIXED.

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

Title:
  nvidia-390 fails to boot graphical display

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

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

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

2018-03-23 Thread Milan Jovanovic
I can confirm that after doing dpkg-reconfigure plymouth the issue is
not appearing (no errors showing)



$ apt-cache policy plymouth
plymouth:
  Installed: 0.9.3-1ubuntu2
  Candidate: 0.9.3-1ubuntu2
  Version table:
 *** 0.9.3-1ubuntu2 500
500 http://rs.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status



$ lsb_release -rd
Description:Ubuntu Bionic Beaver (development branch)
Release:18.04



4.15.0-12-generic #13-Ubuntu SMP Thu Mar 8 06:24:47 UTC 2018



Still, not sure if related to this, the cursor still dissapearing on the
login screen.

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

Title:
  plymouthd crashed with SIGSEGV in script_obj_deref_direct()

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

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

[Bug 1754773] Re: network-manager-openvpn-gnome - VPN definition is damaged when saved

2018-03-12 Thread Milan Petruzelka
I've updated the packages:

dpkg -l|grep r-op
ii  network-manager-openvpn1.8.0-3  
 amd64
ii  network-manager-openvpn-gnome  1.8.0-3  
 amd64

Problem is SOLVED. Fields 'User certificate' and 'User private key' are
not damaged upon saving anymore.

Thanks a lot for such a quick reaction.

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

Title:
  network-manager-openvpn-gnome - VPN definition is damaged when saved

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

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

[Bug 1754773] [NEW] network-manager-openvpn-gnome - VPN definition is damaged when saved

2018-03-09 Thread Milan Petruzelka
Public bug reported:

OpenVPN connection settings are upon saving.

Steps to reproduce:

1. create OpenVPN connection using nmcli: nmcli connection import type openvpn 
test.ovpn
2. go to VPN settings
3. edit 'test' OpenVPN connection
4. fill random User private key password
5. save / apply changes
6. edit 'test' OpenVPN connection again

You'll see:
- User certificate is lost (filled with CA certificate)
- User private key is lost (empty)


Package & OS info

dpkg -l|grep openvpn-gnome
ii  network-manager-openvpn-gnome  1.8.0-2  
 amd64network management framework (OpenVPN plugin GNOME GUI)

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu Bionic Beaver (development branch)
Release:18.04
Codename:   bionic

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: network-manager-openvpn-gnome 1.8.0-2
ProcVersionSignature: Ubuntu 4.15.0-10.11-generic 4.15.3
Uname: Linux 4.15.0-10-generic x86_64
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Mar  9 23:12:03 2018
InstallationDate: Installed on 2018-03-07 (2 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180305)
SourcePackage: network-manager-openvpn
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

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

Title:
  network-manager-openvpn-gnome - VPN definition is damaged when saved

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

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

[Bug 1753307] [NEW] uefi problem

2018-03-04 Thread milan
Public bug reported:

grub and uefi + ssd

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.3 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.8.0-36.36~16.04.1-generic 4.8.11
Uname: Linux 4.8.0-36-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CasperVersion: 1.376.2
Date: Sun Mar  4 20:41:06 2018
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed 
boot=casper quiet splash ---
LiveMediaBuild: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 (20170215.2)
ProcEnviron:
 LANGUAGE=cs_CZ.UTF-8
 PATH=(custom, no user)
 LANG=cs_CZ.UTF-8
 SHELL=/bin/bash
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.3 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/1753307

Title:
  uefi problem

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

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

[Bug 1581088] Re: Middle mouse (wheel-click) button stopped working after upgrade to 16.04

2018-02-22 Thread Milan Masic
After
xinput set-prop 10 "libinput Horizontal Scroll Enabled" 0
button #2 appeared in xev again.

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

Title:
  Middle mouse (wheel-click) button stopped working after upgrade to
  16.04

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

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

[Bug 1748682] [NEW] package deluge-gtk 1.3.13+git20161130.48cedf63-2ubuntu1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2018-02-10 Thread Milan Sonkar
Public bug reported:

Don't know.Ubuntu is popping the error randomly

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: deluge-gtk 1.3.13+git20161130.48cedf63-2ubuntu1
ProcVersionSignature: Ubuntu 4.10.0-42.46-generic 4.10.17
Uname: Linux 4.10.0-42-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.10
Architecture: amd64
Date: Sat Feb 10 21:44:19 2018
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 1
InstallationDate: Installed on 2017-05-06 (280 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4.6~17.04.1
SourcePackage: deluge
Title: package deluge-gtk 1.3.13+git20161130.48cedf63-2ubuntu1 failed to 
install/upgrade: subprocess installed pre-removal script returned error exit 
status 1
UpgradeStatus: Upgraded to zesty on 2018-01-04 (37 days ago)

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


** Tags: amd64 apport-package zesty

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

Title:
  package deluge-gtk 1.3.13+git20161130.48cedf63-2ubuntu1 failed to
  install/upgrade: subprocess installed pre-removal script returned
  error exit status 1

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

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

[Bug 1697556] Re: Computer freezes after login - 4.10.0-22-generic

2017-08-17 Thread Milan
Can confirm this issue on my Dell XPS 9560. I downloaded iso of ubuntu
16.04 made it bootable and i tried to boot into installation menu but i
got stuck on loading screen, before it showed up error with noveau and
cant create kernel channel, 22. Any fix please.

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

Title:
  Computer freezes after login - 4.10.0-22-generic

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

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


[Bug 1697852] [NEW] package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin: Ubuntu] failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2017-06-14 Thread Milan
Public bug reported:

While opening Software update center this error was popped up

ProblemType: Package
DistroRelease: elementary 0.4.1
Package: linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin: Ubuntu]
ProcVersionSignature: Ubuntu 4.8.0-52.55~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-52-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
Date: Wed Jun 14 11:49:38 2017
ErrorMessage: subprocess new pre-installation script returned error exit status 
128
InstallationDate: Installed on 2017-06-14 (0 days ago)
InstallationMedia: elementary OS 0.4.1 "Loki" - Stable amd64 (20170517)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.20
SourcePackage: linux-hwe
Title: package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin: 
Ubuntu] failed to install/upgrade: subprocess new pre-installation script 
returned error exit status 128
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package loki 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/1697852

Title:
  package linux-image-4.8.0-54-generic 4.8.0-54.57~16.04.1 [origin:
  Ubuntu] failed to install/upgrade: subprocess new pre-installation
  script returned error exit status 128

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

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


[Bug 1696408] [NEW] package linux-image-4.4.0-79-generic (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2017-06-07 Thread Ram Milan Prasad
*** This bug is a duplicate of bug 1692042 ***
https://bugs.launchpad.net/bugs/1692042

Public bug reported:

system is runing in low graphics

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-79-generic (not installed)
ProcVersionSignature: Ubuntu 4.4.0-78.99-generic 4.4.62
Uname: Linux 4.4.0-78-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  aditya 1819 F pulseaudio
 /dev/snd/controlC1:  aditya 1819 F pulseaudio
Date: Wed Jun  7 16:58:40 2017
ErrorMessage: subprocess new pre-installation script returned error exit status 
128
HibernationDevice: RESUME=UUID=fc0c14ec-9032-4d55-b655-9b9369d67fb7
InstallationDate: Installed on 2015-07-31 (676 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
MachineType: Dell Inc. Inspiron N5010
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-78-generic 
root=UUID=6a58c487-364c-4cdc-8a7f-a769c6e7f5d1 ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.9
SourcePackage: linux
Title: package linux-image-4.4.0-79-generic (not installed) failed to 
install/upgrade: subprocess new pre-installation script returned error exit 
status 128
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/17/2010
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A10
dmi.board.name: 0YXXJJ
dmi.board.vendor: Dell Inc.
dmi.board.version: A10
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A10
dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd11/17/2010:svnDellInc.:pnInspironN5010:pvrA10:rvnDellInc.:rn0YXXJJ:rvrA10:cvnDellInc.:ct8:cvrA10:
dmi.product.name: Inspiron N5010
dmi.product.version: A10
dmi.sys.vendor: Dell Inc.

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


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

Title:
  package linux-image-4.4.0-79-generic (not installed) failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 128

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

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


[Bug 1679813] [NEW] package libkf5i18n-data (not installed) failed to install/upgrade: trying to overwrite '/usr/share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc', which is also in package kde-l10n-

2017-04-04 Thread Milan
Public bug reported:

i dont know

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: libkf5i18n-data (not installed)
ProcVersionSignature: Ubuntu 3.19.0-84.92-generic 3.19.8-ckt22
Uname: Linux 3.19.0-84-generic i686
ApportVersion: 2.17.2-0ubuntu1.8
Architecture: i386
Date: Sat Apr  1 17:46:48 2017
DuplicateSignature: package:libkf5i18n-data:(not installed):trying to overwrite 
'/usr/share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc', which is also in 
package kde-l10n-sr 4:14.12.3-0ubuntu2
ErrorMessage: trying to overwrite 
'/usr/share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc', which is also in 
package kde-l10n-sr 4:14.12.3-0ubuntu2
InstallationDate: Installed on 2016-11-29 (125 days ago)
InstallationMedia: Xubuntu 14.10 "Utopic Unicorn" - Release i386 (20141022.1)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1.1
 apt  1.0.9.7ubuntu4.2
SourcePackage: ki18n
Title: package libkf5i18n-data (not installed) failed to install/upgrade: 
trying to overwrite '/usr/share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc', 
which is also in package kde-l10n-sr 4:14.12.3-0ubuntu2
UpgradeStatus: Upgraded to vivid on 2017-04-01 (3 days ago)

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


** Tags: apport-package i386 package-conflict vivid

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

Title:
  package libkf5i18n-data (not installed) failed to install/upgrade:
  trying to overwrite
  '/usr/share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc', which is
  also in package kde-l10n-sr 4:14.12.3-0ubuntu2

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

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


[Bug 1662287] [NEW] Sync is broken

2017-02-06 Thread Milan Oparnica
Public bug reported:

Sync keeps asking for my gmail password, reporting it as wrong, when I'm sure 
that it's correct.
I login in with the same password in Chrome.

Then I was asked to confirm by entering authorization code that
succesfully arrived to my gmail inbox, but even after entering the code,
Firefox complains that the password is wrong.

Not to mentioned that sync worked correctly many months, with the same
account/pwd.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: firefox 51.0.1+build2-0ubuntu0.16.04.1
Uname: Linux 4.6.6-040606-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  milano 2424 F pulseaudio
BuildID: 20170125172221
CRDA:
 country RS: DFS-ETSI
(2400 - 2483 @ 40), (N/A, 20), (N/A)
(5150 - 5350 @ 40), (N/A, 23), (N/A), NO-OUTDOOR
(5470 - 5725 @ 20), (N/A, 30), (0 ms), DFS
(57000 - 66000 @ 2160), (N/A, 40), (N/A)
Channel: Unavailable
CurrentDesktop: XFCE
Date: Mon Feb  6 19:35:32 2017
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2016-08-05 (184 days ago)
InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
IpRoute:
 default via 192.168.43.1 dev wls1  proto static  metric 600 
 169.254.0.0/16 dev virbr0  scope link  metric 1000 linkdown 
 192.168.43.0/24 dev wls1  proto kernel  scope link  src 192.168.43.252  metric 
600 
 192.168.122.0/24 dev virbr0  proto kernel  scope link  src 192.168.122.1 
linkdown
Locales: extensions.sqlite corrupt or missing
Plugins: Shockwave Flash - /usr/lib/flashplugin-installer/libflashplayer.so
PrefSources:
 prefs.js
 
[Profile]/extensions/{bee6eb20-01e0-ebd1-da83-080329fb9a3a}/defaults/preferences/prefs.js
Profiles: Profile0 (Default) - LastVersion=51.0.1/20170125172221 (In use)
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/24/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: U33Jc.213
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: U33Jc
dmi.board.vendor: ASUSTeK Computer Inc.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer Inc.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrU33Jc.213:bd01/24/2011:svnASUSTeKComputerInc.:pnU33Jc:pvr1.0:rvnASUSTeKComputerInc.:rnU33Jc:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.name: U33Jc
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.

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


** Tags: amd64 apport-bug xenial

** Attachment added: "Error page"
   https://bugs.launchpad.net/bugs/1662287/+attachment/4814248/+files/ffox_sync

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

Title:
  Sync is broken

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

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


[Bug 685215] Re: users-admin hangs immediately when run as root

2016-09-30 Thread Milan Bouchet-Valat
It's actually dead since upstream archived the project several years
ago. XFCE should have took it up, or moved to another tool.

Anyway, you shouldn't need to run it as root.

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

Title:
  users-admin hangs immediately when run as root

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

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


[Bug 995684] Re: Switching problem between headphone speaker and microphone to laptop built in speakers and front mic

2016-08-03 Thread Milan Sulc
Hi,

I have had same issue on my Dell XPS L521X on Linux Mint 18 x64.

This solve my problem.

-

Add a line to /etc/modprobe.d/alsa-base.conf :

options snd-hda-intel model=auto probe_mask=1

-

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

Title:
  Switching problem between headphone speaker and microphone to laptop
  built in speakers and front mic

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

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


[Bug 1583688] Re: libvirt-sock not recreated on service restart

2016-06-08 Thread milan k
** Patch removed: "unit file patch for /lib/systemd/system/libvirt-bin.service"
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1583688/+attachment/4678193/+files/libvirt-bin.service.patch

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

Title:
  libvirt-sock not recreated on service restart

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

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


[Bug 1583688] Re: libvirt-sock not recreated on service restart

2016-06-06 Thread milan k
Based on my experiments, I'd like to propose this patch.

** Patch added: "unit file patch for /lib/systemd/system/libvirt-bin.service"
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1583688/+attachment/4678193/+files/libvirt-bin.service.patch

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

Title:
  libvirt-sock not recreated on service restart

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

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


[Bug 1583688] Re: libvirt-sock not recreated on service restart

2016-06-06 Thread milan k
playing a bit with the libvirt-bin systemd units I've came to this order
of things that ensures the sockets are created:

root@os-gate-u16:~# systemctl stop libvirt-bin.service ; systemctl stop 
libvirt-bin.socket ; systemctl start libvirt-bin.socket; systemctl start 
libvirt-bin.service ; lsof /var/run/libvirt/libvirt-sock | grep libvirtd
libvirtd 722 root3u  unix 0x880069e41e00  0t0 1020308 
/var/run/libvirt/libvirt-sock type=STREAM
root@os-gate-u16:~#

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

Title:
  libvirt-sock not recreated on service restart

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

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


[Bug 1583688] Re: libvirt-sock not recreated on service restart

2016-06-06 Thread milan k
btw using systemctl directly doesn't lead to the socket present:

root@os-gate-u16:~# systemctl restart libvirt-bin.service ; lsof 
/var/run/libvirt/libvirt-sock
lsof: status error on /run/libvirt/libvirt-sock: No such file or directory | 
grep libvirtd
lsof 4.89
 latest revision: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 latest FAQ: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/FAQ
 latest man page: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_man
 usage: [-?abhKlnNoOPRtUvVX] [+|-c c] [+|-d s] [+D D] [+|-E] [+|-e s] [+|-f[gG]]
 [-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+m [m]] [+|-M] [-o [o]] [-p s]
 [+|-r [t]] [-s [p:s]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names]
Use the ``-h'' option to get more help information.
root@os-gate-u16:~# systemctl stop libvirt-bin.service ; systemctl start 
libvirt-bin.service; lsof /var/run/libvirt/libvirt-sock | grep libvirtd
Warning: Stopping libvirt-bin.service, but it can still be activated by:
  libvirt-bin.socket
lsof: status error on /run/libvirt/libvirt-sock: No such file or directory
lsof 4.89
 latest revision: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 latest FAQ: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/FAQ
 latest man page: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_man
 usage: [-?abhKlnNoOPRtUvVX] [+|-c c] [+|-d s] [+D D] [+|-E] [+|-e s] [+|-f[gG]]
 [-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+m [m]] [+|-M] [-o [o]] [-p s]
 [+|-r [t]] [-s [p:s]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names]
Use the ``-h'' option to get more help information.
root@os-gate-u16:~#
root@os-gate-u16:~# service libvirt-bin stop ; service libvirt-bin start ; lsof 
/var/run/libvirt/libvirt-sock | grep libvirtd
libvirtd 29826 root3u  unix 0x8800cd78e580  0t0 948825 
/var/run/libvirt/libvirt-sock type=STREAM
root@os-gate-u16:~#

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

Title:
  libvirt-sock not recreated on service restart

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

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


[Bug 1583688] Re: libvirt-sock not recreated on service restart

2016-06-06 Thread milan k
Hi,

seems I'm affected by this as well (ran into it trying devstack in 16.4 LTS).
Service libvirt-bin stop; service libvirt-bin start fixed this for me.
As soon as I do service libvirt-bin restart the socket vanishes again from 
/var/lib/libvirt for me.

The odd thing is, lsof -p  shows the socket as opened
while it doesn't exist:

root@os-gate-u16:~/devstack-gate-test/ansible# lsof -U -p 28097 | grep 
/var/run/libvirt/libvirt-sock
systemd   1root   67u unix 0x88010cea8f00  0t0 
820644 /var/run/libvirt/libvirt-sock type=STREAM
systemd   1root   68u unix 0x88010cea9e00  0t0 
820645 /var/run/libvirt/libvirt-sock-ro type=STREAM
libvirtd  28097root3u unix 0x88010cea8f00  0t0 
820644 /var/run/libvirt/libvirt-sock type=STREAM
libvirtd  28097root4u unix 0x88010cea9e00  0t0 
820645 /var/run/libvirt/libvirt-sock-ro type=STREAM
root@os-gate-u16:~/devstack-gate-test/ansible# lsof 
/var/run/libvirt/libvirt-sock
lsof: status error on /run/libvirt/libvirt-sock: No such file or directory
lsof 4.89
 latest revision: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
 latest FAQ: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/FAQ
 latest man page: ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_man
 usage: [-?abhKlnNoOPRtUvVX] [+|-c c] [+|-d s] [+D D] [+|-E] [+|-e s] [+|-f[gG]]
 [-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+m [m]] [+|-M] [-o [o]] [-p s]
 [+|-r [t]] [-s [p:s]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names]
Use the ``-h'' option to get more help information.
root@os-gate-u16:~/devstack-gate-test/ansible#

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

Title:
  libvirt-sock not recreated on service restart

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

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


[Bug 1581668] [NEW] installer crashes after entering my personal info

2016-05-13 Thread Milan Kragujevic
Public bug reported:

I cannot install Ubuntu 16.04 on a HP 15-af150nm laptop. Wifi works, and
sound and everything but as soon as I go to install and enter my
location, my locale, username password etc it crashes.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63
ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
Uname: Linux 4.4.0-21-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
CasperVersion: 1.376
Date: Fri May 13 22:18:13 2016
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug ident-mismatch ubiquity-2.21.63 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/1581668

Title:
  installer crashes after entering my personal info

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

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


[Bug 1397067] Re: ID 138a:003f Validity Sensors, Inc. on HP EliteBook 840G1

2016-02-13 Thread milan markovic
one more
HP Probook 430 G2
Bus 002 Device 003: ID 138a:003f Validity Sensors, Inc. VFS495 Fingerprint 
Reader

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

Title:
  ID 138a:003f Validity Sensors, Inc. on  HP EliteBook 840G1

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

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


[Bug 1348890]

2015-09-20 Thread Milan-plzik-b
This issue is reproducible also on Asus Zenbook UX303LA with Broadwell:
# dmidecode -s bios-version
UX303LAB.207

Pressing Fn+F5/F6 seems to emit EC Query 0x0e/0x0f, but the backlight
intensity does not change and no key press is emitted using the input
subsystem.

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

Title:
  Asus UX32LN: Brightness keys Fn+F5 and Fn+F6 don't generate evdev
  event

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

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


[Bug 1484684] [NEW] [Inspiron 3542, Generic 0000 ID 0, Digital Out, HDMI] Pulseaudio fails to detect card

2015-08-13 Thread Milan
Public bug reported:

I had no sound after upgrading ubuntu 12.04 LTS using sudo apt-get
upgrade. In the window Sound settings there is no device through which
sound can be played. Alsamixer says that this sound device does not have
any controls.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: pulseaudio 1:1.1-0ubuntu15.4
ProcVersionSignature: Ubuntu 3.5.0-61.90-generic 3.5.7.33
Uname: Linux 3.5.0-61-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.25.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 1: PCH [HDA Intel PCH], device 0: HDA Generic [HDA Generic]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
ApportVersion: 2.0.1-0ubuntu17.9
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 1: PCH [HDA Intel PCH], device 0: HDA Generic [HDA Generic]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  milan  2536 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf7a14000 irq 60'
   Mixer name   : 'Generic  ID 0'
   Components   : 'HDA:,80860101,0010'
   Controls  : 0
   Simple ctrls  : 0
Card0.Amixer.values:
 
Card1.Amixer.info:
 Card hw:1 'PCH'/'HDA Intel PCH at 0xf7a1 irq 60'
   Mixer name   : 'Realtek ID 255'
   Components   : 'HDA:10ec0255,10280652,0012'
   Controls  : 4
   Simple ctrls  : 3
Date: Thu Aug 13 22:24:57 2015
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-precise-amd64-20130203-1
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20130203-13:50
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_US:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
SourcePackage: pulseaudio
Symptom: audio
Symptom_Card: HDA-Intel - HDA Intel
Symptom_Jack: Digital Out, HDMI
Title: [Inspiron 3542, Generic  ID 0, Digital Out, HDMI] Pulseaudio fails 
to detect card
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/27/2014
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A03
dmi.board.name: 0926J6
dmi.board.vendor: Dell Inc.
dmi.board.version: A03
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: Not Specified
dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd05/27/2014:svnDellInc.:pnInspiron3542:pvrNotSpecified:rvnDellInc.:rn0926J6:rvrA03:cvnDellInc.:ct8:cvrNotSpecified:
dmi.product.name: Inspiron 3542
dmi.product.version: Not Specified
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug precise running-unity

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

Title:
  [Inspiron 3542, Generic  ID 0, Digital Out, HDMI] Pulseaudio fails
  to detect card

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

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


[Bug 1436710] [NEW] package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-03-26 Thread Milan Marsic
Public bug reported:

There is always an error message when I start my computer, sometimes 2. It´s 
been several months now, and also I cannot update, there is also always an 
error message when I´m trying to update..
thank you

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
Date: Wed Mar 25 17:07:09 2015
DuplicateSignature: package:libnss3-nssdb:2:3.17.4-0ubuntu0.14.10.1:package is 
in a very bad inconsistent state; you should  reinstall it before attempting 
configuration
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
PackageArchitecture: all
SourcePackage: nss
Title: package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1 failed to 
install/upgrade: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
UpgradeStatus: Upgraded to utopic on 2014-10-29 (147 days ago)

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


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

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

Title:
  package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.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/nss/+bug/1436710/+subscriptions

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

[Bug 1436710] [NEW] package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-03-26 Thread Milan Marsic
Public bug reported:

There is always an error message when I start my computer, sometimes 2. It´s 
been several months now, and also I cannot update, there is also always an 
error message when I´m trying to update..
thank you

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
Date: Wed Mar 25 17:07:09 2015
DuplicateSignature: package:libnss3-nssdb:2:3.17.4-0ubuntu0.14.10.1:package is 
in a very bad inconsistent state; you should  reinstall it before attempting 
configuration
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
PackageArchitecture: all
SourcePackage: nss
Title: package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.1 failed to 
install/upgrade: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
UpgradeStatus: Upgraded to utopic on 2014-10-29 (147 days ago)

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


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

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

Title:
  package libnss3-nssdb 2:3.17.4-0ubuntu0.14.10.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/nss/+bug/1436710/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 23001] Re: Copying using ctrl +c doesn't copy in file-roller

2015-02-20 Thread Milan Bartos
This bug has been resolved upstream in 2.19.2, however is present in
3.10.2.1 again.

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

Title:
  Copying using ctrl +c doesn't copy in file-roller

To manage notifications about this bug go to:
https://bugs.launchpad.net/file-roller/+bug/23001/+subscriptions

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


[Bug 434476]

2014-10-20 Thread Milan Bouchet-Valat
Is that supposed to work when watching a fullscreen Flash video, like
Youtube? It doesn't here on Fedora 20 with Firefox 33 (and the D-Bus
interface is present).

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

Title:
  screensaver starts while playing HTML5 videos

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

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


[Bug 434476]

2014-10-19 Thread Milan Bouchet-Valat
Sergey, could you check whether with the S3 add-on disabled the
screensaver is still not inhibited?

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

Title:
  screensaver starts while playing HTML5 videos

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

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


[Bug 1354901] Re: blue videos with QGraphicsProxyWidget

2014-09-26 Thread Milan Herbig
** Description changed:

  Since Ubuntu 14.04 LTS I have problem with displaying videos through
  QGraphicsProxyWidget. All videos are blue colored. Everything works fine
  with phonon-backend-vlc, and worked flawlessly on ubuntu 13.10 and
  older.
  
  Platform: Ubuntu 14.04 (latest) x64 - all derivates are the same
  Python: 2.7+ and PySide 1.2.1 or PyQt 4.10.4
  Package version: phonon-backend-gstreamer 4.7.1+git20140403-0ubuntu1
  
  Code to reproduce bug: (works both on PySide and PyQt)
  
--
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here!
  
  gv = QGraphicsView()
  scene = QGraphicsScene(gv)
  gv.setScene(scene)
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
  Phonon.createPath(media_obj, video_widget)
  Phonon.createPath(media_obj, audio_out)
  playerProxy = scene.addWidget(video_widget)
  
  # rect = QGraphicsRectItem(0, 0, 100, 100)
  # rect.setBrush(Qt.red)
  # rect.setFlag(QGraphicsItem.ItemIsMovable)
  # scene.addItem(rect)
  
  media_obj.play()
  gv.show()
  app.exec_()
  
-
  
  Code without QGraphicsProxyWidget: (to test phonon functionality)
  
-
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here !
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
  Phonon.createPath(media_obj, video_widget)
  Phonon.createPath(media_obj, audio_out)
  
  media_obj.play()
  video_widget.show()
  
  app.exec_()
  
--
  
  Since phonon-backend-gstreamer version has been updated to 4.7.1 with
  Ubuntu 14.04, I believe this is a bug which needs to be fixed.
+ 
+ Edit: Downgrading phonon-backend-gstreamer to version from Ubuntu 13.10
+ works fine.
+ 
+ Edit 2: This issue also affects Ubuntu 14.10 official beta (for now).

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

Title:
  blue videos with QGraphicsProxyWidget

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/phonon-backend-gstreamer/+bug/1354901/+subscriptions

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


[Bug 1358543] Re: Replace Windows with Ubuntu produces unintended results

2014-09-02 Thread Milan Pozzi
*** This bug is a duplicate of bug 1265192 ***
https://bugs.launchpad.net/bugs/1265192

Hi,

year and half ago the installation wipe my data as well.
Maybe my experience will be useful to somebody. I did try testdisk to save my 
data, but without any success.
I decided to try different tool then. I plugged the disk to a different Windows 
running computer and used EeaseUs Data Recovery.
I got all data back together with the tree structure. That was about half a 
year ago.

Cheers

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

Title:
  Replace Windows with Ubuntu produces unintended results

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

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


[Bug 1354901] [NEW] blue videos with QGraphicsProxyWidget

2014-08-10 Thread Milan Herbig
Public bug reported:

Since Ubuntu 14.10 LTS I have problem with displaying videos through
QGraphicsProxyWidget. All videos are blue colored. Everything works fine
with phonon-backend-vlc, and worked flawlessly on ubuntu 13.10 and
older.

Platform: Ubuntu 14.10 (latest) x64 - all derivates are the same
Python: 2.7+ and PySide 1.2.1 or PyQt 4.10.4
Package version: phonon-backend-gstreamer 4.7.1+git20140403-0ubuntu1

Code to reproduce bug: (works both on PySide and PyQt)
--
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from PyQt4.phonon import Phonon

app = QApplication([])
app.setApplicationName(MyApp)
file_path = u/home/milan/small.mp4# change here!

gv = QGraphicsView()
scene = QGraphicsScene(gv)
gv.setScene(scene)

media_src = Phonon.MediaSource(file_path)
media_obj = Phonon.MediaObject()
media_obj.setCurrentSource(media_src)
video_widget = Phonon.VideoWidget()
audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
Phonon.createPath(media_obj, video_widget)
Phonon.createPath(media_obj, audio_out)
playerProxy = scene.addWidget(video_widget)

# rect = QGraphicsRectItem(0, 0, 100, 100)
# rect.setBrush(Qt.red)
# rect.setFlag(QGraphicsItem.ItemIsMovable)
# scene.addItem(rect)

media_obj.play()
gv.show()
app.exec_()
-

Code without QGraphicsProxyWidget: (to test phonon functionality)
-
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from PyQt4.phonon import Phonon

app = QApplication([])
app.setApplicationName(MyApp)
file_path = u/home/milan/small.mp4# change here !

media_src = Phonon.MediaSource(file_path)
media_obj = Phonon.MediaObject()
media_obj.setCurrentSource(media_src)
video_widget = Phonon.VideoWidget()
audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
Phonon.createPath(media_obj, video_widget)
Phonon.createPath(media_obj, audio_out)

media_obj.play()
video_widget.show()

app.exec_()
--

Since phonon-backend-gstreamer version has been updated to 4.7.1 with
Ubuntu 14.10, I believe this is a bug which needs to be fixed.

** Affects: phonon-backend-gstreamer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: gstreamer phonon python qgraphicsproxywidget

** Attachment added: Screenshot image
   https://bugs.launchpad.net/bugs/1354901/+attachment/4173958/+files/screen.png

** Description changed:

  Since Ubuntu 14.10 LTS I have problem with displaying videos through
- QGraphicsProxyWidget. All videos are blue colored. Everything wors fine
+ QGraphicsProxyWidget. All videos are blue colored. Everything works fine
  with phonon-backend-vlc, and worked flawlessly on ubuntu 13.10 and
  older.
  
  Platform: Ubuntu 14.10 (latest) x64 - all derivates are the same
  Python: 2.7+ and PySide 1.2.1 or PyQt 4.10.4
  Package version: phonon-backend-gstreamer 4.7.1+git20140403-0ubuntu1
  
  Code to reproduce bug: (works both on PySide and PyQt)
  
--
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here!
  
  gv = QGraphicsView()
  scene = QGraphicsScene(gv)
  gv.setScene(scene)
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
  Phonon.createPath(media_obj, video_widget)
  Phonon.createPath(media_obj, audio_out)
  playerProxy = scene.addWidget(video_widget)
  
  # rect = QGraphicsRectItem(0, 0, 100, 100)
  # rect.setBrush(Qt.red)
  # rect.setFlag(QGraphicsItem.ItemIsMovable)
  # scene.addItem(rect)
  
  media_obj.play()
  gv.show()
  app.exec_()
  
-
  
- 
  Code without QGraphicsProxyWidget: (to test phonon functionality)
  
-
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here !
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput

[Bug 1354901] Re: blue videos with QGraphicsProxyWidget

2014-08-10 Thread Milan Herbig
** Description changed:

- Since Ubuntu 14.10 LTS I have problem with displaying videos through
+ Since Ubuntu 14.04 LTS I have problem with displaying videos through
  QGraphicsProxyWidget. All videos are blue colored. Everything works fine
  with phonon-backend-vlc, and worked flawlessly on ubuntu 13.10 and
  older.
  
- Platform: Ubuntu 14.10 (latest) x64 - all derivates are the same
+ Platform: Ubuntu 14.04 (latest) x64 - all derivates are the same
  Python: 2.7+ and PySide 1.2.1 or PyQt 4.10.4
  Package version: phonon-backend-gstreamer 4.7.1+git20140403-0ubuntu1
  
  Code to reproduce bug: (works both on PySide and PyQt)
  
--
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here!
  
  gv = QGraphicsView()
  scene = QGraphicsScene(gv)
  gv.setScene(scene)
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
  Phonon.createPath(media_obj, video_widget)
  Phonon.createPath(media_obj, audio_out)
  playerProxy = scene.addWidget(video_widget)
  
  # rect = QGraphicsRectItem(0, 0, 100, 100)
  # rect.setBrush(Qt.red)
  # rect.setFlag(QGraphicsItem.ItemIsMovable)
  # scene.addItem(rect)
  
  media_obj.play()
  gv.show()
  app.exec_()
  
-
  
  Code without QGraphicsProxyWidget: (to test phonon functionality)
  
-
  from PyQt4.QtGui import *
  from PyQt4.QtCore import *
  from PyQt4.phonon import Phonon
  
  app = QApplication([])
  app.setApplicationName(MyApp)
  file_path = u/home/milan/small.mp4# change here !
  
  media_src = Phonon.MediaSource(file_path)
  media_obj = Phonon.MediaObject()
  media_obj.setCurrentSource(media_src)
  video_widget = Phonon.VideoWidget()
  audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
  Phonon.createPath(media_obj, video_widget)
  Phonon.createPath(media_obj, audio_out)
  
  media_obj.play()
  video_widget.show()
  
  app.exec_()
  
--
  
  Since phonon-backend-gstreamer version has been updated to 4.7.1 with
- Ubuntu 14.10, I believe this is a bug which needs to be fixed.
+ Ubuntu 14.04, I believe this is a bug which needs to be fixed.

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

Title:
  blue videos with QGraphicsProxyWidget

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/phonon-backend-gstreamer/+bug/1354901/+subscriptions

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


[Bug 434476]

2014-06-26 Thread Milan Bouchet-Valat
Great!

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

Title:
  screensaver starts while playing HTML5 videos

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

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


[Bug 1290703] Re: Network password prompt on login screen

2014-03-24 Thread Milan Bouchet-Valat
** Package changed: gnome-system-tools (Ubuntu) = lightdm (Ubuntu)

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

Title:
  Network password prompt on login screen

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

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


[Bug 989496] Re: UnicodeDecodeError during backup due to non-utf8 translation

2014-01-05 Thread Milan Bouchet-Valat
Woops, I wrote my remarks in the middle of the log. The previous comment
should have started with:

When doing a different backup to an external drive, I got an error which was 
not present before:
duplicity incremental ~/ -v Info --exclude ~/... [skipped] 
file:///run/media/milan/SOMETHING --allow-source-mismatch

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

Title:
  UnicodeDecodeError during backup due to non-utf8 translation

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

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


[Bug 989496] Re: UnicodeDecodeError during backup due to non-utf8 translation

2014-01-05 Thread Milan Bouchet-Valat
Utilisation du répertoire d’archive : 
/home/milan/.cache/duplicity/e5f4f9b85e256f59787be25a63b7fdbf
Utilisation du nom de sauvegarde : e5f4f9b85e256f59787be25a63b7fdbf
Import of duplicity.backends.cfbackend Succeeded
Import of duplicity.backends.dpbxbackend Failed: No module named dropbox
Import of duplicity.backends.botobackend Succeeded
Import of duplicity.backends.ftpbackend Succeeded
Import of duplicity.backends.hsibackend Succeeded
Import of duplicity.backends.imapbackend Succeeded
Import of duplicity.backends.localbackend Succeeded
Import of duplicity.backends.rsyncbackend Succeeded
Import of duplicity.backends.sshbackend Succeeded
Import of duplicity.backends.tahoebackend Succeeded
Import of duplicity.backends.webdavbackend Succeeded
Import of duplicity.backends.ftpsbackend Succeeded
Import of duplicity.backends.gdocsbackend Succeeded
Import of duplicity.backends.megabackend Succeeded
Import of duplicity.backends.swiftbackend Succeeded
When doing a different backup to an external drive, I got an error which was 
not present before:
duplicity incremental ~/ -v Info --exclude ~/... [skipped] 
file:///run/media/milan/SOMETHING --allow-source-mismatch
Import of duplicity.backends.u1backend Succeeded
Main action: inc

duplicity $version ($reldate)
Using temporary directory /tmp/duplicity-LmaRwW-tempdir
Traceback (most recent call last):
  File /home/milan/Dev/duplicity-encoding/bin/duplicity, line 1470, in 
module
with_tempdir(main)
  File /home/milan/Dev/duplicity-encoding/bin/duplicity, line 1463, in 
with_tempdir
fn()
  File /home/milan/Dev/duplicity-encoding/bin/duplicity, line 1334, in main
log_startup_parms(log.INFO)
  File /home/milan/Dev/duplicity-encoding/bin/duplicity, line 1223, in 
log_startup_parms
log.Log(uArgs: %s % (' '.join(sys.argv),), verbosity)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 264: 
ordinal not in range(128)


Cmmenting out the line was enough to fix the problem.

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

Title:
  UnicodeDecodeError during backup due to non-utf8 translation

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

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

[Bug 989496] Re: UnicodeDecodeError during backup due to non-utf8 translation

2014-01-05 Thread Milan Bouchet-Valat
...and when passing a path with spaces, like file:///run/media/milan/TOSHIBA\ 
EXT/, I get:
Command line error : Expected 2 args, got 3

Looks like the path is split into two arguments.

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

Title:
  UnicodeDecodeError during backup due to non-utf8 translation

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

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

[Bug 989496] Re: UnicodeDecodeError during backup due to non-utf8 translation

2013-12-28 Thread Milan Bouchet-Valat
Great, now it works -- at least it fixes the crash I fixed with my quick
patch (and most probably much better).

(Sorry for missing the relevant gettext lines in the commit.)

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

Title:
  UnicodeDecodeError during backup due to non-utf8 translation

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