[Bug 1958432] Re: In CMake find_package(draco) fails if called two times

2022-01-20 Thread Silvio Traversaro
Thanks a lot for quickly addressing 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/1958432

Title:
  In CMake find_package(draco) fails if called two times

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


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

[Bug 1958432] Re: In CMake find_package(draco) fails if called two times

2022-01-19 Thread Silvio Traversaro
The problem is in the debian-specific patch 0003-Install-proper-CMake-
targets.patch to the package (see
https://sources.debian.org/src/draco/1.5.0+dfsg-4/debian/patches/0003-Install-
proper-CMake-targets.patch/). In this patch, they add to the draco-
config.cmake.template file the lines:

~~~
add_library(draco::draco INTERFACE IMPORTED)
set_target_properties(draco::draco PROPERTIES INTERFACE_LINK_LIBRARIES 
"draco_shared")
~~~

That lead to define twice the draco::draco target if `find_package(draco)` is 
called twice. 
Ideally the draco::draco target should be defined only if it was not defined 
before, i.e. those lines should be substituted with:
~~~
if(NOT TARGET draco::draco)
  add_library(draco::draco INTERFACE IMPORTED)
  set_target_properties(draco::draco PROPERTIES INTERFACE_LINK_LIBRARIES 
"draco_shared")
endif()
~~~

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

Title:
  In CMake find_package(draco) fails if called two times

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


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

[Bug 1958432] [NEW] In CMake find_package(draco) fails if called two times

2022-01-19 Thread Silvio Traversaro
Public bug reported:

The following simple CMake script works fine (if libdraco-dev is installed):
~~~
cmake_minimum_required(VERSION 3.16)
project(assimptest)
find_package(draco REQUIRED)
~~~

Instead, the following one fails:
~~~
cmake_minimum_required(VERSION 3.16)
project(assimptest)
find_package(draco REQUIRED)
~~~

with error:
~~~
CMake Error at /usr/lib/x86_64-linux-gnu/cmake/draco/draco-config.cmake:41 
(add_library):
  add_library cannot create imported target "draco::draco" because another
  target with the same name already exists.
Call Stack (most recent call first):
  /usr/lib/x86_64-linux-gnu/cmake/assimp-5.1/assimpConfig.cmake:37 
(find_package)
  CMakeLists.txt:6 (find_package)
~~~

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: libdraco-dev 1.5.0+dfsg-4
ProcVersionSignature: Ubuntu 5.13.0-1010.12-gcp 5.13.19
Uname: Linux 5.13.0-1010-gcp x86_64
ApportVersion: 2.20.11-0ubuntu75
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Wed Jan 19 17:13:37 2022
ProcEnviron:
 TERM=xterm-color
 PATH=(custom, no user)
SourcePackage: draco
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug jammy

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

Title:
  In CMake find_package(draco) fails if called two times

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


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

[Bug 1872527] Re: Clipboard doesn't work 100% of the time in Ubuntu 20.04 (in KVM guests)

2020-08-23 Thread Mirto Silvio Busico
The problem is still here with Kubuntu 20.04 updated today for guest and host: 
clipboard works erratically and sometimes is bloked.
The proposed solution don't work fr me because I need to copy from host and 
paste in guest.

The only workaround I found is to use mate desktop in the guest.

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

Title:
  Clipboard doesn't work 100% of the time in Ubuntu 20.04 (in KVM
  guests)

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

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

[Bug 1882427] [NEW] Assimp's CMake config files are malformed

2020-06-07 Thread Silvio Traversaro
Public bug reported:

The CMake config files shipped with the libassimp-dev package in Ubuntu
20.04 are malformed, and export the wrong include directories.

I prepare a minimal reproducible example in
https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0 .

To reproduce it, just compile it as:
git clone https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0
cd 1046013d018ff998fac1cea6987be7e0
chmod +x build.sh
./build.sh

This will fail with the message:
~~~
-- Detecting CXX compile features - done
CMake Warning (dev) at 
/usr/lib/x86_64-linux-gnu/cmake/assimp-5.0/assimpTargets.cmake:54 (if):
  if given arguments:

"ON"

  An argument named "ON" appears in a conditional statement.  Policy CMP0012
  is not set: if() recognizes numbers and boolean constants.  Run "cmake
  --help-policy CMP0012" for policy details.  Use the cmake_policy command to
  set the policy and suppress this warning.
Call Stack (most recent call first):
  /usr/lib/x86_64-linux-gnu/cmake/assimp-5.0/assimp-config.cmake:1 (include)
  CMakeLists.txt:4 (find_package)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Configuring done
CMake Error in CMakeLists.txt:
  Imported target "assimp::assimp" includes non-existent path

"/usr/lib/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.

CMake Error in CMakeLists.txt:
  Imported target "assimp::assimp" includes non-existent path

"/usr/lib/include"

  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:

  * The path was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and references files it does not
  provide.
~~~

Downstream bug: https://github.com/robotology/idyntree/issues/693 .

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

** Description changed:

  The CMake config files shipped with the libassimp-dev package in Ubuntu
  20.04 are malformed, and export the wrong include directories.
+ 
+ I prepare a minimal reproducible example in
+ https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0 .

** Description changed:

  The CMake config files shipped with the libassimp-dev package in Ubuntu
  20.04 are malformed, and export the wrong include directories.
  
  I prepare a minimal reproducible example in
  https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0 .
+ 
+ To reproduce it, just compile it as:
+ git clone https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0
+ cd 1046013d018ff998fac1cea6987be7e0
+ chmod +x build.sh
+ ./build.sh

** Description changed:

  The CMake config files shipped with the libassimp-dev package in Ubuntu
  20.04 are malformed, and export the wrong include directories.
  
  I prepare a minimal reproducible example in
  https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0 .
  
  To reproduce it, just compile it as:
  git clone https://gist.github.com/traversaro/1046013d018ff998fac1cea6987be7e0
  cd 1046013d018ff998fac1cea6987be7e0
  chmod +x build.sh
  ./build.sh
+ 
+ This will fail with the message: 
+ ~~~
+ -- Detecting CXX compile features - done
+ CMake Warning (dev) at 
/usr/lib/x86_64-linux-gnu/cmake/assimp-5.0/assimpTargets.cmake:54 (if):
+   if given arguments:
+ 
+ "ON"
+ 
+   An argument named "ON" appears in a conditional statement.  Policy CMP0012
+   is not set: if() recognizes numbers and boolean constants.  Run "cmake
+   --help-policy CMP0012" for policy details.  Use the cmake_policy command to
+   set the policy and suppress this warning.
+ Call Stack (most recent call first):
+   /usr/lib/x86_64-linux-gnu/cmake/assimp-5.0/assimp-config.cmake:1 (include)
+   CMakeLists.txt:4 (find_package)
+ This warning is for project developers.  Use -Wno-dev to suppress it.
+ 
+ -- Configuring done
+ CMake Error in CMakeLists.txt:
+   Imported target "assimp::assimp" includes non-existent path
+ 
+ "/usr/lib/include"
+ 
+   in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:
+ 
+   * The path was deleted, renamed, or moved to another location.
+ 
+   * An install or uninstall procedure did not complete successfully.
+ 
+   * The installation package was faulty and references files it does not
+   provide.
+ 
+ 
+ CMake Error in CMakeLists.txt:
+   Imported target "assimp::assimp" includes non-existent path
+ 
+ "/usr/lib/include"
+ 
+   in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:
+ 
+   * The path was deleted, renamed, or moved to another location.
+ 
+   * An install or uninstall procedure did not complete successfully.
+ 
+   * The installation package was faulty and references files it does not
+   

[Bug 1833037] Re: [SRU] uses uninitialized memory with MUMPS >= 5.1.0

2019-06-21 Thread Silvio Traversaro
** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

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

Title:
  [SRU] uses uninitialized memory with MUMPS >= 5.1.0

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

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

[Bug 1833037] Re: [SRU] uses uninitialized memory with MUMPS >= 5.1.0

2019-06-21 Thread Silvio Traversaro
I tested the version of the package 3.11.9-2.1ubuntu0.18.04.1 from
bionic-proposed, and indeed it fixes the bug for me. Thanks.

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

Title:
  [SRU] uses uninitialized memory with MUMPS >= 5.1.0

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

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

[Bug 1826176] Re: Applications do not receive focus in Wayland sessions

2019-05-07 Thread Silvio Bierman
Hello Łukasz,

Thanks for this. I have updated to this version yesterday evening and
have been working with it for about 10 hours now.

First of all I can confirm that as far as I can tell the problem has
been fully resolved. All applications that I start from either the
(docked via plugin) dash, the applications overview or from desktop
icons (plugin again) properly receive focus. And I have not experienced
any problems working with this version up till now.

I will report back here if I see anything unexpected.

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

Title:
  Applications do not receive focus in Wayland sessions

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

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

[Bug 1826176] Re: Applications started from the dash often do not receive focus

2019-04-24 Thread Silvio Bierman
OK, I just filed issue #1211.

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

Title:
  Applications started from the dash often do not receive focus

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

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

[Bug 1817924] Re: (In Xorg sessions only) apps launched from gnome shell do not get input focus

2019-04-24 Thread Silvio Bierman
Since the bug seemed to have appeared in both environments at the same
time I was not expecting two separate bugs. I have opened a new one
against Gnome session: bug 1826176.

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

Title:
  (In Xorg sessions only) apps launched from gnome shell do not get
  input focus

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

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

[Bug 1826176] [NEW] Applications started from the dash often do not receive focus

2019-04-24 Thread Silvio Bierman
Public bug reported:

On a fresh install of Ubuntu 19.04 applications that are started from the dash 
inside a Wayland session often do not receive focus.
The behavior is inconsistent. Some applications (like the terminal) always 
properly get the focus. Some like GEdit en Chromium mostly do not receive focus 
until suddenly they do. It seems to depend on other applications that are 
already open and may have the focus but I could not discover the exact pattern.

Once clicked or Alt-tabbed into the applications work as expected. But
when you simply start typing after opening, for example, GEdit the
keystrokes may go to an application window that has just been obscured
buy the newly opened one.

This bug is similar to bug 1817924 but that one apparently is limited to
X sessions.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: gnome-shell 3.32.0+git20190410-1ubuntu1
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Wed Apr 24 11:43:33 2019
DisplayManager: gdm3
InstallationDate: Installed on 2019-04-24 (0 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug disco wayland-session

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

Title:
  Applications started from the dash often do not receive focus

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

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

[Bug 1817924] Re: (In Xorg sessions only) apps launched from gnome shell do not get input focus

2019-04-24 Thread Silvio Bierman
I can now confirm it works in an X session though. So that part is fixed
(although I never observed the bug there since I don't normally use X
sessions).

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

Title:
  (In Xorg sessions only) apps launched from gnome shell do not get
  input focus

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

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

[Bug 1817924] Re: (In Xorg sessions only) apps launched from gnome shell do not get input focus

2019-04-24 Thread Silvio Bierman
This bug also occurs in Wayland on a fresh Disco install. Opening
Nautilus, Chromium, GEdit etc. does not properly set the focus to the
newly opened windows.

I have the mutter version that should contain the fix:

root@mizuno:~# apt show mutter
Package: mutter
Version: 3.32.0+git20190410-1ubuntu1

so the fix does not seem to work on Wayland.

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

Title:
  (In Xorg sessions only) apps launched from gnome shell do not get
  input focus

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

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

[Bug 1817338] Re: Changing sound output doesn't work in gnome-control-center 3.32

2019-03-15 Thread Silvio Bierman
I can confirm it is working properly now. Thanks a lot for the fix.

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

Title:
  Changing sound output doesn't work in gnome-control-center 3.32

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

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

[Bug 1817338] Re: Changing sound output doesn't work in gnome-control-center 3.32

2019-03-13 Thread Silvio Bierman
I have installed the master branch of the "Sound Input & Output Device chooser" 
Gnome shell extension replacing the release version that got broken with the 
recent shell upgrade.
This extension now again works properly enabling switching devices so this 
makes it indeed very likely that the issue is purely a g-c-c one.

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

Title:
  Changing sound output doesn't work in gnome-control-center 3.32

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

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

[Bug 1817338] Re: HDMI sound output not selectable in 19.04 (but works in 18.10)

2019-03-11 Thread Silvio Bierman
I have the same bug. I used to work around this by installing an
alternative sound device selector shell extension but this one broke
down when Gnome shell upgraded to 3.31.91. So now there is no way for me
to switch to HDMI output any more.

The select box shows the correct devices but selecting a different one
has no effect. It is also not saved and when reopening control center
the default device is once again selected.

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

Title:
  HDMI sound output not selectable in 19.04 (but works in 18.10)

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

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

[Bug 1815723] Re: Segmentation fault (core dumped)

2019-02-14 Thread Silvio Bierman
*** This bug is a duplicate of bug 1814949 ***
https://bugs.launchpad.net/bugs/1814949

I get the same error. Opening from the menu does nothing, using

$ gnome-control-center

or even

$ gnome-control-center display

as suggested above results in segmentation fault (core dumped).

This is on a Dell XPS13 laptop running Disco Dingo dev branch.

** Changed in: gnome-control-center (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/1815723

Title:
  Segmentation fault (core dumped)

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

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

[Bug 1635598] Re: Paste into folder option missing on breadcrumb buttons

2019-02-08 Thread Silvio Bierman
I am running Disco Dingo dev. branch now with Nautilus 3.31-90 and it
seems they have fixed it. I consider this one closed.

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

Title:
  Paste into folder option missing on breadcrumb buttons

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

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

Re: [Bug 1636155] Re: Nautilus does not show mounts

2019-01-26 Thread Silvio Bierman
No, this is no longer an issue. It went away when I moved to 17.04.

Kind regards,

Silvio


On 25-01-19 23:38, Sebastien Bacher wrote:
> Is that still an issue? Could you describe how those mounts are
> configured exactly? It's weird that you describe the behaviour as
> inconsistent, it would make sense if they were always or never displayed
> but not changing...
>
> ** Changed in: nautilus (Ubuntu)
> Status: New => Incomplete
>

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

Title:
  Nautilus does not show mounts

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

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

[Bug 1801630] [NEW] package gmic (not installed) failed to install/upgrade: tentata sovrascrittura di "/usr/lib/gimp/2.0/plug-ins/gmic_film_cluts.gmz" presente anche nel pacchetto gimp-gmic 1.7.9+zart

2018-11-04 Thread Silvio Arnone
Public bug reported:

Can't install it nor Software Center nor Gdebi

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: gmic (not installed)
ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18
Uname: Linux 4.15.0-38-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.9-0ubuntu7.4
Architecture: amd64
Date: Mon Nov  5 00:31:42 2018
ErrorMessage: tentata sovrascrittura di 
"/usr/lib/gimp/2.0/plug-ins/gmic_film_cluts.gmz" presente anche nel pacchetto 
gimp-gmic 1.7.9+zart-4build3
InstallationDate: Installed on 2018-10-28 (7 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu2.1
 apt  1.6.6
SourcePackage: gmic
Title: package gmic (not installed) failed to install/upgrade: tentata 
sovrascrittura di "/usr/lib/gimp/2.0/plug-ins/gmic_film_cluts.gmz" presente 
anche nel pacchetto gimp-gmic 1.7.9+zart-4build3
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gmic (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/1801630

Title:
  package gmic (not installed) failed to install/upgrade: tentata
  sovrascrittura di "/usr/lib/gimp/2.0/plug-ins/gmic_film_cluts.gmz"
  presente anche nel pacchetto gimp-gmic 1.7.9+zart-4build3

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

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

[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location

2018-10-25 Thread Silvio Bierman
Reading the above gives little confidence this weird design decision
will be reverted anytime soon or at all. I just did "apt purge snapd" to
completely remove Snap from my 18.10 desktop. Things are now back to how
I want them. I just had to install the regular gnome-calculator.

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

Title:
  Please move the "$HOME/snap" directory to a less obtrusive location

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

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

[Bug 1777425] Re: Skype snap segfaults GNOME Shell on Wayland

2018-10-16 Thread Silvio-frischi
*** This bug is a duplicate of bug 1754693 ***
https://bugs.launchpad.net/bugs/1754693

/var/log/syslog
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE)
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) Backtrace:
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 0: 
/usr/bin/Xwayland (OsLookupColor+0x139) [0x564749186c39]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 1: 
/lib/x86_64-linux-gnu/libpthread.so.0 (funlockfile+0x50) [0x7fbc34348e1f]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 2: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x1d7940) [0x7fbc307ae760]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 3: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x13a021) [0x7fbc306734b1]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 4: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0xc882a) [0x7fbc3059052a]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 5: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0xc887e) [0x7fbc305905ee]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 6: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0xc8929) [0x7fbc305906c9]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 7: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x2e7d2) [0x7fbc3045c432]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 8: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x1e481d) [0x7fbc307c835d]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 9: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x3c6ce9) [0x7fbc30b8ce89]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 10: 
/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 
(__driDriverGetExtensions_virtio_gpu+0x3c5bd3) [0x7fbc30b8ac93]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 11: 
/usr/bin/Xwayland (ht_dump_contents+0x79a9) [0x5647490b3c69]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 12: 
/usr/bin/Xwayland (ht_dump_contents+0x66fb) [0x5647490b168b]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 13: 
/usr/bin/Xwayland (RegisterResourceName+0x22d) [0x56474917561d]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 14: 
/usr/bin/Xwayland (ht_dump_contents+0xb9a9) [0x5647490bbbd9]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 15: 
/usr/bin/Xwayland (glvndGetExports+0xde5) [0x564749195f35]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 16: 
/usr/bin/Xwayland (SendErrorToClient+0x35e) [0x564749150bae]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 17: 
/usr/bin/Xwayland (InitFonts+0x3b6) [0x564749154b36]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 18: 
/lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xeb) [0x7fbc3417009b]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) 19: 
/usr/bin/Xwayland (_start+0x2a) [0x5647490261ea]
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE)
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) Segmentation 
fault at address 0x68
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE)
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: Fatal server error:
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE) Caught signal 11 
(Segmentation fault). Server aborting
Oct 16 09:55:26 localhost org.gnome.Shell.desktop[16031]: (EE)

Not sure why it uses swrast.

glxinfo
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 620 (Kaby Lake GT2)

May be related https://forum.snapcraft.io/t/slack-for-linux-crash-on-
wayland/5909/7

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

Title:
  Skype snap segfaults GNOME Shell on Wayland

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

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

[Bug 1789659] Re: libvirt-daemon error "virHashSearch:727 : Hash operation not allowed during iteration"

2018-09-04 Thread Silvio Moioli
JFI: SUSE Linux Enterprise and openSUSE variants also added this patch
to respective packages.

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

Title:
   libvirt-daemon error "virHashSearch:727 : Hash operation not allowed
  during iteration"

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

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

[Bug 1789659] Re: libvirt-daemon error "virHashSearch:727 : Hash operation not allowed during iteration"

2018-09-04 Thread Silvio Moioli
I have just verified that the reproducer for Red Hat Enterprise Linux is
valid for Bionic:

1.Start a guest:
$ virsh start test1

2.Do 'virsh list' in a loop:
$ for i in {1..1000}; do virsh list; done

3.Open another terminal, do 'virsh domstats' in a loop:
$ for i in {1..1000}; do virsh domstats; done

4.Check the libvirtd.log:
$ cat /var/log/libvirt/libvirtd.log | grep -i "Hash operation not allowed 
during"
2018-09-04 06:57:00.761+: 28687: error : virHashForEach:597 : Hash 
operation not allowed during iteration
2018-09-04 06:57:00.773+: 28684: error : virHashForEach:597 : Hash 
operation not allowed during iteration
2018-09-04 06:57:02.040+: 28687: error : virHashForEach:597 : Hash 
operation not allowed during iteration
2018-09-04 06:57:06.567+: 28687: error : virHashForEach:597 : Hash 
operation not allowed during iteration
2018-09-04 06:57:09.761+: 28684: error : virHashForEach:597 : Hash 
operation not allowed during iteration

https://bugzilla.redhat.com/show_bug.cgi?id=1581364#c7


With the aforementioned patch, this error is not produced any more.

** Bug watch added: Red Hat Bugzilla #1581364
   https://bugzilla.redhat.com/show_bug.cgi?id=1581364

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

Title:
   libvirt-daemon error "virHashSearch:727 : Hash operation not allowed
  during iteration"

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

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

[Bug 1789659] [NEW] libvirt-daemon error "virHashSearch:727 : Hash operation not allowed during iteration"

2018-08-29 Thread Silvio Moioli
Public bug reported:

In the SUSE Manager/Uyuni[1] project CIs we make use of Terraform[2], a
tool to automate infrastructure deployments, together with terraform-
provider-libvirt[3], a Terraform provider (plugin) that allow
interaction with libvirt.

By default, this setup will issue several libvirt API calls concurrently
in an hard-to-predict order, as demonstrated by logs that I am
attaching.

In the "bad log" example, the following line appears:

error : virHashSearch:727 : Hash operation not allowed during iteration


According to analysis of a similar problem by Red Hat in an OpenStack 
scenario[4], this is has been fixed in upstream libvirt via commit 
4d7384eb9ddef2008cb0cc165eb808f74bc83d6b [5].

I tested the patch and it applies cleanly to the 4.0.0 package shipping
with Bionic and that successfully resolves this issue.


Please evaluate including this patch.

Thanks in advance


[1] http://uyuni-project.org/
[2] https://www.terraform.io/
[3] https://github.com/dmacvicar/terraform-provider-libvirt
[4] https://bugzilla.redhat.com/show_bug.cgi?id=1576464#c3
[5] 
https://github.com/libvirt/libvirt/commit/4d7384eb9ddef2008cb0cc165eb808f74bc83d6b.patch

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: libvirt-daemon 4.0.0-1ubuntu8.3
ProcVersionSignature: Ubuntu 4.15.0-33.36-generic 4.15.18
Uname: Linux 4.15.0-33-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Wed Aug 29 16:05:10 2018
InstallationDate: Installed on 2014-06-12 (1539 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
SourcePackage: libvirt
UpgradeStatus: Upgraded to bionic on 2018-05-02 (119 days ago)

** Affects: libvirt (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/1789659

Title:
   libvirt-daemon error "virHashSearch:727 : Hash operation not allowed
  during iteration"

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

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

[Bug 1788510] [NEW] error luego de actualizar ubuntu 18.04

2018-08-22 Thread silvio matera
Public bug reported:

se congela escritorio

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 4.15.0-32.35-generic 4.15.18
Uname: Linux 4.15.0-32-generic i686
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Wed Aug 22 19:34:38 2018
DistUpgraded: 2018-08-22 07:17:57,952 DEBUG icon theme changed, re-reading
DistroCodename: bionic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] RS690M [Radeon Xpress 1200/1250/1270] 
[1002:791f] (prog-if 00 [VGA controller])
   Subsystem: Toshiba America Info Systems RS690M [Radeon Xpress 
1200/1250/1270] [1179:ff60]
InstallationDate: Installed on 2018-08-21 (1 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160420.1)
MachineType: TOSHIBA Satellite A305D
ProcEnviron:
 LANGUAGE=es_AR:es
 PATH=(custom, no user)
 LANG=es_AR.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-32-generic 
root=UUID=9b46ee1c-18a4-4f7d-93a8-e0d1c81c43b0 ro quiet splash vt.handoff=1
SourcePackage: xorg
UpgradeStatus: Upgraded to bionic on 2018-08-22 (0 days ago)
dmi.bios.date: 09/16/2008
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 1.70
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.vendor: TOSHIBA
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr1.70:bd09/16/2008:svnTOSHIBA:pnSatelliteA305D:pvrPSAH0U-00P008:rvnTOSHIBA:rn:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.family: Type1Family
dmi.product.name: Satellite A305D
dmi.product.version: PSAH0U-00P008
dmi.sys.vendor: TOSHIBA
version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
version.libdrm2: libdrm2 2.4.91-2
version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.5-0ubuntu0~18.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.5-0ubuntu0~18.04.1
version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.5-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2
xserver.bootTime: Wed Aug 22 18:47:27 2018
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.19.6-1ubuntu4
xserver.video_driver: radeon

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


** Tags: apport-bug bionic i386 ubuntu

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

Title:
  error luego de actualizar ubuntu 18.04

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

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

[Bug 1768230] Re: Long time booting : Failed to connect to lvmetad. Falling back to device scanning.

2018-06-25 Thread Silvio Moioli
I can still reproduce the problem after upgrading to 3.2 and manually
deleting /etc/initramfs-tool/conf.d/resume. Help appreciated!

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

Title:
  Long time booting : Failed to connect to lvmetad. Falling back to
  device scanning.

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

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

[Bug 1777471] Re: unable to perform a fresh install

2018-06-21 Thread silvio
Thank-you for your response, your where right.
I thought that problems of data corruption was a thing of the past, I was 
wrong...

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

Title:
  unable to perform a fresh install

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

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

[Bug 1777471] [NEW] unable to perform a fresh install

2018-06-18 Thread silvio
Public bug reported:

The installation fail before the end, it seems to be related with apt-
cdrom

ubuntu@ubuntu:/$ sudo apt-cdrom ident
Using CD-ROM mount point /media/cdrom/
Mounting CD-ROM...
Identifying... [e5a60326ed32d9af57977f46cf6fd774-2]
Stored label:
Unmounting CD-ROM...
ubuntu@ubuntu:/$ sudo apt-cdrom add
Using CD-ROM mount point /media/cdrom/
Unmounting CD-ROM...
Waiting for disc...
Please insert a Disc in the drive and press [Enter]
Mounting CD-ROM...
Identifying... [e5a60326ed32d9af57977f46cf6fd774-2]
Scanning disc for index files...
Found 0 package indexes, 0 source indexes, 0 translation indexes and 0 
signatures
E: Unable to locate any package files, perhaps this is not a Debian Disc or the 
wrong architecture?
E: No CD-ROM could be auto-detected or found using the default mount point.
   You may try the --cdrom option to set the CD-ROM mount point.
   See 'man apt-cdrom' for more information about the CD-ROM auto-detection and 
mount point.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
Uname: Linux 4.15.0-20-generic x86_64
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
CasperVersion: 1.394
Date: Mon Jun 18 17:18:14 2018
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper quiet splash ---
LiveMediaBuild: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic ubiquity-18.04.14 ubuntu

** Description changed:

+ The installation fail before the end, it seems to be related with apt-
+ cdrom
+ 
  ubuntu@ubuntu:/$ sudo apt-cdrom ident
  Using CD-ROM mount point /media/cdrom/
  Mounting CD-ROM...
  Identifying... [e5a60326ed32d9af57977f46cf6fd774-2]
- Stored label: 
+ Stored label:
  Unmounting CD-ROM...
  ubuntu@ubuntu:/$ sudo apt-cdrom add
  Using CD-ROM mount point /media/cdrom/
  Unmounting CD-ROM...
  Waiting for disc...
- Please insert a Disc in the drive and press [Enter] 
+ Please insert a Disc in the drive and press [Enter]
  Mounting CD-ROM...
  Identifying... [e5a60326ed32d9af57977f46cf6fd774-2]
  Scanning disc for index files...
  Found 0 package indexes, 0 source indexes, 0 translation indexes and 0 
signatures
  E: Unable to locate any package files, perhaps this is not a Debian Disc or 
the wrong architecture?
  E: No CD-ROM could be auto-detected or found using the default mount point.
-You may try the --cdrom option to set the CD-ROM mount point.
-See 'man apt-cdrom' for more information about the CD-ROM auto-detection 
and mount point.
+    You may try the --cdrom option to set the CD-ROM mount point.
+    See 'man apt-cdrom' for more information about the CD-ROM auto-detection 
and mount point.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: ubiquity 18.04.14 [modified: 
lib/partman/automatically_partition/question]
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CasperVersion: 1.394
  Date: Mon Jun 18 17:18:14 2018
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper quiet splash ---
  LiveMediaBuild: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

** Summary changed:

- unable to perform a clean install
+ unable to perform a fresh install

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

Title:
  unable to perform a fresh install

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

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

[Bug 1711566] Re: [patch] Does not work in Plasma 5

2018-05-05 Thread Mirto Silvio Busico
+1

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

Title:
  [patch] Does not work in Plasma 5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde-thumbnailer-openoffice/+bug/1711566/+subscriptions

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-03-28 Thread Silvio Bierman
Thank you for this information Bib, saves me a lot of time. And this
confirms we are talking about the same bug.

I am using Wayland exclusively and have libinput10
1.8.4-0ubuntu0.17.10.1 installed. Touchpad is working fine. So this is
something that was introduced with the version that comes with Bionic
(or an intermediate one).

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-03-27 Thread Silvio Bierman
Well. I had reverted to Artful so that was easier said than done. I
upgraded to Bionic once more. That brought back the problem but "ubuntu-
bug libinput" then complained that I did not have that package
installed. I did not know what libinputxxx package to use and I got
tired of soft-stroking my touchpad and reinstalled Artful once more. I
may have more time to spend on this the coming weeks and then I will try
again.

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-03-23 Thread Silvio Bierman
Yes, it is an XPS13 L322X model.

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-03-22 Thread Silvio Bierman
Sorry for being trigger happy...

I am using a Dell XPS13.

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-03-22 Thread Silvio Bierman
I have upgraded to Bionic recently and my touchpad immediately became
close to unusable. The sensitivity was WAY too high so the cursor could
only be moved with extremely low pressure. Anything beyond seemed to be
considered a palm pressure or something. In addition, the touchpad
buttons had become unusable wrt. click/hold+swipe to drag stuff around.
The problems occurred both in Wayland and XOrg.

I did a clean Bionic reinstall which did not help. Then I reinstalled
Artful and the problems where resolved. After a subsequent upgrade to
Bionic the problem reappeared.

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1573581] Re: Showing wrong times for imported calendars

2017-11-04 Thread Silvio Sabo
I have the same issue on 17.10. Imported calendars are one hour off
(+1).

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

Title:
  Showing wrong times for imported calendars

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

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

[Bug 1635598] Re: Paste into folder option missing on breadcrumb buttons

2017-10-05 Thread Silvio Bierman
This has only gotten worse. Paste into folder also disappeared from the menu. 
Open in terminal has always been lacking.
I fail to see why not all items from the context menu on listed folders 
together with those from the context menu on the view background are being 
offered on the current column breadcrumb context menu.
Remember: on a filled up view in list view mode the background can not be 
touched so the breadcrumb is the only easily accessible marker for the current 
folder.

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

Title:
  Paste into folder option missing on breadcrumb buttons

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

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

[Bug 1706807] Re: [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

2017-10-05 Thread Silvio Bierman
I meant 17.10 naturally.

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

Title:
  [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

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

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

[Bug 1706807] Re: [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

2017-10-05 Thread Silvio Bierman
Thank you Jeremy. I totally forgot I enabled those a while ago when
Chromium in 17.0 needed a bump and I was being locked out of many secure
sites. Helped me then but I should have disabled them asap. Thanks for
the pointer, problem solved.

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

Title:
  [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

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

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

[Bug 1706807] Re: [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

2017-10-04 Thread Silvio Bierman
I don't know if this is the same bug but since my 17.10 updated
Thunderbird to 52.4.0 I am faced with this issue consistently.
Thunderbird is unusable this way and I have manually installed a 52.3.0
version to be able to manage my e-mail.

This happens both when running under X or Wayland. Gnome shell 3.26.
Screenshot attached.

** Attachment added: "Screenshot from 2017-10-04 09-07-55.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1706807/+attachment/4962404/+files/Screenshot%20from%202017-10-04%2009-07-55.png

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

Title:
  [amdgpu] scrambling/pixelation and jutter upon opening thunderbird

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

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

[Bug 1714410] Re: Can't change display configuration, Method ApplyConfiguration is not implemented on interface org.gnome.Mutter.DisplayConfig

2017-09-11 Thread Silvio Bierman
I have the same issue as Shwan (#13). Turning off the laptop screen when
an additional display is connected works but is forgotten after restart.
So the question remains: is this covered by this bug report or must a
new one be created?

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

Title:
  Can't change display configuration, Method ApplyConfiguration is not
  implemented on interface org.gnome.Mutter.DisplayConfig

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

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

[Bug 1573786] Re: gdb Process record does not support instruction 0xc5

2017-07-12 Thread silvio
Just a pointer to a thread with a good explanation about this problem:
https://sourceware.org/ml/gdb/2016-08/msg00025.html

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

Title:
  gdb Process record does not support instruction 0xc5

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

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


[Bug 1543899] Re: update-apt-xapian-index crashed with UnicodeDecodeError in record(): 'utf-8' codec can't decode byte 0xe3 in position 349: invalid continuation byte

2017-05-18 Thread Silvio Moioli
17.04 and the problem is still there, using the package from Jessie
works around 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/1543899

Title:
  update-apt-xapian-index crashed with UnicodeDecodeError in record():
  'utf-8' codec can't decode byte 0xe3 in position 349: invalid
  continuation byte

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

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


[Bug 1681523] Re: [Launcher] missing right click options

2017-04-24 Thread Silvio Bierman
The workaround Jon describes does nothing for me.

This is an extremely annoying bug. Please fix asap!

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

Title:
  [Launcher] missing right click options

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

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


[Bug 1678679] [NEW] package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.6 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-04-02 Thread Silvio Mancilha
Public bug reported:

mostrou erro de sistema

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.6
ProcVersionSignature: Ubuntu 4.4.0-66.87-generic 4.4.44
Uname: Linux 4.4.0-66-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Sun Apr  2 20:50:00 2017
DuplicateSignature:
 package:samba-common:2:4.3.11+dfsg-0ubuntu0.16.04.6
 Processing triggers for dbus (1.10.6-1ubuntu3.3) ...
 dpkg: error processing package samba-common (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2016-12-10 (113 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
NmbdLog:
 
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.6 failed to 
install/upgrade: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
UpgradeStatus: Upgraded to xenial on 2017-03-13 (20 days ago)
WindowsFailedConnect: Yes

** Affects: samba (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/1678679

Title:
  package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.6 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/samba/+bug/1678679/+subscriptions

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


[Bug 1661245] [NEW] Need to bump chromium-browser version on Zesty

2017-02-02 Thread Silvio Bierman
Public bug reported:

Perhaps this bug should be reported against the current Zesty state but the 
chromium-browser in Zesty is stuck at version 53 which is practically unusable 
with many HTTPS sites because of erroneous security warnings. The same thin 
happened on Yakkety and a version bump to 55 solved the issues.
Please bump the version on Zesty.

** Affects: chromium-browser (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/1661245

Title:
  Need to bump chromium-browser version on Zesty

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

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


[Bug 1636155] [NEW] Nautilus does not show mounts

2016-10-24 Thread Silvio Bierman
Public bug reported:

I use SSHFS to mount a number of directories on remote servers.
Normally, when I create the mounts all Nautilus windows immediately show
them in the sidebar and Nautilus also displays desktop icons for them.

Since my upgrade to Ubuntu 16.10 this no longer works properly. The
mounts are not displayed in either the sidebar and on the desktop. After
a certain time (at least minutes) the mounts sometimes appear but this
seems inconsistent.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: nautilus 1:3.20.3-1ubuntu3
ProcVersionSignature: Ubuntu 4.8.0-26.28-generic 4.8.0
Uname: Linux 4.8.0-26-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Oct 24 13:53:02 2016
InstallationDate: Installed on 2016-10-13 (10 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_nautilus: gnome-terminal 3.20.2-1ubuntu5

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


** Tags: amd64 apport-bug yakkety

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

Title:
  Nautilus does not show mounts

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

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


[Bug 1635598] [NEW] Paste into folder option missing on breadcrumb buttons

2016-10-21 Thread Silvio Bierman
Public bug reported:

Clicking the right mouse button on the breadcrumb-buttons that represent
the path to the current folder used to offer on option "Paste into
folder". This options is now gone.

This is extra annoying since the only alternative is right clicking an
EMPTY space in the window area itself. But in the list view mode if the
current folder content fills up the window there is no empty space
anywhere.

Luckily, CTRL+V still works so that is currently the only workaround.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: nautilus 1:3.20.3-1ubuntu3
ProcVersionSignature: Ubuntu 4.8.0-26.28-generic 4.8.0
Uname: Linux 4.8.0-26-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
Date: Fri Oct 21 12:44:29 2016
GsettingsChanges:
 
InstallationDate: Installed on 2016-10-13 (7 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_nautilus: gnome-terminal 3.20.2-1ubuntu5

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


** Tags: amd64 apport-bug yakkety

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

Title:
  Paste into folder option missing on breadcrumb buttons

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

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


[Ubuntu-BR] Compatibilidade hd externo Seagate expansion com ubuntu

2016-08-23 Thread Silvio Hoffmann
Pessoal, algum problema de compatibilidade?  Precisa formatar o hd ou é só
espetar e sair rodando?
Como faço pra formatar se for o caso...
Obrigado
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Problemas configuração com notebook Dell

2016-07-26 Thread Silvio Hoffmann
Deyson e Wagner, valeu mesmo pelas dicas (e pela rapidez!)  muito
obrigado!
Realmente o problema era mais simples,  nem sei identificar pois religuei e
ele retomou o processo de instalação de onde tinha parado... Antes já havia
configurado o wi-fi. Mas não tinha configurado senha nem usuário,... Porém
depois do shutdown e de religar consegui configurar tudo. Quase no fim ele
deu um aviso de pacote corrompido ou desatualizado mas que iria tentar
terminar a instalação mesmo assim o que ocorreu sem problemas...
Apesar da minha conexão ser muito lenta consegui fazer as atualizações do
14.04. No final chegou a dar uma pendurada mas dei um force quit e
shutdown, liguei de novo e tudo normal,até tentei ver se precisava
atualizar alguma coisa mas ele disse que estava tudo atualizado. Consegui
até instalar o Geogebra (excelente software free de geometria e outras
matemáticas)
Meu note é um inspiron 5448 -i5 - 4G - 1T 14" refurbished e com ubuntu
"nativo"  que comprei numa loja tradicional de Porto Alegre (DIGIMER) com
valor 30%mais barato e com garantia de um ano original da DELL.
Quanto a atualização para a última versão do Ubuntu não sei se não é melhor
esperar (ela é LTS?)...
Valeu pela ajuda e as dicas, estou sempre acompanhando a lista e usuário
ubuntu a bastante tempo, e muito bem servido por sinal!

Gde abraço e mais uma vez muito obrigado!

Em 25/07/2016 20:39, "Deyson Thome" <deysonth...@gmail.com> escreveu:

> Imagino Wagner ...
>
> Quando comprei esse note, recentemente, o memso veio com windows ... como o
> com Linux demoraria muito  aceitei o modelo com Windows, ciente de que iria
> fazer a alteração ... mas cheguei a usar o windows 10 ... mas de fato ,
> pelo menos para mim, o Linux é o sistema que garante produtividade.
>
> Uso o Ubuntu há muitos anos .. mas pensei inclusive em tentar uma distro
> nova ...  no final optei Mint alma de ubuntu ... primeira vez que o uso ...
> no meu outro tenho o Ubuntu desde a substituição 4 anos atrás ...
>
> Sua orientação foi a correta.
>
> Abs
>
>
>
>
> *--*
>
> *[image: Acesse o Site da DBT Sites] <http://dbtsites.com>*
>
> Em 25 de julho de 2016 20:27, Wagner De Queiroz <wagnerdequei...@gmail.com
> >
> escreveu:
>
> > Deyson, Fatalmente se ele instalar o ultimo ubuntu iria rodar de boas,
> > entretanto, pelo sim, pelo não, a Dell costuma colocar alguns apps legais
> > em seus equipamentos. sistema de recovery e backup, ou outras ferramentas
> > interessantes, por isso não sugeri ele instalar a ultima versão do Ubuntu
> > sem primeiro resolver a pendenga, rodar tudo e ver se vale a pena manter
> ou
> > trocar por uma versao mais nova.
> >
> > Em 25 de julho de 2016 19:24, Deyson Thome <deysonth...@gmail.com>
> > escreveu:
> >
> > > Eu comprei um Dell recentemente removi o Windows e instalei o
> último
> > > Mint  está maravilhoso tudo funcionando perfeitamente.
> > >
> > > Em 25/07/2016 18:17, "Wagner De Queiroz" <wagnerdequei...@gmail.com>
> > > escreveu:
> > >
> > > > Ola Silvio Hoffman,
> > > >
> > > > O ubuntu que esta em seu notebook Dell não é puro-sangue, tem alguns
> > > > scripts da Dell, eu recomendo que vc primeiro ligue no suporte da
> Dell
> > > para
> > > > perguntar o que fazer, pois eles sabem como o script de pós
> instalação
> > > > funciona, pois eles o criaram.
> > > >
> > > > Se vc puder mandar um Print de sua tela, poderá nos ajudar, no boot,
> > veja
> > > > se aparece o menu do grub, mesmo que por poucos segundos, se aparece,
> > > olhe
> > > > as opções, deve ter uma opção de recuperação. ou modo console. se
> > tiver,
> > > > podemos ajudar.
> > > >
> > > > Se vc já esta na interface gráfica, vc pode dar a combinação ctrl +
> F1
> > e
> > > um
> > > > console vai se abrir pedindo usuario e senha, como não sei qual é o
> > > usuário
> > > > padrão que esta usando, minha esperança é ele abrir um console com $
> > ou #
> > > > antes do cursor, dizendo que vc ja esta podendo operar a máquina, e
> > > logado.
> > > > Se isso ocorrer, é muito bom, pois vc poderá digitar comandos e
> > poderemos
> > > > fazer um suporte remoto.
> > > >
> > > > Eu estou curioso para ver como é esse ubuntu customizado no dell.
> > > >
> > > > Caso vc obtenha um console co

[Bug 1544480] Re: after upgrading to 16.04 (xubuntu) network drive not mounted

2016-05-30 Thread Silvio Wangler
A workaround is describe in this thread.
http://ubuntuforums.org/showthread.php?t=2131380

Put a script e.g. fstab to /etc/network/if-up.d containing the following
content

#!/bin/sh
mount -a

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

Title:
  after upgrading to 16.04 (xubuntu) network drive not mounted

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

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


[Bug 1583578] [NEW] kimchi Installation freeze during configure on 16.04

2016-05-19 Thread Mirto Silvio Busico
Public bug reported:

Step to reproduce:

1) install Kubuntu 16.04 64Bit
2) apt-get update and apt-get dist-upgrade
3) reboot
4) apt-get install kimchi

The installation freeze at the last step (configuration)

Tried to reboot and issue 
sudo dpkg --configure -a --force-all

The operation freeze and if you issue a ctrl+C you see

Configurazione di kimchi (1.5.0-0ubuntu1)...
^Cdpkg: errore nell'elaborare il pacchetto kimchi (--configure):
 sottoprocesso installato script di post-installation interrotto
Si sono verificati degli errori nell'elaborazione:
 kimchi

I was unable to install kimchi

** Affects: kimchi (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/1583578

Title:
  kimchi Installation freeze during configure on 16.04

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

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


[Bug 1571311] Re: Nautilus hangs when opening SSHFS shares

2016-04-26 Thread Silvio Bierman
Interesting observations: the culprit seemed to be one specific SSHFS
mount (I usually create a bunch at onse using a shell-script) that would
block opening the first Nautilus window (for any location). If I left
that mount out then things worked fine.

Then I deleted the .Trash-1000 folder on that server and voila: problem
solved. It looks like something in there blocked Nautilus when opening.
May have something to do with setting the trash can icon status...

Silvio

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

Title:
  Nautilus hangs when opening SSHFS shares

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

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


[Bug 1571311] Re: Nautilus hangs when opening SSHFS shares

2016-04-25 Thread Silvio Bierman
Clean install of 16.04 release does not solve the problem.

An instance of a Nautilus window must be open when creating the SSHFS
mounts or all attempts to open a window will hang. After closing the
last Nautilus window while mounts are present no new window can be
opened until the mounts are dropped.

Funny thing: when dropping the mounts the blocking Nautilus windows
appear after all. That may lead to quite a stack of them.

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

Title:
  Nautilus hangs when opening SSHFS shares

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

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


[Bug 1571311] Re: Nautilus hangs when opening SSHFS shares

2016-04-17 Thread Silvio Bierman
Addition: accessing the share when all Nautilus windows are closed is
then done from the desktop icon that is created for the share.

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

Title:
  Nautilus hangs when opening SSHFS shares

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

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


[Bug 1571311] [NEW] Nautilus hangs when opening SSHFS shares

2016-04-17 Thread Silvio Bierman
Public bug reported:

If I create an SSHFS share while having a Nautilus window open it shows the 
mount in the sidebar (and on the desktop) and I can access the share without 
problem.
However, If I make the share without a Nautilus window open (or if I close all 
Nautilus windows after the share has been made) and then try to access the 
SSHFS share again no window comes up. Nautilus hangs (also for the local 
filesystem) until I kill the SSHFS share.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: nautilus 1:3.18.4.is.3.14.3-0ubuntu4
ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
Uname: Linux 4.4.0-18-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Sun Apr 17 12:50:04 2016
InstallationDate: Installed on 2015-11-04 (165 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
SourcePackage: nautilus
UpgradeStatus: Upgraded to xenial on 2015-12-28 (111 days ago)

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


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

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

Title:
  Nautilus hangs when opening SSHFS shares

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

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


[Bug 1533251] Re: Ubuntu phone / Aquaris E5: no ringtones when receiving calls, no sound when receiving messages; no sound on speakers

2016-03-19 Thread Silvio-frischi
** Attachment added: "info_notworking"
   
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1533251/+attachment/4602561/+files/info_notworking

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

Title:
  Ubuntu phone / Aquaris E5: no ringtones when receiving calls, no sound
  when receiving messages; no sound on speakers

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

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


[Bug 1533251] Re: Ubuntu phone / Aquaris E5: no ringtones when receiving calls, no sound when receiving messages; no sound on speakers

2016-03-19 Thread Silvio-frischi
I think I have the same but though my phone's sound works just
occasionally sometimes garbled.

Whenever there is no jack plugged in and I start playing something dmesg prints
[  416.722213] lipeng debug|[Sound_Speaker_Turnon] Speaker_Volume: 0

I also appended a version of 'pacmd info' when it's working and when
it's not working, but I can't see a significant difference. So I think
the problem is lower.


** Attachment added: "info_working"
   
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1533251/+attachment/4602560/+files/info_working

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

Title:
  Ubuntu phone / Aquaris E5: no ringtones when receiving calls, no sound
  when receiving messages; no sound on speakers

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

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


[Bug 1558676] [NEW] Chinese input method bug after backspace

2016-03-18 Thread Silvio-frischi
Public bug reported:

When you write zhongguo

then select "中国"

then use backspace such that the input field reads "中"

and then start writing again and type "xue"

the suggestion bar will only show "中xue" instead of different
suggestions for just the "xue" part such as "学".

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: ubuntu-keyboard 0.99.trunk.phablet2+15.04.20160107-0ubuntu1
Uname: Linux 3.4.67 armv7l
ApportVersion: 2.17.2-0ubuntu1.3touch1
Architecture: armhf
Date: Thu Mar 17 17:43:46 2016
InstallationDate: Installed on 2016-02-17 (29 days ago)
InstallationMedia: Ubuntu 15.04 - armhf (20160217-111536)
SourcePackage: ubuntu-keyboard
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug armhf vivid

** Description changed:

  When you write zhongguo
  
  then select "中国"
  
- then use backspace such that the input field reads "国"
+ then use backspace such that the input field reads "中"
  
  and then start writing again and type "xue"
  
- the suggestion bar will only show "国xue" instead of different
+ the suggestion bar will only show "中xue" instead of different
  suggestions for just the "xue" part such as "学".
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: ubuntu-keyboard 0.99.trunk.phablet2+15.04.20160107-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.17.2-0ubuntu1.3touch1
  Architecture: armhf
  Date: Thu Mar 17 17:43:46 2016
  InstallationDate: Installed on 2016-02-17 (29 days ago)
  InstallationMedia: Ubuntu 15.04 - armhf (20160217-111536)
  SourcePackage: ubuntu-keyboard
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Chinese input method bug after backspace

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

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

[Bug 1522316] Re: Icons are too big

2016-01-06 Thread Silvio Bierman
What is the status of this bug? The current 16.04 still has huge desktop
icons and no way to make them smaller. The Nautilus icon size options
are also way too limited. The smallest setting is too small and both
larger settings are too big for list mode.

Reducing the options to three sizes is a big mistake IMHO. Where we used
to have slowly increasing resolutions on computer screens the high res
screens today are twice the resolution of main stream screens. If
anything we need more options than before. Unity allows pixel sizes for
the launcher icons and Nautilus chooses to dumb down.

Together with the unfortunate choice of making Nautilus another horrible
CSD window desktop usability has taken a huge plunge in 16.04.

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

Title:
  Icons are too big

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

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


[Bug 1516323] Re: With compositing off some apps have a huge black border

2015-12-29 Thread Silvio Bierman
Ah Alberts is right: the problem only happens with the terrible CSD
windows. Unfortunately in 16.04 Nautilus and GEdit have also become CSD
windows.

Libra, Orchis and Ultra-Flat are some thems I tried with the same
result. I could live with reverting all CSD windows as a workaround :)

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

Title:
  With compositing off some apps have a huge black border

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

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


[Bug 1516323] Re: With compositing off some apps have a huge black border

2015-12-29 Thread Silvio Bierman
This is not only a problem with Numix. Ambiance and Radiance look kind
of OK but they have messed up rounded corners. All the other themes I
tried have the same huge borders.

Only happens with GTK3 (I think) windows though (Nautilus, Tweak-UI,
GEdit).

I do not have compositing turned off as far as I know.


** Attachment added: "Screenshot"
   
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/1516323/+attachment/4541677/+files/Screenshot%20from%202015-12-29%2011-16-40.png

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

Title:
  With compositing off some apps have a huge black border

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-17 Thread Silvio Bierman
Btw, this was with a 9px font setting. Most of my colleagues use 8px and
some have 7px but I am the senior so that is out of my league :(

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-17 Thread Silvio Bierman
No, the fonts are not smaller than the line but smaller or at least
hardly larger than the sensitive area (feels like about 12 pixels) near
the line. As I said, you do not have to hover the line, only close
enough to it.

I attached a screenshot for the Eclipse editor issue (editing a property
file). For some reason it does no show the mouse cursor but I can assure
you it was positioned well outside the area covered by the horizontal
scroll bar. As you can see there is no way to position the cursor inside
the last line (apart from using the keyboard).

** Attachment added: "Screenshot from 2015-11-17 11-23-20.png"
   
https://bugs.launchpad.net/ubuntu/+source/gedit/+bug/1516713/+attachment/4520513/+files/Screenshot%20from%202015-11-17%2011-23-20.png

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1496121] Re: nm-plasma crashes plasmashell

2015-11-17 Thread Silvio-frischi
The upstream Bug was already in the original post. And it was fixed for
me a long time ago.

upstream: https://bugs.kde.org/show_bug.cgi?id=352764

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

Title:
  nm-plasma crashes plasmashell

To manage notifications about this bug go to:
https://bugs.launchpad.net/plasma-nm/+bug/1496121/+subscriptions

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-17 Thread Silvio Bierman
Thank you Sebastien! If you need anyone to do some testing at any point
I will be glad to help.

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-17 Thread Silvio Bierman
I tried Ambiance and Radience. They initially do have thinner
scrollbars. But once the mouse comes close enough to the scrollbar line
it extends into its full width. Only if I use a large enough font I can
position the cursor in the last line. In Eclipse where I use small fonts
this makes the last line of each source file inaccessible in the source
editor and makes it very hard to manipulate (expand, collapse) the last
item in the package tree list.

I Googled and found an environment variable I can set to disable the
feature altogether and things are workable this way. But I generally
don't like to resort to such obscure settings and like to keep in the
mainstream. But having to pick from a rather limited set of themes to
have something that kind of works is a bit too restrictive for my taste.

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1516713] [NEW] gtk3 overlay scrollbars consitently show wrong behaviour

2015-11-16 Thread Silvio Bierman
Public bug reported:

This is a general bug in GTK3 overlay scrolling (the new kind, not the
old "overlay scrollbars" feature).

When a window needs both horizontal and vertical scrolling the actual
accessible content is reduced by the size of the scrollbars that show up
when you move the mouse into the window.  Normally the scrollbars are
logically outside the scrollable area and that whole are can be scrolled
into view. With overlay scrolling this is not the case because the
scrollbars OVERLAY the scrollable content, effectively making part of
that content unreachable.

In case of a text-file opened in GEDIT this means that the last text-
line will be covered by the horizontal scrollbar and you can not scroll
further down to scroll it above the horizontal scroll bar (see the
attached screenshot).

The fix would obviously be to extend the logical scroll range of both
scrollbars with the width of the other scrollbar if that exists.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: gedit 3.10.4-0ubuntu13
ProcVersionSignature: Ubuntu 4.2.0-18.22-generic 4.2.3
Uname: Linux 4.2.0-18-generic x86_64
ApportVersion: 2.19.1-0ubuntu4
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Nov 16 17:59:46 2015
ExecutablePath: /usr/bin/gedit
InstallationDate: Installed on 2015-11-04 (12 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
SourcePackage: gedit
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug wily

** Attachment added: "Screenshot of GEDIT with partly covered last line of text"
   
https://bugs.launchpad.net/bugs/1516713/+attachment/4520212/+files/Screenshot%20from%202015-11-16%2017-56-03.png

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

Title:
  gtk3 overlay scrollbars consitently show wrong behaviour

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-16 Thread Silvio Bierman
** Summary changed:

- gtk3 overlay scrollbars consitently show wrong behaviour
+ gtk3 overlay scrollbars consistently show wrong behaviour

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-16 Thread Silvio Bierman
I use  numix-grey. And that does not make any sense: any scrollbar width
larger than zero pixels would cover content. That could cripple any
application, including one that edits graphics etc. The fact that I
could access a line of text because it is larger than common scrollbar
widths does not right this wrong behaviour,

Whatever the scrollbar width the calculations are off by exactly that
size.

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1516713] Re: gtk3 overlay scrollbars consistently show wrong behaviour

2015-11-16 Thread Silvio Bierman
Sorry, I misread your comment and the part where you said "when not in
use". They are visible when the mouse is over the content so they are
always "in use" when I want to click the last line to put the cursor
there (which will then not work of course because I can only click on
the scroll bar).

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

Title:
  gtk3 overlay scrollbars consistently show wrong behaviour

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

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2015-10-23 Thread Silvio Bierman
I need to correct what I said above. Turning of hinting DOES improve
things a lot but it does not work immediately. I did have to restart the
system after disabling hinting which made me believe earlier that it did
nothing (and then I kept restoring the setting to ON/FULL).

Fonts still look wrong in parts of my Eclipse IDE but that varies with
the Eclipse window (package explorer is bad, source editor is good) and
some web pages in Chromium show ugly fonts. Overall my desktop looks OK
now.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2015-10-23 Thread Silvio Bierman
An additional remark about the garbled fonts in Eclipse: this happens
when I scroll the package-explorer window. This might be a Java related
thing since I can not reproduce the behavior outside Eclipse.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2015-10-23 Thread Silvio Bierman
I also experience strange font rendering after reinstalling 15.10. I
have already been on the development version for months and until
yesterday everything looked fine. Yesterday I did a download of the
15.10 release and reinstalled. Everything worked out of the box, even my
installed packages, EXCEPT msttcorefonts. I had to explicitly install
the ttf-mscorefonts-installer to get fonts like Arial, Courier and
Verdana.

But all fonts (not only the ms-ones) are rendered very weird in most if
not all places. The look very thin (most fonts are probably one pixels
wide) and I really have to go to bold versions to see thicker fonts.
Even then, the fonts look garbled.

Changing antialiasing and/or hinting settings has very little influence,
if any.

It brings back nightmares of the ugly font rendering I am used to in the
Windows I have running in a VirtualBox.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1502167] [NEW] file collision in account-plugin-google kde-config-telepathy-accounts

2015-10-02 Thread Silvio-frischi
Public bug reported:

both packages contain the file /usr/share/accounts/services/google-
im.service

account-plugin-google, kde-config-telepathy-accounts

http://packages.ubuntu.com/search?suite=wily=any=exactfilename=contents
=google-im.service

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: kde-config-telepathy-accounts 4:15.08.1-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-12.14-generic 4.2.1
Uname: Linux 4.2.0-12-generic x86_64
ApportVersion: 2.19-0ubuntu1
Architecture: amd64
CurrentDesktop: KDE
Date: Fri Oct  2 15:57:47 2015
InstallationDate: Installed on 2015-04-25 (159 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
SourcePackage: ktp-accounts-kcm
UpgradeStatus: Upgraded to wily on 2015-08-15 (47 days ago)

** Affects: ktp-accounts-kcm (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  file collision in  account-plugin-google kde-config-telepathy-accounts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ktp-accounts-kcm/+bug/1502167/+subscriptions

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


[Bug 1496121] Re: nm-plasma crashes plasmashell

2015-09-30 Thread Silvio-frischi
I think this is fixed now

** Changed in: plasma-nm (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  nm-plasma crashes plasmashell

To manage notifications about this bug go to:
https://bugs.launchpad.net/plasma-nm/+bug/1496121/+subscriptions

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


[Bug 1499075] Re: python3.4.3 SRU breaks awscli

2015-09-27 Thread Silvio SantoZ
@adconrad: I can confirm that python3-botocore (0.29.0+repack-2ubuntu0.1) fixes 
the problem. Thanks!
@wayne: no, you don't have the updated botocore. Try this:

wget 
"http://launchpadlibrarian.net/218773283/python3-botocore_0.29.0%2Brepack-2ubuntu0.1_all.deb;
dpkg -i python3-botocore_0.29.0+repack-2ubuntu0.1_all.deb

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

Title:
  python3.4.3 SRU breaks awscli

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

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


[Bug 1496121] [NEW] nm-plasma crashes plasmashell

2015-09-15 Thread Silvio-frischi
Public bug reported:

when trying to connect to a *new* network using plasma-nm, plasmashell
crashes with the following message.

/usr/bin/plasmashell: symbol lookup error: /usr/lib/x86_64-linux-
gnu/libplasmanm_editor.so: undefined symbol:
_ZNK14NetworkManager18ConnectionSettings19autoconnectPriorityEv

upstream: https://bugs.kde.org/show_bug.cgi?id=352764
related: https://bugzilla.opensuse.org/show_bug.cgi?id=933977 Reproducible: 
Always

Solution from upstream: rebuild either networkmanager-qt or plasma-nm
against current NetworkManager version

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: plasma-nm 4:5.4.1-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-10.10-generic 4.2.0
Uname: Linux 4.2.0-10-generic x86_64
ApportVersion: 2.18.1-0ubuntu1
Architecture: amd64
CurrentDesktop: KDE
Date: Tue Sep 15 21:55:04 2015
InstallationDate: Installed on 2015-04-25 (142 days ago)
InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
SourcePackage: plasma-nm
UpgradeStatus: Upgraded to wily on 2015-08-15 (31 days ago)

** Affects: plasma-nm (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  nm-plasma crashes plasmashell

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

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


[Bug 1474276] Re: PHP Fatal error: Inconsistent insteadof definition

2015-07-27 Thread Silvio Ginter
Dear Robie,

i just compared the source code of PHP Package included in Wily and the 
original 5.6.11 branch on GitHub.
The fix is NOT included. Please compare Wily: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/wily/php5/wily/view/head:/Zend/zend_compile.c#L4126
 over GitHub: 
https://github.com/php/php-src/blob/PHP-5.6.11/Zend/zend_compile.c#L4269

Both should be the same, but they are not.

** Changed in: php5 (Ubuntu)
   Status: Fix Released = Incomplete

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

Title:
  PHP Fatal error:  Inconsistent insteadof definition

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1474276/+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 1474276] Re: PHP Fatal error: Inconsistent insteadof definition

2015-07-27 Thread Silvio Ginter
Dear Robie,

i just compared the source code of PHP Package included in Wily and the 
original 5.6.11 branch on GitHub.
The fix is NOT included. Please compare Wily: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/wily/php5/wily/view/head:/Zend/zend_compile.c#L4126
 over GitHub: 
https://github.com/php/php-src/blob/PHP-5.6.11/Zend/zend_compile.c#L4269

Both should be the same, but they are not.

** Changed in: php5 (Ubuntu)
   Status: Fix Released = Incomplete

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

Title:
  PHP Fatal error:  Inconsistent insteadof definition

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

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


[Bug 1474276] [NEW] Need to merge Bug #68185 - 'PHP Fatal error: Inconsistent insteadof definition.' - incorrectly triggered

2015-07-14 Thread Silvio Ginter
Public bug reported:

The PHP Bug #68185 needs to be merged into Ubuntu PHP 5.5.x sources for
14.04.x, as these are technically speaking unusable for working with
traits. For details please have a look on
https://bugs.php.net/bug.php?id=68185

It has been fixed in the PHP mainline with 5.5.20 / 5.6.4 and been
proven as stable.

I checked the current sources in both, the current stable branch
(http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/trusty/php5/trusty/view/head:/Zend/zend_compile.c#L4126)
and the development branch
(http://bazaar.launchpad.net/~noskcaj/ubuntu/trusty/php5/merge/view/head:/Zend/zend_compile.c#L4116)
. Both lacks this simple fix. The bug is quite hard to reproduce, as it
occurs randomly.

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


** Tags: error fatal php5 random traits

** Description changed:

  The PHP Bug #68185 needs to be merged into Ubuntu PHP 5.5.x sources for
  14.04.x, as these are technically speaking unusable for working with
  traits. For details please have a look on
  https://bugs.php.net/bug.php?id=68185
  
  It has been fixed in the PHP mainline with 5.5.20 / 5.6.4 and been
  proven as stable.
  
- I checked the current sources in both, the current stable branch () and
- the development branch
+ I checked the current sources in both, the current stable branch
+ (http://bazaar.launchpad.net/~ubuntu-
+ branches/ubuntu/trusty/php5/trusty/view/head:/Zend/zend_compile.c#L4126)
+ and the development branch
  
(http://bazaar.launchpad.net/~noskcaj/ubuntu/trusty/php5/merge/view/head:/Zend/zend_compile.c#L4116)
  . Both lacks this simple fix. The bug is quite hard to reproduce, as it
  occurs randomly.

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

Title:
  Need to merge Bug #68185 - 'PHP Fatal error: Inconsistent insteadof
  definition.' - incorrectly triggered

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1474276/+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 1474276] [NEW] Need to merge Bug #68185 - 'PHP Fatal error: Inconsistent insteadof definition.' - incorrectly triggered

2015-07-14 Thread Silvio Ginter
Public bug reported:

The PHP Bug #68185 needs to be merged into Ubuntu PHP 5.5.x sources for
14.04.x, as these are technically speaking unusable for working with
traits. For details please have a look on
https://bugs.php.net/bug.php?id=68185

It has been fixed in the PHP mainline with 5.5.20 / 5.6.4 and been
proven as stable.

I checked the current sources in both, the current stable branch
(http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/trusty/php5/trusty/view/head:/Zend/zend_compile.c#L4126)
and the development branch
(http://bazaar.launchpad.net/~noskcaj/ubuntu/trusty/php5/merge/view/head:/Zend/zend_compile.c#L4116)
. Both lacks this simple fix. The bug is quite hard to reproduce, as it
occurs randomly.

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


** Tags: error fatal php5 random traits

** Description changed:

  The PHP Bug #68185 needs to be merged into Ubuntu PHP 5.5.x sources for
  14.04.x, as these are technically speaking unusable for working with
  traits. For details please have a look on
  https://bugs.php.net/bug.php?id=68185
  
  It has been fixed in the PHP mainline with 5.5.20 / 5.6.4 and been
  proven as stable.
  
- I checked the current sources in both, the current stable branch () and
- the development branch
+ I checked the current sources in both, the current stable branch
+ (http://bazaar.launchpad.net/~ubuntu-
+ branches/ubuntu/trusty/php5/trusty/view/head:/Zend/zend_compile.c#L4126)
+ and the development branch
  
(http://bazaar.launchpad.net/~noskcaj/ubuntu/trusty/php5/merge/view/head:/Zend/zend_compile.c#L4116)
  . Both lacks this simple fix. The bug is quite hard to reproduce, as it
  occurs randomly.

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

Title:
  Need to merge Bug #68185 - 'PHP Fatal error: Inconsistent insteadof
  definition.' - incorrectly triggered

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

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


[Bug 1470962] Re: Dolphin hangs up when opening a file in Kate from it. Only happen when using a already open kate session.

2015-07-05 Thread Silvio-frischi
This seems fixed in 4:14.12.3-0ubuntu2.1 which is currently in proposed

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

Title:
  Dolphin hangs up when opening a file in Kate from it. Only happen when
  using a already open kate session.

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

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


[Bug 1470962] [NEW] Dolphin hangs up when opening a file in Kate from it. Only happen when using a already open kate session.

2015-07-02 Thread Silvio-frischi
Public bug reported:

Could you port this fix to ubuntu/kubuntu.

https://bugs.kde.org/show_bug.cgi?id=339094

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: dolphin 4:14.12.3-0ubuntu3.1
ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
Uname: Linux 3.19.0-21-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
CurrentDesktop: KDE
Date: Thu Jul  2 20:26:21 2015
InstallationDate: Installed on 2015-04-25 (67 days ago)
InstallationMedia: Kubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
SourcePackage: kde-baseapps
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: kde-baseapps (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug vivid

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

Title:
  Dolphin hangs up when opening a file in Kate from it. Only happen when
  using a already open kate session.

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

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


[Bug 1467522] [NEW] package grub-pc 2.02~beta2-9ubuntu1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2015-06-22 Thread Silvio LM Junqueira
Public bug reported:

The problem is this exit error status 10. It happens whenever I log the my 
upgraded ubuntu 14.04:
package grub-pc 2.02~beta2-9ubuntu1.2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 10

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: grub-pc 2.02~beta2-9ubuntu1.2
ProcVersionSignature: Ubuntu 3.13.0-55.92-generic 3.13.11-ckt20
Uname: Linux 3.13.0-55-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
Date: Thu Jun 18 09:10:37 2015
DuplicateSignature: package:grub-pc:2.02~beta2-9ubuntu1.2:subprocess installed 
post-installation script returned error exit status 10
ErrorMessage: subprocess installed post-installation script returned error exit 
status 10
InstallationDate: Installed on 2012-11-05 (958 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=32aefed7-f8ed-4684-a72e-b0ae7f49e7ac ro quiet splash vt.handoff=7
SourcePackage: grub2
Title: package grub-pc 2.02~beta2-9ubuntu1.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 10
UpgradeStatus: Upgraded to trusty on 2015-04-29 (53 days ago)

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


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

Title:
  package grub-pc 2.02~beta2-9ubuntu1.2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 10

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

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


[Bug 1301623] Re: unity freezes when moving windows among workspaces

2015-06-12 Thread Silvio Sabo
*** This bug is a duplicate of bug 815996 ***
https://bugs.launchpad.net/bugs/815996

I have this issue as well in Ubuntu 15.04.

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

Title:
  unity freezes when moving windows among workspaces

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

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


[Bug 1453109] Re: fcitx no longer autostarting

2015-05-08 Thread Silvio-frischi
Sorry I just found it didn't start running because ibus was running.

** Changed in: fcitx (Ubuntu)
   Status: New = Invalid

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

Title:
  fcitx no longer autostarting

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

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


[Bug 1453109] [NEW] fcitx no longer autostarting

2015-05-08 Thread Silvio-frischi
Public bug reported:

Since vivid fcitx-bin no longer puts the fcitx-autostart.desktop file
into /etc/xdg/autostart/ as can be seen on packages.ubuntu.com. I never
used fcitx before but I assume that's why it doesn't autostart. It used
to be there.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: fcitx-bin 1:4.2.8.5-6ubuntu3
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: KDE
Date: Fri May  8 13:29:25 2015
InstallationDate: Installed on 2015-04-25 (12 days ago)
InstallationMedia: Kubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
SourcePackage: fcitx
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

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

Title:
  fcitx no longer autostarting

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

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


[Bug 1442294] Re: Fails to mount Btrfs

2015-04-14 Thread Silvio-frischi
3.16.0-34 suddenly seems to work now. Can't reproduce the bug anymore.
Maybe there was some problem installing the package that got fixed when
i installed some other kernel.

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

Title:
  Fails to mount Btrfs

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

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


[Bug 1442294] Re: Fails to mount Btrfs

2015-04-11 Thread Silvio-frischi
I already had proposed/backports/updates enabled. I can't find a kernel
version newer than 3.16.0-34. I'm on Ubuntu 14.10 x86_64.

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

Title:
  Fails to mount Btrfs

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

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


[Bug 1442294] Re: Fails to mount Btrfs

2015-04-09 Thread Silvio-frischi
the mainline kernel you linked boots fine. I'm running it right now.
uname -a
Linux petroc 3.16.7-031607-generic #201503300635 SMP Mon Mar 30 10:36:26 UTC 
2015 x86_64 x86_64 x86_64 GNU/Linux


** Tags added: kernel-fixed-upstream

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

Title:
  Fails to mount Btrfs

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

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


[Bug 1442294] [NEW] Fails to mount Btrfs

2015-04-09 Thread Silvio-frischi
Public bug reported:

Since 3.16.0-34 my computer won't mount my rootfs (btrfs) anymore.
3.16.0-33 still works. I tried it manually with 'break=mount' but it
just stops doing anything during the mount command (mount -t btrfs
/dev/... /root). kernel panic??? But there is nothing printed on the
screen except the three lines that appear anyway.

Btrfs loaded
BTRFS: device fsid 9fc2c5a8-902a-4dd8-8019-10383570e021 devid 1 transid 469974 
/dev/mapper/petrocvol-root
BTRFS info (device dm-2): disk space caching is enabled

My btrfs is on an encrypted luks, but that part works fine.

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

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

Title:
  Fails to mount Btrfs

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

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


[Bug 1442294] Re: Fails to mount Btrfs

2015-04-09 Thread Silvio-frischi
** 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/1442294

Title:
  Fails to mount Btrfs

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

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


[Bug 1411539] Re: usb-creator fails - cannot generate usb disk

2015-02-01 Thread Mirto Silvio Busico
Tried again using unetbootin with the same result

This time I formatted the usb key as EXT4 and now I see some errors
reported in dmesg:

[10957.453528] usb-storage 3-1:1.0: USB Mass Storage device detected
[10957.453697] scsi8 : usb-storage 3-1:1.0
[10958.454327] scsi 8:0:0:0: Direct-Access TDK LoR  TF10 PMAP 
PQ: 0 ANSI: 6
[10958.454732] sd 8:0:0:0: Attached scsi generic sg2 type 0
[10960.199639] sd 8:0:0:0: [sdc] 15108480 512-byte logical blocks: (7.73 
GB/7.20 GiB)
[10960.199846] sd 8:0:0:0: [sdc] Write Protect is off
[10960.199848] sd 8:0:0:0: [sdc] Mode Sense: 23 00 00 00
[10960.200052] sd 8:0:0:0: [sdc] No Caching mode page found
[10960.200054] sd 8:0:0:0: [sdc] Assuming drive cache: write through
   
[10960.205263]  sdc: sdc1
[10960.206887] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[10967.401204] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: 
(null)
[11172.459350] INFO: task extlinux:8675 blocked for more than 120 seconds.
[11172.459353]   Not tainted 3.16.0-30-generic #40-Ubuntu
[11172.459354] echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this 
message.
[11172.459356] extlinuxD 88082fa13840 0  8675   8674 0x
[11172.459359]  8807d3117d70 0082 880743fe1e90 
00013840
[11172.459361]  8807d3117fd8 00013840 880743fe1e90 
8807d3117e98
[11172.459363]  8807d3117e90 7fff 880743fe1e90 
880743fc2868
[11172.459366] Call Trace:
[11172.459372]  [81785509] schedule+0x29/0x70
[11172.459374]  [817847c9] schedule_timeout+0x229/0x2a0
[11172.459377]  [8108b256] ? __queue_work+0x136/0x340
[11172.459379]  [8108b52a] ? __queue_delayed_work+0xaa/0x1c0
[11172.459382]  [81786694] wait_for_completion+0xb4/0x1e0
[11172.459386]  [810a5670] ? wake_up_state+0x20/0x20
[11172.459391]  [81211ed0] ? vfs_fsync+0x40/0x40
[11172.459394]  [8120b355] sync_inodes_sb+0xa5/0x1c0
[11172.459396]  [81211ed0] ? vfs_fsync+0x40/0x40
[11172.459399]  [81211ee9] sync_inodes_one_sb+0x19/0x20
[11172.459402]  [811e4982] iterate_supers+0xb2/0x110
[11172.459404]  [81212165] sys_sync+0x35/0x90
[11172.459407]  [8178a3ad] system_call_fastpath+0x1a/0x1f
[11292.591308] INFO: task extlinux:8675 blocked for more than 120 seconds.
[11292.591312]   Not tainted 3.16.0-30-generic #40-Ubuntu
[11292.591313] echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this 
message.
[11292.591314] extlinuxD 88082fa13840 0  8675   8674 0x
[11292.591318]  8807d3117d70 0082 880743fe1e90 
00013840
[11292.591320]  8807d3117fd8 00013840 880743fe1e90 
8807d3117e98
[11292.591322]  8807d3117e90 7fff 880743fe1e90 
880743fc2868
[11292.591324] Call Trace:
[11292.591330]  [81785509] schedule+0x29/0x70
[11292.591333]  [817847c9] schedule_timeout+0x229/0x2a0
[11292.591336]  [8108b256] ? __queue_work+0x136/0x340
[11292.591338]  [8108b52a] ? __queue_delayed_work+0xaa/0x1c0
[11292.591340]  [81786694] wait_for_completion+0xb4/0x1e0
[11292.591345]  [810a5670] ? wake_up_state+0x20/0x20
[11292.591350]  [81211ed0] ? vfs_fsync+0x40/0x40
[11292.591353]  [8120b355] sync_inodes_sb+0xa5/0x1c0
[11292.591355]  [81211ed0] ? vfs_fsync+0x40/0x40
[11292.591357]  [81211ee9] sync_inodes_one_sb+0x19/0x20
[11292.591360]  [811e4982] iterate_supers+0xb2/0x110
[11292.591363]  [81212165] sys_sync+0x35/0x90
[11292.591366]  [8178a3ad] system_call_fastpath+0x1a/0x1f
[11412.723268] INFO: task extlinux:8675 blocked for more than 120 seconds.
[11412.723272]   Not tainted 3.16.0-30-generic #40-Ubuntu
[11412.723273] echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this 
message.
[11412.723274] extlinuxD 88082fa13840 0  8675   8674 0x
[11412.723277]  8807d3117d70 0082 880743fe1e90 
00013840
[11412.723279]  8807d3117fd8 00013840 880743fe1e90 
8807d3117e98
[11412.723281]  8807d3117e90 7fff 880743fe1e90 
880743fc2868
[11412.723283] Call Trace:
[11412.723290]  [81785509] schedule+0x29/0x70
[11412.723292]  [817847c9] schedule_timeout+0x229/0x2a0
[11412.723295]  [8108b256] ? __queue_work+0x136/0x340
[11412.723297]  [8108b52a] ? __queue_delayed_work+0xaa/0x1c0
[11412.723300]  [81786694] wait_for_completion+0xb4/0x1e0
[11412.723304]  [810a5670] ? wake_up_state+0x20/0x20
[11412.723308]  [81211ed0] ? vfs_fsync+0x40/0x40
[11412.723311]  [8120b355] sync_inodes_sb+0xa5/0x1c0
[11412.723313]  [81211ed0] ? vfs_fsync+0x40/0x40
[11412.723315]  [81211ee9] sync_inodes_one_sb+0x19/0x20
[11412.723318]  [811e4982] 

[Bug 1411539] Re: usb-creator fails - cannot generate usb disk

2015-01-29 Thread Mirto Silvio Busico
Also unetbootin shows the same behaviour

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

Title:
  usb-creator fails - cannot generate usb disk

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

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


[Bug 1412271] [NEW] Failed to install grub-installer. I think the DVD is corrupt.

2015-01-18 Thread Silvio
Public bug reported:

It failed to install the grub files. I think it's because i had the DVD
for a while in storage and got scratched in a way

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: ubiquity 2.14.6
ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
Uname: Linux 3.8.0-19-generic x86_64
ApportVersion: 2.9.2-0ubuntu8
Architecture: amd64
CasperVersion: 1.331
Date: Sun Jan 18 18:43:59 2015
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
LiveMediaBuild: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
ProcEnviron:
 TERM=unknown
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.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 raring third-party-packages ubiquity-2.14.6 ubuntu

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

Title:
  Failed to install grub-installer. I think the DVD is corrupt.

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

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


[Bug 1411539] UsbDevices.txt

2015-01-16 Thread Mirto Silvio Busico
apport information

** Attachment added: UsbDevices.txt
   
https://bugs.launchpad.net/bugs/1411539/+attachment/4299801/+files/UsbDevices.txt

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

Title:
  usb-creator fails - cannot generate usb disk

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

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


[Bug 1411539] UsbCreatorLog.txt

2015-01-16 Thread Mirto Silvio Busico
apport information

** Attachment added: UsbCreatorLog.txt
   
https://bugs.launchpad.net/bugs/1411539/+attachment/4299800/+files/UsbCreatorLog.txt

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

Title:
  usb-creator fails - cannot generate usb disk

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

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


[Bug 1411539] [NEW] usb-creator fails - cannot generate usb disk

2015-01-16 Thread Mirto Silvio Busico
Public bug reported:

Using Kubuntu 14.10 64Bit, to reproduce

1) select Kubuntu 14.10 64bit ISO image
2) use a usb key of 8Gb or more (tried vaRIOUS BRAND)
3) select erase disk
4) assign 4Gb for the persistent disk
5) start the operation

The progress stops when it says creating persistent file 99% 
From here nothing happens

Dmesg says:

[ 2722.281146] usb 3-1: new high-speed USB device number 6 using xhci_hcd
[ 2722.409760] usb 3-1: New USB device found, idVendor=0781, idProduct=557d
[ 2722.409764] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2722.409766] usb 3-1: Product: Cruzer Force
[ 2722.409768] usb 3-1: Manufacturer: SanDisk
[ 2722.409769] usb 3-1: SerialNumber: 4C530010271021100025
[ 2722.435128] usb-storage 3-1:1.0: USB Mass Storage device detected
[ 2722.435181] scsi6 : usb-storage 3-1:1.0
[ 2722.435245] usbcore: registered new interface driver usb-storage
[ 2722.438343] usbcore: registered new interface driver uas
[ 2723.435271] scsi 6:0:0:0: Direct-Access SanDisk  Cruzer Force 1.26 
PQ: 0 ANSI: 6
[ 2723.435697] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 2723.437195] sd 6:0:0:0: [sdc] 31266816 512-byte logical blocks: (16.0 
GB/14.9 GiB)
[ 2723.439162] sd 6:0:0:0: [sdc] Write Protect is off
[ 2723.439168] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[ 2723.439515] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, 
doesn't support DPO or FUA
[ 2723.447774]  sdc: sdc1 sdc2
[ 2723.450034] sd 6:0:0:0: [sdc] Attached SCSI disk
[ 2741.921795] FAT-fs (sdc1): Volume was not properly unmounted. Some data may 
be corrupt. Please run fsck.
[ 2783.375371] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 2783.377357] ISO 9660 Extensions: RRIP_1991A
[ 4634.256459] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 4634.256477] ISO 9660 Extensions: RRIP_1991A
--- 
ApportVersion: 2.14.7-0ubuntu8.1
Architecture: amd64
DistroRelease: Ubuntu 14.10
InstallationDate: Installed on 2014-11-24 (52 days ago)
InstallationMedia: Kubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
Package: usb-creator (not installed)
ProcEnviron:
 LANGUAGE=it_IT
 TERM=xterm
 PATH=(custom, no user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
Tags:  utopic
UDisksDump: Error: [Errno 2] File o directory non esistente
Uname: Linux 3.16.0-29-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
_MarkForUpload: True

** Affects: usb-creator (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-collected utopic

** Tags added: apport-collected utopic

** Description changed:

  Using Kubuntu 14.10 64Bit, to reproduce
  
  1) select Kubuntu 14.10 64bit ISO image
  2) use a usb key of 8Gb or more (tried vaRIOUS BRAND)
  3) select erase disk
  4) assign 4Gb for the persistent disk
  5) start the operation
  
  The progress stops when it says creating persistent file 99% 
  From here nothing happens
  
  Dmesg says:
  
  [ 2722.281146] usb 3-1: new high-speed USB device number 6 using xhci_hcd
  [ 2722.409760] usb 3-1: New USB device found, idVendor=0781, idProduct=557d
  [ 2722.409764] usb 3-1: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
  [ 2722.409766] usb 3-1: Product: Cruzer Force
  [ 2722.409768] usb 3-1: Manufacturer: SanDisk
  [ 2722.409769] usb 3-1: SerialNumber: 4C530010271021100025
  [ 2722.435128] usb-storage 3-1:1.0: USB Mass Storage device detected
  [ 2722.435181] scsi6 : usb-storage 3-1:1.0
  [ 2722.435245] usbcore: registered new interface driver usb-storage
  [ 2722.438343] usbcore: registered new interface driver uas
  [ 2723.435271] scsi 6:0:0:0: Direct-Access SanDisk  Cruzer Force 1.26 
PQ: 0 ANSI: 6
  [ 2723.435697] sd 6:0:0:0: Attached scsi generic sg2 type 0
  [ 2723.437195] sd 6:0:0:0: [sdc] 31266816 512-byte logical blocks: (16.0 
GB/14.9 GiB)
  [ 2723.439162] sd 6:0:0:0: [sdc] Write Protect is off
  [ 2723.439168] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
  [ 2723.439515] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, 
doesn't support DPO or FUA
  [ 2723.447774]  sdc: sdc1 sdc2
  [ 2723.450034] sd 6:0:0:0: [sdc] Attached SCSI disk
  [ 2741.921795] FAT-fs (sdc1): Volume was not properly unmounted. Some data 
may be corrupt. Please run fsck.
  [ 2783.375371] ISO 9660 Extensions: Microsoft Joliet Level 3
  [ 2783.377357] ISO 9660 Extensions: RRIP_1991A
  [ 4634.256459] ISO 9660 Extensions: Microsoft Joliet Level 3
  [ 4634.256477] ISO 9660 Extensions: RRIP_1991A
+ --- 
+ ApportVersion: 2.14.7-0ubuntu8.1
+ Architecture: amd64
+ DistroRelease: Ubuntu 14.10
+ InstallationDate: Installed on 2014-11-24 (52 days ago)
+ InstallationMedia: Kubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
+ Package: usb-creator (not installed)
+ ProcEnviron:
+  LANGUAGE=it_IT
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=it_IT.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
+ Tags:  utopic
+ UDisksDump: 

[Bug 1411324] [NEW] package nvidia-331 331.113-0ubuntu0.1 failed to install/upgrade: Unterprozess installiertes post-removal-Skript gab den Fehlerwert 8 zurück

2015-01-15 Thread Silvio Wangler
Public bug reported:

Just did apt-get upgrade to apply the updates

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: nvidia-331 331.113-0ubuntu0.1
ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
Uname: Linux 3.16.0-29-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.7-0ubuntu8
AptOrdering:
 nvidia-331-uvm: Purge
 nvidia-331: Purge
 nvidia-opencl-icd-331: Purge
 nvidia-prime: Purge
 nvidia-settings: Purge
Architecture: amd64
Date: Thu Jan 15 17:54:54 2015
DuplicateSignature: package:nvidia-331:331.113-0ubuntu0.1:Unterprozess 
installiertes post-removal-Skript gab den Fehlerwert 8 zurück
ErrorMessage: Unterprozess installiertes post-removal-Skript gab den Fehlerwert 
8 zurück
InstallationDate: Installed on 2014-11-22 (54 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
SourcePackage: nvidia-graphics-drivers-331
Title: package nvidia-331 331.113-0ubuntu0.1 failed to install/upgrade: 
Unterprozess installiertes post-removal-Skript gab den Fehlerwert 8 zurück
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.modprobe.d.nvidia.331.hybrid.conf: [deleted]

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package utopic

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

Title:
  package nvidia-331 331.113-0ubuntu0.1 failed to install/upgrade:
  Unterprozess installiertes post-removal-Skript gab den Fehlerwert 8
  zurück

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

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

  1   2   3   4   5   6   >