[Bug 1883128] [NEW] package ca-certificates 20190110ubuntu1.1 failed to install/upgrade: installed ca-certificates package post-installation script subprocess returned error exit status 1

2020-06-11 Thread Nicolay Giraldo
Public bug reported:

I just got this message.  Not sure what it means.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: ca-certificates 20190110ubuntu1.1
Uname: Linux 5.6.0-15.2-liquorix-amd64 x86_64
ApportVersion: 2.20.11-0ubuntu27.2
Architecture: amd64
CasperMD5CheckResult: skip
Date: Thu Jun 11 09:46:52 2020
ErrorMessage: installed ca-certificates package post-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2020-05-29 (13 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
PackageArchitecture: all
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: ca-certificates
Title: package ca-certificates 20190110ubuntu1.1 failed to install/upgrade: 
installed ca-certificates package post-installation script subprocess returned 
error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ca-certificates (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  package ca-certificates 20190110ubuntu1.1 failed to install/upgrade:
  installed ca-certificates package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1872541] Re: MySQL client fails to connect, seems to force SSL

2020-05-21 Thread Nicolay Giraldo
Even with a compatible MySQL version, the client should not try to force
an SSL connection when it is not requested.

For now, --ssl-mode=DISABLED is required, so this is IMO, a confirmed
bug.

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

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 1873583] [NEW] Wrong mapping of surround audio to speakers

2020-04-18 Thread Nicolay Giraldo
Public bug reported:

When opening a 5.1 test audio file, and using a 5.1 sound system, the
sounds are reproduced in the wrong speakers.

This has been confirmed with Ubuntu 18.04 and Ubuntu 20.04.

As confirmation test:

VLC outputs the correct sounds to each speaker.

Booting to Windows and using Windows Media Player also outputs the
correct sounds to each speaker.

** Affects: audacious (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/1873583

Title:
  Wrong mapping of surround audio to speakers

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

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

[Bug 1872541] Re: MySQL client fails to connect, seems to force SSL

2020-04-17 Thread Nicolay Giraldo
Another workaround not to require adding the --ssl-mode parameter to
MySQL command line:

Create a file ~/.my.cnf

With contents:

[client]
ssl_mode=DISABLED

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

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 1872541] Re: MySQL client fails to connect, seems to force SSL

2020-04-17 Thread Nicolay Giraldo
In case I do actually want to use certificates and SSL, the error when
connecting to Aurora DB is a bit different:

In C++:

# ERR: SQLException in query: [] on line 0
# ERR: SSL connection error: error:1425F102:SSL 
routines:ssl_choose_client_version:unsupported protocol (MySQL error code: 
2026, SQLState: HY000 )

Using the command line client mysql:

mysql -h servername.rds.amazonaws.com -u username -p 
--ssl-ca=/home/username/sslcert/rds-combined-ca-bundle.pem --ssl-mode=VERIFY_CA
Enter password: 
ERROR 2026 (HY000): SSL connection error: 
error:0001:lib(0):func(0):reason(1)

Again, all this works in previous versions of Ubuntu.

I guess if the connection works this is what Robie Basak means by a
downgrade attack.

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

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 1872541] Re: MySQL client fails to connect, seems to force SSL

2020-04-17 Thread Nicolay Giraldo
I found a workaround for C++ when I don't want to use certificates:

sql::Driver *driver;
sql::ConnectOptionsMap connection_properties;
sql::Connection *con;

connection_properties["hostName"] = host;
connection_properties["userName"] = username;
connection_properties["password"] = password;
connection_properties["schema"] = dbname;
connection_properties["port"] = port;
connection_properties["OPT_RECONNECT"] = true;
connection_properties["CLIENT_COMPRESS"] = true;
connection_properties["OPT_SSL_MODE"] = sql::SSL_MODE_DISABLED;

con = driver->connect(connection_properties);

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

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 1872541] Re: MySQL client fails to connect, seems to force SSL

2020-04-15 Thread Nicolay Giraldo
I am not connecting to Ubuntu 20.04 mysql-server locally, in fact, I
don't have mysql-server installed in the machine.

I am connecting to a remote server that reports this version:

Server version: 5.6.10-log MySQL Community Server (GPL)

It is a server running Aurora AWS. I can't update that server to latest
MySQL version, that is something only AWS can do.

The server has some test usernames that require SSL, but my username
doesn't require it.

My mysql-client configuration files are all default.

No previous Ubuntu version has this issue, I tested several versions
running on virtual machines.

If I install mariadb-client it also can connect without issues.

** Changed in: mysql-8.0 (Ubuntu)
   Status: Incomplete => New

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

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 1872541] [NEW] MySQL client fails to connect, seems to force SSL

2020-04-13 Thread Nicolay Giraldo
Public bug reported:

Description:Ubuntu Focal Fossa (development branch)
Release:20.04

mysql  Ver 8.0.19-0ubuntu4 for Linux on x86_64 ((Ubuntu))

I get this error from command line when trying to connect to a remote
server:

# ERR: SSL connection error: error:1425F102:SSL
routines:ssl_choose_client_version:unsupported protocol (MySQL error
code: 2026, SQLState: HY000 )

I get the same error from C++ scripts using MySQL Connector++.

Only way mysql command line works is to add --ssl-mode=DISABLED

Server version: 5.6.10-log MySQL Community Server (GPL)

The connection goes through OpenVPN.

Alternative solution:  Using instead mariadb-client works without
problems.

Older versions of Ubuntu don't present this issue. I tested 16.04,
18.04, 19.10, and I can connect using mysql in all of them.

Fails in 20.04 in a virtual machine too.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: mysql-client 8.0.19-0ubuntu4
ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
Uname: Linux 5.4.0-21-generic x86_64
ApportVersion: 2.20.11-0ubuntu26
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 13 13:42:25 2020
InstallationDate: Installed on 2020-04-12 (0 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200409)
PackageArchitecture: all
SourcePackage: mysql-8.0
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-8.0 (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/1872541

Title:
  MySQL client fails to connect, seems to force SSL

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

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

[Bug 474612] Re: [Transmission] "Peer not found. Restart the torrent." message extremely often

2020-03-12 Thread Nicolay Giraldo
Zamunda only works correctly if your IP is from Bulgaria.

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

Title:
  [Transmission] "Peer not found. Restart the torrent." message
  extremely often

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

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

[Bug 1222873] Re: No sound at all in Saucy

2013-10-30 Thread Nicolay Giraldo
** This bug is no longer a duplicate of bug 1223549
   No sound playback

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

Title:
  No sound at all in Saucy

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

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


[Bug 1223549] Re: No sound playback

2013-10-25 Thread Nicolay Giraldo
The fix is the same as the fix for the sound issues in Skype:

sudo sed -i 's/^Exec=.*/Exec=env PULSE_LATENCY_MSEC=30 audacity %U/'
/usr/share/applications/audacity.desktop

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

Title:
  No sound playback

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

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


[Bug 1222873] Re: No sound at all in Saucy

2013-10-25 Thread Nicolay Giraldo
*** This bug is a duplicate of bug 1223549 ***
https://bugs.launchpad.net/bugs/1223549

** This bug has been marked a duplicate of bug 1223549
   No sound playback

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

Title:
  No sound at all in Saucy

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

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


[Bug 1222873] Re: No sound at all in Saucy

2013-10-24 Thread Nicolay Giraldo
The fix is the same as the fix for the sound issues in Skype:

sudo sed -i 's/^Exec=.*/Exec=env PULSE_LATENCY_MSEC=30 audacity %U/'
/usr/share/applications/audacity.desktop

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

Title:
  No sound at all in Saucy

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

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