[Bug 552801] Re: [Lucid] Karmic -> Lucid upgrade and Compiz settings are not all saved

2010-04-25 Thread Giovanni G.
On X start window decorator is not started. I have to enable advanced video 
settings to have it run, but that setting is not saved, so on next reboot my 
settings are "none" again and decorator not start.
Changing Visual effects to "Normal" or "Enhanced" again works, but settings are 
not saved. I need to reenable them at each restart

-- 
[Lucid] Karmic -> Lucid upgrade and Compiz settings are not all saved
https://bugs.launchpad.net/bugs/552801
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 552801] Re: [Lucid] Karmic -> Lucid upgrade and Compiz settings are not all saved

2010-04-25 Thread Giovanni G.
Btw done karmik to lucid update with release candidate (update done on
april the 24th)

-- 
[Lucid] Karmic -> Lucid upgrade and Compiz settings are not all saved
https://bugs.launchpad.net/bugs/552801
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 441039] Re: Ubuntu One crashed on launch

2010-05-05 Thread Giovanni G.
giova...@pc-giovanni:~$ ubuntuone-preferences 
/usr/share/themes/Murrine-Sky/gtk-2.0/gtkrc:45: Murrine configuration option 
"scrollbar_color" is no longer supported and will be ignored.
/usr/share/themes/Murrine-Sky/gtk-2.0/gtkrc:51: Murrine configuration option 
"hilight_ratio" will be deprecated in future releases. Please use 
"highlight_shade" instead.
/usr/share/themes/Murrine-Sky/gtk-2.0/gtkrc:54: Murrine configuration option 
"gradients" is no longer supported and will be ignored.
Traceback (most recent call last):
  File "/usr/bin/ubuntuone-preferences", line 1146, in 
prefs_dialog = UbuntuOneDialog()
  File "/usr/bin/ubuntuone-preferences", line 538, in __init__
self.__construct()
  File "/usr/bin/ubuntuone-preferences", line 978, in __construct
self.devices.list_devices()
  File "/usr/bin/ubuntuone-preferences", line 382, in list_devices
fsync_enabled = self.sdtool.is_files_sync_enabled()
  File "/usr/lib/python2.6/dist-packages/ubuntuone/syncdaemon/tools.py", line 
708, in is_files_sync_enabled
return get_user_config().get_files_sync_enabled()
  File "/usr/lib/python2.6/dist-packages/ubuntuone/syncdaemon/config.py", line 
148, in wrapped
return meth(self, *args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/ubuntuone/syncdaemon/config.py", line 
321, in get_files_sync_enabled
return self.get_parsed(MAIN, 'files_sync_enabled')
  File "/usr/lib/python2.6/dist-packages/ubuntuone/syncdaemon/config.py", line 
266, in get_parsed
return self.default.get(section, option).value
  File "/usr/lib/python2.6/ConfigParser.py", line 311, in get
raise NoSectionError(section)
ConfigParser.NoSectionError: No section: '__main__'

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

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


[Bug 1708308] [NEW] libbost 1.58 fails to compare non standard uuid

2017-08-02 Thread Giovanni G.
Public bug reported:

Description:Ubuntu 16.04.2 LTS
Release:16.04

The compare operator for uuid is broken for non standard (always return
false). This  for example breaks using uuid as keys in std::map which
uses less than comparator.

The example program generates 2 non standard uuid then compares them
with < > and ==. All three returns false

Then it creates a std::map
Insert a string in the map using the first uuid as key, then try to access the 
second key value with .at
It should raise an exceptio instead it returns the value from the first key

This bug has been fixed in boost 1.60

** Affects: boost1.58 (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/1708308

Title:
  libbost 1.58  fails to compare non standard uuid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/boost1.58/+bug/1708308/+subscriptions

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


[Bug 1708308] Re: libbost 1.58 fails to compare non standard uuid

2017-08-02 Thread Giovanni G.
** Attachment added: "Test case"
   
https://bugs.launchpad.net/ubuntu/+source/boost1.58/+bug/1708308/+attachment/4926232/+files/stlcase.cpp

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

Title:
  libbost 1.58  fails to compare non standard uuid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/boost1.58/+bug/1708308/+subscriptions

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


[Bug 1708308] Re: libbost 1.58 fails to compare non standard uuid

2017-08-02 Thread Giovanni G.
Output from test program with boost 1.58 and boost 1.59
 Compiled against boost 1_58
 a = ----0100
 b = ----0131
 a !< b
 a !> b
 a != b
 mappa["----0100"] = Riga a
 Mappa contains 1 elements
 Mappa["----0100"] = Riga a
 Mappa["----0131"] = Riga a (Should raise an 
exception because we never 
 assigned it)

 Compiled against boost 1_59
 a = ----0100
 b = ----0131
 a < b
 a !> b
 a != b
 mappa["----0100"] = Riga a
 Mappa contains 1 elements
 Mappa["----0100"] = Riga a
 Mappa["----0131"] = Raised std::out_of_range 
map::at as it ought to 
 be


** Description changed:

  Description:  Ubuntu 16.04.2 LTS
  Release:  16.04
  
  The compare operator for uuid is broken for non standard (always return
  false). This  for example breaks using uuid as keys in std::map which
  uses less than comparator.
  
  The example program generates 2 non standard uuid then compares them
  with < > and ==. All three returns false
  
  Then it creates a std::map
  Insert a string in the map using the first uuid as key, then try to access 
the second key value with .at
  It should raise an exceptio instead it returns the value from the first key
  
- This bug has been fixed in boost 1.60
+ This bug has been fixed in boost 1.59

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

Title:
  libbost 1.58  fails to compare non standard uuid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/boost1.58/+bug/1708308/+subscriptions

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


[Bug 1708308] Re: libboost 1.58 fails to compare non standard uuid

2017-08-03 Thread Giovanni G.
** Summary changed:

- libbost 1.58  fails to compare non standard uuid
+ libboost 1.58  fails to compare non standard uuid

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

Title:
  libboost 1.58  fails to compare non standard uuid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/boost1.58/+bug/1708308/+subscriptions

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


[Bug 1575281] [NEW] package mysql-server 5.7.12-0ubuntu1 failed to install/upgrade: dependency problems - leaving unconfigured

2016-04-26 Thread Giovanni G.
Public bug reported:

Installation failed while configuring phpmyadmin

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: mysql-server 5.7.12-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-35.40-generic 4.2.8-ckt5
Uname: Linux 4.2.0-35-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
Date: Tue Apr 26 19:29:51 2016
ErrorMessage: dependency problems - leaving unconfigured
InstallationDate: Installed on 2014-02-27 (788 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
Logs.var.log.daemon.log:
 
MySQLConf.etc.mysql.conf.d.enablelog.cnf:
 [mysqld]
 general_log_file= /var/log/mysql/mysql.log
 general_log = 1
MySQLConf.etc.mysql.conf.d.mysql.cnf: [mysql]
MySQLConf.etc.mysql.conf.d.mysqld_safe_syslog.cnf:
 [mysqld_safe]
 syslog
MySQLConf.etc.mysql.conf.d.mysqldump.cnf:
 [mysqldump]
 quick
 quote-names
 max_allowed_packet = 16M
MySQLConf.etc.mysql.mysql.conf.d.mysqld_safe_syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['debian-5.7.flag', 'ib_logfile0', 'mysql_upgrade_info', 
'debian-5.5.flag', 'test', 'mysql', 'goh_protocol', 'asus-gg.log', 
'performance_schema', 'ibdata1', 'estra', 'ib_buffer_pool', 'gg.log', 
'ib_logfile1', 'debian-5.6.flag', 'auto.cnf', 'goh_work', 'phpmyadmin', 
'xtrack']
PackageArchitecture: all
ProcCmdline: BOOT_IMAGE=/vmlinuz-4.2.0-35-generic.efi.signed 
root=/dev/mapper/vg-root ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1
 apt  1.2.10ubuntu1
SourcePackage: mysql-5.7
Title: package mysql-server 5.7.12-0ubuntu1 failed to install/upgrade: 
dependency problems - leaving unconfigured
UpgradeStatus: Upgraded to xenial on 2016-04-26 (0 days ago)

** Affects: mysql-5.7 (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/1575281

Title:
  package mysql-server 5.7.12-0ubuntu1 failed to install/upgrade:
  dependency problems - leaving unconfigured

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

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


[Bug 1573279] Re: package mysql-server-5.7 5.7.11-0ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 during release upgrade

2016-04-26 Thread Giovanni G.
*** This bug is a duplicate of bug 1574168 ***
https://bugs.launchpad.net/bugs/1574168

Well, looks like I managed to install it by removing both mysql AND mariadb.
For some reason, whenever I removed mysql-client it was installing 
mariadb-client and viceversa, anyway I succeeded this way:

sudo apt purge mariadb-client-10.0 mariadb-common mysql-client mysql-
client-5.7 mysql-client-core-5.7 mysql-common dbconfig-mysql

This command also installed "dbconfig-no-thanks", which could have
helped in bypassing the issue

after that

sudo apt-get install mysql-client mysql-server

Worked!

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

Title:
  package mysql-server-5.7 5.7.11-0ubuntu6 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1 during release upgrade

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

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


[Bug 571308] Re: Thunderbird crashes with segmentation fault

2010-06-24 Thread Giovanni G.
My situation looks like a mix of the prevouosly reported:
Authenticating via ldap = thunderbird crashes
Installed nscd = thunderbird works
"apparently i didnt change anything" = thunderbird abruptly statrs to crash (on 
a freshly booted system)
Started with -ProfileManager = displays profile selection  but crashes as soon 
as I choose a profile and click on continue
Removed nscd and started with -ProfileManager = it crashes before displaying 
anything
Reinstalled nscd  and started with -ProfileManager  =  it displays profile 
selection  but crashes as soon as I choose a profile and click on continue
Started in safe-mode = it works
Disabled Funambol Mozilla Sync Client 1.0b3 = It works

SO, the problem with ldap is still present, but installing nscd still fixes it
On the other side, Funambol makes it crash, but i think it could still be 
somewhat relate to ldap because the last operation I see in strace is a 
getgroups



** Attachment added: "Strace with funambol enabled"
   http://launchpadlibrarian.net/50839095/tbstrace.log

-- 
Thunderbird crashes with segmentation fault
https://bugs.launchpad.net/bugs/571308
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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