[Bug 2028165] Re: nvidia-dkms-* FTBS with linux 6.5

2024-03-31 Thread Dmitry Lapshin
Why nvidia-graphics-drivers-390 for jammy isn't assigned and just
confirmed? @p-pisati was the last uploader of the package for jammy, and
@albertomilone handled the mantic one, fix from the PPA seem to work
fine.

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

Title:
  nvidia-dkms-* FTBS with linux 6.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/2028165/+subscriptions


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

[Bug 2055686] Re: Drop ABI checks from kernel build

2024-03-29 Thread Dmitry Lapshin
Verified fix on jammy (not focal, sorry).

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

Title:
  Drop ABI checks from kernel build

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


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

[Bug 2059766] [NEW] Snapd date localization is VERY MUCH wrong

2024-03-29 Thread Dmitry Lapshin
Public bug reported:

Consider this:
```
dmitry@MUNIT-517:~$ LANG=C.UTF-8 snap info firefox | grep refresh-date
refresh-date: 3 days ago, at 11:52 EET
dmitry@MUNIT-517:~$ LANG=ru_RU.UTF-8 snap info firefox | grep refresh-date
refresh-date: 3 дня назад в 2626:52 UTC
```
2626 is a funny hour indeed.

After some research™ I've found out that:
1. Snappy asks gettext for a localized string "%d days ago, at 15:04 MST",
2. gettext finds a string from a language-pack,
3. Then this string is formatted using printf-like format and Go time 
formatting.

This language pack provides those:
```
msgid "%d day ago, at 15:04 MST"
msgid_plural "%d days ago, at 15:04 MST"
msgstr[0] "%d день назад в 22:04 UTC"
msgstr[1] "%d дня назад в 22:04 UTC"
msgstr[2] "%d дней назад в 22:04 UTC"
```

Unfortunately, Go time formatting layouts are made by writing out in the
way you like a particular magic datetime constant, and layout parser
extracts those magic digits to understand which parts of the date are to
be printed (see https://pkg.go.dev/time#pkg-constants). So, THE TIME
MUST NOT BE LOCALIZED. And there is no way to know that in advance if
you aren't aware of the ways of the Go language. Also, the magic
datetime is quite funny on it's own.

So, just change the lines to:
```
msgid "%d day ago, at 15:04 MST"
msgid_plural "%d days ago, at 15:04 MST"
msgstr[0] "%d день назад в 15:04 MST"
msgstr[1] "%d дня назад в 15:04 MST"
msgstr[2] "%d дней назад в 15:04 MST"
```

But you probably need to check the localization of every project written
in Go that formats time...

I guess if affects all releases...

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: language-pack-ru-base 1:22.04+20240212
ProcVersionSignature: Ubuntu 6.5.0-26.26~22.04.1-generic 6.5.13
Uname: Linux 6.5.0-26-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Fri Mar 29 11:45:24 2024
InstallationDate: Installed on 2022-04-19 (710 days ago)
InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819)
PackageArchitecture: all
SourcePackage: language-pack-ru-base
UpgradeStatus: Upgraded to jammy on 2022-08-21 (585 days ago)

** Affects: language-pack-ru-base (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy

** Description changed:

  Consider this:
  ```
  dmitry@MUNIT-517:~$ LANG=C.UTF-8 snap info firefox | grep refresh-date
  refresh-date: 3 days ago, at 11:52 EET
  dmitry@MUNIT-517:~$ LANG=ru_RU.UTF-8 snap info firefox | grep refresh-date
  refresh-date: 3 дня назад в 2626:52 UTC
  ```
  2626 is a funny hour indeed.
  
  After some research™ I've found out that:
  1. Snappy asks gettext for a localized string "%d days ago, at 15:04 MST",
- 2. gettext founds a string from a language-pack,
+ 2. gettext finds a string from a language-pack,
  3. Then this string is formatted using printf-like format and Go time 
formatting.
  
  This language pack provides those:
  ```
  msgid "%d day ago, at 15:04 MST"
  msgid_plural "%d days ago, at 15:04 MST"
  msgstr[0] "%d день назад в 22:04 UTC"
  msgstr[1] "%d дня назад в 22:04 UTC"
  msgstr[2] "%d дней назад в 22:04 UTC"
  ```
  
  Unfortunately, Go time formatting layouts are made by writing out in the
  way you like a particular magic datetime constant, and layout parser
  extracts those magic digits to understand which parts of the date are to
  be printed (see https://pkg.go.dev/time#pkg-constants). So, THE TIME
  MUST NOT BE LOCALIZED. And there is no way to know that in advance if
  you aren't aware of the ways of the Go language. Also, the magic
  datetime is quite funny on it's own.
  
  So, just change the lines to:
  ```
  msgid "%d day ago, at 15:04 MST"
  msgid_plural "%d days ago, at 15:04 MST"
  msgstr[0] "%d день назад в 15:04 MST"
  msgstr[1] "%d дня назад в 15:04 MST"
  msgstr[2] "%d дней назад в 15:04 MST"
  ```
  
  But you probably need to check the localization of every project written
  in Go that formats time...
  
  I guess if affects all releases...
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: language-pack-ru-base 1:22.04+20240212
  ProcVersionSignature: Ubuntu 6.5.0-26.26~22.04.1-generic 6.5.13
  Uname: Linux 6.5.0-26-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Mar 29 11:45:24 2024
  InstallationDate: Installed on 2022-04-19 (710 days ago)
  InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819)
  PackageArchitecture: all
  SourcePackage: language-pack-ru-base
  UpgradeStatus: Upgraded to jammy on 2022-08-21 (585 days ago)

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

Title:
  Snapd date localization is VERY MUCH wrong

To 

[Bug 1845214] Re: Keyboard NumLock indicator turns off on connecting another keyboard

2022-02-12 Thread Dmitry Lapshin
It's been several years since my report! Still reproducible on latest
Ubuntu.

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

Title:
  Keyboard NumLock indicator turns off on connecting another keyboard

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


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

[Bug 1933027] Re: Gdm3 with smartcard asks for login/smartcard pin even if there is no smartcard authentication enabled

2021-08-26 Thread Dmitry Lapshin
wastrel, you're my saviour! I wouldn't discover that there is an option
in ages!

I think this should be the default, actually, because as I've stated if
sssd is not configured in the system we should use passwords, and if
system administrator configures proper smartcard authentication only
then should there be an option to forbid passwords.

Actually, it looks even more strange that current option is sssd-
exclusive when you can just unplug the key and get a password prompt
anyway.

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

Title:
  Gdm3 with smartcard asks for login/smartcard pin even if there is no
  smartcard authentication enabled

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


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

[Bug 1933027] Re: Gdm3 with smartcard asks for login/smartcard pin even if there is no smartcard authentication enabled

2021-06-21 Thread Dmitry Lapshin
So... GDM actually just launches special session instance that is
actually a login screen? Now it's even more weird that gnome-shell
doesn't ask for PIN on lock screen.

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

Title:
  Gdm3 with smartcard asks for login/smartcard pin even if there is no
  smartcard authentication enabled

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

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

[Bug 1933027] [NEW] Gdm3 with smartcard asks for login/smartcard pin even if there is no smartcard authentication enabled

2021-06-20 Thread Dmitry Lapshin
Public bug reported:

I use my Ubuntu PC with Yubikey almost always plugged in. It provides
several security token interfaces, such as U2F, GPG smartcard,
proprieritary Yubico interfaces (of which I mostly use TOTP codes), and
also PIV smartcard. However, I haven't configured a PIV smartcard on it.

Whenever I login into the system having Yubikey plugged in, I'm prompted for 
login name, and then for PIN for some smartcard while also being asked to plug 
in one. This is very misleading on several layers:
1. I have the device providing smartcard plugged id,
2. But it's not the smartcard GDM would think it is as it's not configured 
properly,
3. There are no local smartcard-authenticating users right now in the system,
3. There are no remote authentication systems configured on the system (so no 
ActiveDirectory-smartcard logins or such).

If I unplug the token UX goes back on old good track.

Given the circumstances above, I'd consider that GDM (and, on my bet,
any PAM configuration it uses) shouldn't offer to login using smartcard
if there is no way to actually do so. I feel something is off here, so
I'm reporting a bug. It could be an upstream problem though; it also
could be an upstream SSSD problem, or all combined.

I believe there is a more clear user experience:
1. GDM should display users that can login into the system, as it always does 
(if configured). It may also provide entering other login name (also if 
configured). This is GDM usually does without smartcards altogether.
2. When user is chosen (from the list or manually typed in), check can this 
user even authenticate with smartcards (i.e. if any of available smartcards is 
actually recognised for this user). If so, then ask for PIN. Else, don't show 
anything about smartcards at all (this includes when SSSD is not configured for 
any AD or related and this user has no local smartcard configuration). This can 
switch there & back based on device events.
I've seen other OS doing this.

Ubuntu/Gnome session doesn't ask me for PIN for a smartcard on a lock
screen, so I guess it doesn't support it at all or correctly finds out
it can't be used. Even more, I couldn't find a way to actually add my
smartcard as a local login method.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: gdm3 3.38.2.1-2ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-18.19-generic 5.11.17
Uname: Linux 5.11.0-18-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu65.1
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Sun Jun 20 14:02:02 2021
InstallationDate: Installed on 2017-03-05 (1567 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: gdm3
UpgradeStatus: Upgraded to hirsute on 2021-05-13 (37 days ago)

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


** Tags: amd64 apport-bug hirsute

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

Title:
  Gdm3 with smartcard asks for login/smartcard pin even if there is no
  smartcard authentication enabled

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

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

[Bug 1931794] [NEW] do-release-upgrade failed

2021-06-13 Thread Dmitry Lapshin
Public bug reported:

do-release-upgrade 20.10 → 21.04 failed without any explicit message.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubuntu-release-upgrader-core 1:20.10.16
ProcVersionSignature: Ubuntu 5.8.0-56.63-generic 5.8.18
Uname: Linux 5.8.0-56-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu50.7
Architecture: amd64
CasperMD5CheckResult: skip
CrashDB: ubuntu
Date: Sun Jun 13 11:24:58 2021
InstallationDate: Installed on 2016-04-23 (1876 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to groovy on 2021-06-13 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2021-06-13 11:22:19.601477
 Log time: 2021-06-13 11:22:31.061452
 Log time: 2021-06-13 11:24:57.914073
 Log time: 2021-06-13 11:25:03.951045

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


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

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

Title:
  do-release-upgrade failed

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

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

[Bug 1922289] [NEW] Rust-src does not contain libsrc & libcore sources

2021-04-01 Thread Dmitry Lapshin
Public bug reported:

I have installed rust-src package to provide IDE support for Rust, yet
it lacked libstd/libcore sources that were actually desired. Older
version, 1.43, does contain those sources, and you can easily see that
upgrading to 1.47 removes about 28 MiB of files.

I've tried looking up other packages to check if libstd sources are
there using apt-file and haven't found any.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: rust-src 1.43.0+dfsg1+llvm-1~exp1ubuntu2
ProcVersionSignature: Ubuntu 5.8.0-48.54-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu50.5
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Thu Apr  1 23:22:11 2021
Dependencies:
 
InstallationDate: Installed on 2017-03-05 (1488 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: rustc
UpgradeStatus: Upgraded to groovy on 2020-12-22 (100 days ago)

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


** Tags: amd64 apport-bug groovy

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

Title:
  Rust-src does not contain libsrc & libcore sources

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

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

[Bug 1901669] Re: /etc/sudoers.d/99-snapd.conf is ignored

2021-02-16 Thread Dmitry Lapshin
Hi! Today, on Ubuntu 20.10, I still have this file installed as part of
snapd version 2.48.3+20.10. Reopen & 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/1901669

Title:
  /etc/sudoers.d/99-snapd.conf is ignored

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

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

[Bug 1909753] [NEW] Can't update system when using mirror:// repo

2020-12-31 Thread Dmitry Lapshin
Public bug reported:

I use mirror://mirrors.ubuntu.com/mirrors.txt as Ubuntu package
repository on my laptop, since I used to (thanks to COVID) travel and
wanted to use fastest mirror whenever possible. It works great, however
do-release-upgrade/update-manager both fail with those: they report as
if ubuntu-minimal package is missing (and I've checked that isn't the
case in all mirrors chosen by mirror://). So for last 3 updates or so I
have to manually switch mirror:// repository to some regional http://
one, then update-manager does it's thing, then I switch back and
everything works as expected.

I think that behaviour of do-release-upgrade can be fixed.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubuntu-release-upgrader-core 1:20.04.29
ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
CrashDB: ubuntu
Date: Thu Dec 31 16:01:58 2020
InstallationDate: Installed on 2016-04-23 (1712 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to focal on 2020-12-31 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2020-12-31 15:57:11.281233
 Log time: 2020-12-31 15:57:16.708208
 Log time: 2020-12-31 16:01:50.754834
 Log time: 2020-12-31 16:02:07.688083
VarLogDistupgradeTermlog:
 
modified.conffile..etc.update-manager.release-upgrades: [modified]
mtime.conffile..etc.update-manager.release-upgrades: 2020-12-31T14:36:38.501060

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


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

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

Title:
  Can't update system when using mirror:// repo

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

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

[Bug 1893961] [NEW] do-release-upgrade failed with message that ubuntu-minimal is missing

2020-09-02 Thread Dmitry Lapshin
Public bug reported:

That's pretty much it: i was trying to update 18.04 -> 20.04.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.38
ProcVersionSignature: Ubuntu 5.4.0-42.46~18.04.1-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.17
Architecture: amd64
CrashDB: ubuntu
Date: Wed Sep  2 18:13:39 2020
InstallationDate: Installed on 2016-04-23 (1592 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-09-02 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2020-09-02 18:12:21.116458
 Log time: 2020-09-02 18:12:49.832278
 Log time: 2020-09-02 18:13:38.361595
 Log time: 2020-09-02 18:13:54.216054

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


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

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

Title:
  do-release-upgrade failed with message that ubuntu-minimal is missing

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

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

[Bug 1668309] Re: Scaling on xps13 means only a part of the screen is visible at any time.

2020-01-29 Thread Dmitry Lapshin via ubuntu-bugs
Any progress here? Affects me on 18.04 LTS.

** Bug watch added: gitlab.gnome.org/GNOME/vino/issues #9
   https://gitlab.gnome.org/GNOME/vino/issues/9

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

Title:
  Scaling on xps13 means only a part of the screen is visible at any
  time.

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

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

[Bug 1668309] Re: Scaling on xps13 means only a part of the screen is visible at any time.

2020-01-29 Thread Dmitry Lapshin via ubuntu-bugs
I have filled an issue in upstream:
https://gitlab.gnome.org/GNOME/vino/issues/9

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

Title:
  Scaling on xps13 means only a part of the screen is visible at any
  time.

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

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

[Bug 1782679] Re: systemd-resolved can't resolve at all, need to add nameservers to resolve.conf

2019-09-29 Thread Dmitry Lapshin via ubuntu-bugs
Any progress here? systemd-resolved has plus that it's integrated with
DNS options from systemd-networkd, but for end user it has many issues,
especially related to DNSSEC.

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

Title:
  systemd-resolved can't resolve at all, need to add nameservers to
  resolve.conf

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

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

[Bug 1845214] [NEW] Keyboard NumLock indicator turns off on connecting another keyboard

2019-09-24 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

My USB HID keyboard has NumLock LED. It usually works fine. However,
when I plug in YubiKey (hardware security token, it is also identified
as a USB HID keyboard) NumLock LED turns OFF, but the NumLock feature is
still ON.

If I press NumLock, NumLock becomes disabled (it is displayed by DE and
checked by typing). If I press NumLock again, NumLock turns back ON with
LED.

I originally thought that issue could be related to the fact that
YubiKey does not have a NumLock led, so it reports LED as nonexisting
and stuff happens. However, today I tried attaching another USB
keyboard: LED on first one still goes off; but LED on second goes ON
immediately after plugging in. Pressing NumLock once disables NumLock
and LED on first keyboard, as with YubiKey; pressing again enabled
NumLock and both LEDs.

Seems like my user session (on vt2) is running Xorg while login screen
(on vt1, the one that allows to choose a user and that you see before
first login) is running Wayland; both are faulty. Because of this, I
believe the issue is in the kernel.

However, I am not sure, so you can ask for way more reports to be added,
I will add those. Reproducing should be pretty easy with any cheap USB
keyboards, nothing special is used by me.

Operating system: Ubuntu 18.04 Bionic Beaver.
Linux kernel: 18.04 HWE, 5.0.0-25. However, I think I saw this blinking before 
upgrading to HWE.
DE: GNOME.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-generic-hwe-18.04 5.0.0.29.86
ProcVersionSignature: Ubuntu 5.0.0-25.26~18.04.1-generic 5.0.18
Uname: Linux 5.0.0-25-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.7
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Sep 24 16:52:08 2019
SourcePackage: linux-meta-hwe
UpgradeStatus: Upgraded to bionic on 2018-09-03 (386 days ago)

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

Title:
  Keyboard NumLock indicator turns off on connecting another keyboard

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

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

[Bug 1814169] Re: Mutter upsteam bug: cannot overwrite workspaces layout

2019-03-12 Thread Dmitry Lapshin via ubuntu-bugs
Huh. So, when will the fixed version land? For now, I rebuild published
version with the patch above.

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

Title:
  Mutter upsteam bug: cannot overwrite workspaces layout

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

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

[Bug 1814169] Re: Mutter upsteam bug: cannot overwrite workspaces layout

2019-01-31 Thread Dmitry Lapshin via ubuntu-bugs
Patch as a file

** Patch added: "0001-Allow-workspace-layout-to-be-overridden.patch"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1814169/+attachment/5234887/+files/0001-Allow-workspace-layout-to-be-overridden.patch

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

Title:
  Mutter upsteam bug: cannot overwrite workspaces layout

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

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

[Bug 1814169] [NEW] Mutter upsteam bug: cannot overwrite workspaces layout

2019-01-31 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

Running up-to-date Ubuntu Cosmic. Since I am running a version with
manually applied patched from below, I couldn't use the ubuntu-bug
helper.

Bug: When using GNOME extension “Workspace grid” that arranges
workspaces in a grid, one can find that horizontal switch animation is
replaced with a vertical one. This is caused by a bug in mutter itself,
it's acknowledged and fixed in upsteam. Applying the patch for the
current version in Ubuntu solves the issue as well.

GIFs of the issue could be found here: https://medium.com/@hkdb/patch-
gnome-3-30-for-workspace-grid-1ee8b1dd92f9.

Upstream bug: https://gitlab.gnome.org/GNOME/mutter/issues/270.
Upsteam fix: 
https://gitlab.gnome.org/rmyorston/mutter/commit/97a3a9b24b3655003467d5fac6bb1ec1c60e
 (merged into master 3 months ago).

The patch to fix is, literally, adding 1 meaningful line:

>From 86a719cc78149b7db189ff7e5d1f16418d257e9e Mon Sep 17 00:00:00 2001
From: Ron Yorston 
Date: Tue, 2 Oct 2018 12:47:05 +0100
Subject: [PATCH] Allow workspace layout to be overridden

meta_workspace_manager_override_workspace_layout is implemented by
calling meta_workspace_manager_update_workspace_layout which
respects the workspace_layout_overridden flag.  After the first call
to meta_workspace_manager_override_workspace_layout all subsequent
calls fail silently.

Reset workspace_layout_overridden to FALSE before calling
meta_workspace_manager_update_workspace_layout.

Signed-off-by: Ron Yorston 
---
 src/core/meta-workspace-manager.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/core/meta-workspace-manager.c 
b/src/core/meta-workspace-manager.c
index 2670f4938..abc819db0 100644
--- a/src/core/meta-workspace-manager.c
+++ b/src/core/meta-workspace-manager.c
@@ -496,6 +496,8 @@ meta_workspace_manager_override_workspace_layout 
(MetaWorkspaceManager *workspac
   int   n_rows,
   int   
n_columns)
 {
+  workspace_manager->workspace_layout_overridden = FALSE;
+
   meta_workspace_manager_update_workspace_layout (workspace_manager,
   starting_corner,
   vertical_layout,
-- 
2.17.1

Hopefully this one is fast to test and apply ;)

** Affects: mutter (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/1814169

Title:
  Mutter upsteam bug: cannot overwrite workspaces layout

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

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

[Bug 1772688] Re: Aptitude does not want to autoremove Linux kernel, while apt wants

2018-08-02 Thread Dmitry Lapshin via ubuntu-bugs
It's actually the files that configure apt to do intended behavior, but
somehow aptitude has it's own mind :/

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

Title:
  Aptitude does not want to autoremove Linux kernel, while apt wants

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

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

[Bug 1772688] Re: Aptitude does not want to autoremove Linux kernel, while apt wants

2018-05-22 Thread Dmitry Lapshin via ubuntu-bugs
Forgot one thing: if ask aptitude explicitly why linux-image-... is
needed, it will reply that no reason for this package was found.

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

Title:
  Aptitude does not want to autoremove Linux kernel, while apt wants

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

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

[Bug 1772688] [NEW] Aptitude does not want to autoremove Linux kernel, while apt wants

2018-05-22 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

>From some update last year or so, apt has achived the tools to remove
old Linux kernels via /etc/kernel/postinst.d/apt-auto-removal. This is
really great, but for some reason, all apt tools agree on this (apt-get
autoremove, apt autoremove), but aptitude does not.

For example, here I have an installation where 4.15.0-20 is safe for
deinstallation, and generated by script above config agrees:

  $ LANG=C apt --dry-run autoremove
  NOTE: This is only a simulation!
apt needs root privileges for real execution.
Keep also in mind that locking is deactivated,
so don't depend on the relevance to the real current situation!
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  The following packages will be REMOVED:
linux-cloud-tools-4.15.0-20 linux-cloud-tools-4.15.0-20-generic 
linux-headers-4.15.0-20
linux-headers-4.15.0-20-generic linux-image-4.15.0-20-generic 
linux-modules-4.15.0-20-generic
linux-modules-extra-4.15.0-20-generic linux-tools-4.15.0-20 
linux-tools-4.15.0-20-generic
  0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded.
  Remv linux-cloud-tools-4.15.0-20-generic [4.15.0-20.21]
  Remv linux-cloud-tools-4.15.0-20 [4.15.0-20.21]
  Remv linux-headers-4.15.0-20-generic [4.15.0-20.21] <--- Those
  Remv linux-headers-4.15.0-20 [4.15.0-20.21] <--- 
little
  Remv linux-modules-extra-4.15.0-20-generic [4.15.0-20.21]
  Remv linux-image-4.15.0-20-generic [4.15.0-20.21]   <--- 
buggers
  Remv linux-modules-4.15.0-20-generic [4.15.0-20.21] <--- here!
  Remv linux-tools-4.15.0-20-generic [4.15.0-20.21]
  Remv linux-tools-4.15.0-20 [4.15.0-20.21]

but aptitude does not:

  $ LANG=C aptitude --simulate safe-upgrade
  The following packages will be REMOVED:
linux-cloud-tools-4.15.0-20{u} linux-cloud-tools-4.15.0-20-generic{u}
linux-modules-extra-4.15.0-20-generic{u} linux-tools-4.15.0-20{u}
linux-tools-4.15.0-20-generic{u}
  0 packages upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
  Need to get 0 B of archives. After unpacking 178 MB will be freed.

  Note: Using 'Simulate' mode.
  Do you want to continue? [Y/n/?] y
  Would download/install/remove packages.

Removing modules-extra seems fine for it, though!
I have looked over all apt configs, there was no sign for me that aptitude was 
configured specificly to keep the images.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: aptitude 0.8.10-6ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-21.22-generic 4.15.17
Uname: Linux 4.15.0-21-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue May 22 19:48:48 2018
InstallationDate: Installed on 2017-03-05 (443 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: aptitude
UpgradeStatus: Upgraded to bionic on 2018-05-03 (18 days ago)

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


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

Title:
  Aptitude does not want to autoremove Linux kernel, while apt wants

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

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

[Bug 1769456] [NEW] Thunderbird renders emoji in email subject with enourmous size

2018-05-06 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

Well, if you have an email with an emoji in subject, Thunderbird renders
it with enourmous size, like 6-7 rows in mail list.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: thunderbird 1:52.7.0+build1-0ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
Uname: Linux 4.15.0-20-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ldvsoft2831 F pulseaudio
BuildID: 20180416164209
Channel: Unavailable
CurrentDesktop: ubuntu:GNOME
Date: Sun May  6 14:31:48 2018
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-04-23 (742 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
IpRoute:
 default via 192.168.1.1 dev wlp3s0 proto dhcp metric 600 
 10.205.113.0/24 dev docker0 proto kernel scope link src 10.205.113.1 linkdown 
 169.254.0.0/16 dev wlp3s0 scope link metric 1000 
 172.17.0.0/16 dev br-cf01c9a4a624 proto kernel scope link src 172.17.0.1 
linkdown 
 192.168.1.0/24 dev wlp3s0 proto kernel scope link src 192.168.1.124 metric 600
Locales: extensions.sqlite corrupt or missing
PrefSources:
 prefs.js
 /usr/share/xul-ext/enigmail/defaults/preferences/enigmail.js
 /usr/share/xul-ext/enigmail/defaults/preferences/000system.js
ProcEnviron:
 TERM=tmux-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
Profiles: Profile0 (Default) - LastVersion=52.7.0/20180416164209 (In use)
RunningIncompatibleAddons: False
SourcePackage: thunderbird
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: Upgraded to bionic on 2018-05-04 (1 days ago)
dmi.bios.date: 06/16/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: U40Sd.202
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: U40Sd
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.:bvrU40Sd.202:bd06/16/2011:svnASUSTeKComputerInc.:pnU40Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU40Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.family: U
dmi.product.name: U40Sd
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.

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


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

Title:
  Thunderbird renders emoji in email subject with enourmous size

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

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

[Bug 1767669] [NEW] Systemd-resolved cannot forget local DNS Domain name after leaving the network

2018-04-28 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

At my university, WiFi network setup sets a local DNS Domain name (in a
form of .). That's alright; but when I
come home with my laptop and resume it, the local DNS Domain name is
still set (checked via systemd-resovle --status), and because of that I
cannot open my university website: it's domain cannot be resoved on a
local DNS (of course it cannot be resolved, it's not in local network
anymore). Resolving manually on any other DNS server (via dig
@) works perfectly fine. Resolving
any non-local name works fine too. DNS resolver IP's are right.
Restarting systemd-resolved or-and NetworkManager does not fix the
issue, only the full reboot can help. That's pretty annoying.

I am running Ubuntu 17.10 (soon to be upgraded to 18.04). Have this
issue since installing 17.10, but wasn't able to find a clue until
today.

What should be happening: Well, after I leave the network, resolver
should forget local settings from that network, right?

What is happeing: it does not. Well, at least the resolver ip's are
right.

P.S. It might be a NetworkManager issue but the only thing that I find
that remembers local DNS is the systemd-resolved, feel free to change
package.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: systemd 234-2ubuntu12.3
ProcVersionSignature: Ubuntu 4.13.0-39.44-generic 4.13.16
Uname: Linux 4.13.0-39-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.8
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Apr 28 18:26:01 2018
InstallationDate: Installed on 2016-04-23 (734 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
MachineType: ASUSTeK Computer Inc. U40Sd
ProcEnviron:
 LANG=ru_RU.UTF-8
 TERM=tmux-256color
 SHELL=/bin/bash
 XDG_RUNTIME_DIR=
 PATH=(custom, user)
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-39-generic 
root=UUID=ea1ac96c-71bd-4b8e-81ad-24abb9a24ce0 ro nogpumanager quiet splash 
vt.handoff=7
SourcePackage: systemd
SystemdDelta:
 [EXTENDED]   /lib/systemd/system/docker.service → 
/etc/systemd/system/docker.service.d/docker.conf
 [EXTENDED]   /lib/systemd/system/rc-local.service → 
/lib/systemd/system/rc-local.service.d/debian.conf
 [EXTENDED]   /lib/systemd/system/user@.service → 
/lib/systemd/system/user@.service.d/timeout.conf
 
 3 overridden configuration files found.
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/16/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: U40Sd.202
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: U40Sd
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.:bvrU40Sd.202:bd06/16/2011:svnASUSTeKComputerInc.:pnU40Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU40Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.family: U
dmi.product.name: U40Sd
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.
mtime.conffile..etc.systemd.resolved.conf: 2018-04-19T19:34:54.154657

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


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

Title:
  Systemd-resolved cannot forget local DNS Domain name after leaving the
  network

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

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

[Bug 1757960] Re: Gnome Shell crashes with SIGSEGV when I turn off the monitor

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
While I can reproduce the bug for 100%, only one file is present in
/var/crash, and it was an old night crash. I still reported it:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1757978

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1757960] ProcCpuinfoMinimal.txt

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1757960/+attachment/5086661/+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/1757960

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1757960] JournalErrors.txt

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1757960/+attachment/5086660/+files/JournalErrors.txt

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1757960] Re: Gnome Shell crashes with SIGSEGV when I turn off the monitor

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
apport information

** Tags added: apport-collected artful

** Description changed:

  For quite some time, I have seen my gnome-shell session randomly dying
  on me when I am away from the desktop for quite some time. Only now have
  I found the reproducable cause: when my monitor is turned off (by power
  preserving or by pressing the power button), Shell SISSEGVs out of
  existance. I guess it is highly related to my destop configuration: I
  use proprietary NVIDIA drivers and my display is connected via
  DisplayPort, if this gives you ideas. Maybe in the end the bug is in the
  driver?
  
- Here are some system logs around the time of a crash, maybe it can give
- you ideas what to check or whom to blame. If you need any other
- information, don't hesitate asking me for it, I will try my best.
+ Here are some system logs around the time of a crash, maybe it can give you 
ideas what to check or whom to blame. If you need any other information, don't 
hesitate asking me for it, I will try my best.
+ --- 
+ ApportVersion: 2.20.7-0ubuntu3.7
+ Architecture: amd64
+ CurrentDesktop: ubuntu:GNOME
+ DisplayManager: gdm3
+ DistroRelease: Ubuntu 17.10
+ GsettingsChanges:
+  org.gnome.shell enabled-extensions 
['alternate-...@gnome-shell-extensions.gcampax.github.com', 
'workspace-g...@mathematical.coffee.gmail.com', 
'panel-...@berend.de.schouwer.gmail.com', 
'Per_Window_Keyboard_Layout@nullie-laptop', 'ubuntu-appindicat...@ubuntu.com', 
'system-moni...@paradoxxx.zero.gmail.com', 'disconnect-w...@kgshank.net', 
'logoutbut...@kyle.aims.ac.za', 
'native-window-placem...@gnome-shell-extensions.gcampax.github.com', 
'drive-m...@gnome-shell-extensions.gcampax.github.com', 
'remove-dropdown-arr...@mpdeimos.com']
+  org.gnome.shell command-history ['', 'r']
+  org.gnome.shell favorite-apps ['org.gnome.Terminal.desktop', 
'org.gnome.Nautilus.desktop', 'google-chrome.desktop']
+  org.gnome.desktop.interface gtk-im-module 'ibus'
+  org.gnome.desktop.interface clock-show-date true
+ InstallationDate: Installed on 2017-03-05 (381 days ago)
+ InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
+ NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
+ Package: gnome-shell 3.26.2-0ubuntu0.1
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=tmux-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=ru_RU.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 4.13.0-37.42-generic 4.13.13
+ Tags:  artful
+ Uname: Linux 4.13.0-37-generic x86_64
+ UpgradeStatus: Upgraded to artful on 2018-01-11 (69 days ago)
+ UserGroups: adm cdrom dip docker lpadmin lxd plugdev sambashare sudo video 
wireshark
+ _MarkForUpload: True

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1757960] Re: Gnome Shell crashes with SIGSEGV when I turn off the monirot

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
** Description changed:

  For quite some time, I have seen my gnome-shell session randomly dying
  on me when I am away from the desktop for quite some time. Only now have
- I found the reproducable cause: when my moni
+ I found the reproducable cause: when my monitor is turned off (by power
+ preserving or by pressing the power button), Shell SISSEGVs out of
+ existance. I guess it is highly related to my destop configuration: I
+ use proprietary NVIDIA drivers and my display is connected via
+ DisplayPort, if this gives you ideas. Maybe in the end the bug is in the
+ driver?
+ 
+ Here are some system logs around the time of a crash, maybe it can give
+ you ideas what to check or whom to blame. If you need any other
+ information, don't hesitate asking me for it, I will try my best.

** Summary changed:

- Gnome Shell crashes with SIGSEGV when I turn off the monirot
+ Gnome Shell crashes with SIGSEGV when I turn off the monitor

** Attachment added: "System journal segment around one of the latest crashes"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1757960/+attachment/5086652/+files/gnome-session-related.log

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1731587] Re: Application 'org.gnome.Shell.desktop' killed by signal 11

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
I get this bug ofter when I am away from the computer: on my return my
session is dead :/

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

Title:
  Application 'org.gnome.Shell.desktop' killed by signal 11

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1731587/+subscriptions

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

[Bug 1757960] [NEW] Gnome Shell crashes with SIGSEGV when I turn off the monitor

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

For quite some time, I have seen my gnome-shell session randomly dying
on me when I am away from the desktop for quite some time. Only now have
I found the reproducable cause: when my monitor is turned off (by power
preserving or by pressing the power button), Shell SISSEGVs out of
existance. I guess it is highly related to my destop configuration: I
use proprietary NVIDIA drivers and my display is connected via
DisplayPort, if this gives you ideas. Maybe in the end the bug is in the
driver?

Here are some system logs around the time of a crash, maybe it can give
you ideas what to check or whom to blame. If you need any other
information, don't hesitate asking me for it, I will try my best.

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monitor

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

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

[Bug 1757961] [NEW] Gnome Shell crashes with SIGSEGV when I turn off the monirot

2018-03-22 Thread Dmitry Lapshin via ubuntu-bugs
Public bug reported:

For quite some time, I have seen my gnome-shell session randomly dying
on me when I am away from the desktop for quite some time. Only now have
I found the reproducable cause: when my moni

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

Title:
  Gnome Shell crashes with SIGSEGV when I turn off the monirot

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

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

[Bug 1450287] Re: dput hard-codes path to gpg binary

2017-02-07 Thread Dmitry Lapshin
So, since fix is released in Debian, will it be fixed in Ubuntu?

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

Title:
  dput hard-codes path to gpg binary

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

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


[Bug 1651780] [NEW] package postgresql-9.5 (not installed) failed to install/upgrade: подпроцесс установлен сценарий post-removal возвратил код ошибки 1

2016-12-21 Thread Dmitry Lapshin
Public bug reported:

I was uninstalling postgresql and got some errors. Second attempt though
was successful.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: postgresql-9.5 (not installed)
ProcVersionSignature: Ubuntu 4.4.0-53.74-generic 4.4.30
Uname: Linux 4.4.0-53-generic x86_64
NonfreeKernelModules: nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.4
AptOrdering:
 postgresql: Purge
 postgresql-contrib-9.5: Purge
 postgresql-9.5: Purge
 postgresql-common: Purge
 NULL: ConfigurePending
Architecture: amd64
Date: Thu Dec 15 16:23:15 2016
ErrorMessage: подпроцесс установлен сценарий post-removal возвратил код ошибки 1
InstallationDate: Installed on 2016-04-23 (241 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15ubuntu0.2
SourcePackage: postgresql-9.5
Title: package postgresql-9.5 (not installed) failed to install/upgrade: 
подпроцесс установлен сценарий post-removal возвратил код ошибки 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: postgresql-9.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package postgresql-9.5 (not installed) failed to install/upgrade:
  подпроцесс установлен сценарий post-removal возвратил код ошибки 1

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

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

[Bug 1614253] Re: cd ../ fails to complete directories from symbolic link to another filesystem

2016-08-17 Thread Dmitry Lapshin
** Description changed:

  I have found strange fault of bash completion for cd builtin.
  It's best described with an example.
  Let's just think I have second drive mounted on /mnt
  
  $ mkdir /tmp/bug && cd /tmp/bug
  $ mkdir 1
  $ ln -s link-1 1
  $ ln -s link-fs /mnt
  $ ls -l # To see contents
  drwxrwxrwx ... 1
  lrwxrwxrwx ... link-1 -> 1
  lrwxrwxrwx ... link-fs -> /mnt
  $ cd 1
  $ cd ../[TAB TAB] # Works fine
  1/link-1/link-fs/
  $ cd ../link-1
  $ cd ../[TAB TAB] # Works fine too
  1/link-1/link-fs/
  $ cd ../link-fs
  $ cd ../[TAB TAB] # !! Ooups, nothing !!
  $ ls ../[TAB TAB] # But hey, that works!
  1/link-1/link-fs/
- $ cd ../[TAB TAB] # That works fine too
+ $ cd /mnt; cd ../[TAB TAB] # That works fine too
  bin/boot/...
  $ cd ../
  
  This behaviour looks very strange for me, and I don't know, is that
  behaviour triggered by bash-completion or by bash itself, but that's
  definetly a small, but annoying bug.
  
  Running 16.04.1 (xenial), bash is 4.3-14ubuntu1.1, bash-completion is
  1:2.1-4.2ubuntu1.1

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

Title:
  cd ../ fails to complete directories from symbolic link to another
  filesystem

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

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


[Bug 1614253] [NEW] cd ../ fails to complete directories from symbolic link to another filesystem

2016-08-17 Thread Dmitry Lapshin
Public bug reported:

I have found strange fault of bash completion for cd builtin.
It's best described with an example.
Let's just think I have second drive mounted on /mnt

$ mkdir /tmp/bug && cd /tmp/bug
$ mkdir 1
$ ln -s link-1 1
$ ln -s link-fs /mnt
$ ls -l # To see contents
drwxrwxrwx ... 1
lrwxrwxrwx ... link-1 -> 1
lrwxrwxrwx ... link-fs -> /mnt
$ cd 1
$ cd ../[TAB TAB] # Works fine
1/link-1/link-fs/
$ cd ../link-1
$ cd ../[TAB TAB] # Works fine too
1/link-1/link-fs/
$ cd ../link-fs
$ cd ../[TAB TAB] # !! Ooups, nothing !!
$ ls ../[TAB TAB] # But hey, that works!
1/link-1/link-fs/
$ cd ../[TAB TAB] # That works fine too
bin/boot/...
$ cd ../

This behaviour looks very strange for me, and I don't know, is that
behaviour triggered by bash-completion or by bash itself, but that's
definetly a small, but annoying bug.

Running 16.04.1 (xenial), bash is 4.3-14ubuntu1.1, bash-completion is
1:2.1-4.2ubuntu1.1

** Affects: bash-completion (Ubuntu)
 Importance: Undecided
 Status: New

** Summary changed:

- Fails to complete directories of parent of symbolic link to another filesystem
+ cd ../ fails to complete directories from symbolic link to another filesystem

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

Title:
  cd ../ fails to complete directories from symbolic link to another
  filesystem

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

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


[Bug 1360005] Re: Cyrillic symbols looks strange when using autocompletion

2016-08-17 Thread Dmitry Lapshin
Tried on trusty, works fine:

touch Файл\ с\ кучей\ пробелов
echo ./Фа[TAB pressed]йл\ с\ кучей\ пробелов

All symbols look perfectly fine.

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

Title:
  Cyrillic symbols looks strange when using autocompletion

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

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

[Bug 1450287] Re: dput hard-codes path to gpg binary

2016-06-11 Thread Dmitry Lapshin
Also, if not adding a way to change the whole path, there should be a
way to pass option to use gpg2 instead. For example, debuild has -p
option.

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

Title:
  dput hard-codes path to gpg binary

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

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


[Bug 1473678] Re: [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

2015-08-03 Thread Dmitry Lapshin
Sound card is OK: works fine on Windows 7.

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

Title:
  [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

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

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


[Bug 1473678] Re: [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

2015-07-11 Thread Dmitry Lapshin
I tryed installing oem-audio-daily-dkms, it made laptop's sound better,
but didn't change the HDMI

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

Title:
  [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

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

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


[Bug 1473678] [NEW] [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

2015-07-11 Thread Dmitry Lapshin
Public bug reported:

I am trying to play sound on TV via HDMI, and have no sound. There are
HDMI option in sound controls, ALSA seems OK, but no sound at all.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: pulseaudio 1:4.0-0ubuntu11.1
ProcVersionSignature: Ubuntu 3.13.0-58.97-generic 3.13.11-ckt22
Uname: Linux 3.13.0-58-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ldvsoft   12776 F pulseaudio
 /dev/snd/pcmC0D0c:   ldvsoft   12776 F...m pulseaudio
 /dev/snd/pcmC0D3p:   ldvsoft   12776 F...m pulseaudio
CurrentDesktop: Unity
Date: Sat Jul 11 22:59:14 2015
InstallationDate: Installed on 2014-08-31 (314 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
SourcePackage: pulseaudio
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
Symptom_Card: Встроенное аудио - HDA Intel PCH
Symptom_DevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ldvsoft   12776 F pulseaudio
 /dev/snd/pcmC0D0c:   ldvsoft   12776 F...m pulseaudio
 /dev/snd/pcmC0D3p:   ldvsoft   12776 F...m pulseaudio
Symptom_Jack: Digital Out, HDMI
Symptom_PulsePlaybackTest: PulseAudio playback test failed
Symptom_Type: No sound at all
Title: [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/16/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: U40Sd.202
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: U40Sd
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.:bvrU40Sd.202:bd06/16/2011:svnASUSTeKComputerInc.:pnU40Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU40Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.name: U40Sd
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.
modified.conffile..etc.pulse.daemon.conf: [modified]
modified.conffile..etc.xdg.autostart.pulseaudio.desktop: [modified]
mtime.conffile..etc.pulse.daemon.conf: 2014-10-31T01:00:14.774696
mtime.conffile..etc.xdg.autostart.pulseaudio.desktop: 2015-03-19T14:31:52.568787

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


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

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

Title:
  [U40Sd, Intel ID 2805, Digital Out, HDMI] No sound at all

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

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