[Bug 1879968] Re: copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

2020-06-28 Thread Marcello Nuccio
It's not always easy to check that the pasted text it's the correct one,
then this is a data corruption bug. That is why I think this is a
critical bug.

Worse, the most affected users of this bug (non-technical ones) are very
unlikely to ever report it. For example, I am a programmer and I only
discovered this bug when my wife, a non-technical user, reported it to
me. She started to see cut and paste problems with Ubuntu 19.04, almost
one year ago, but at the same time, I have never had any problem,
because, as a programmer, I mostly use different software. My wife has
never filled a bug report, as most non-technical users (I think). Then I
don't know how to raise awareness of this problem.

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

Title:
  copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

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

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

[Bug 1879968] Re: copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

2020-06-08 Thread Marcello Nuccio
How can I help to fix this bug?

I can easely reproduce it easely on three differnt computers (one new
install, and two upgraded from 19.10).

The only workaround that I have found is to install xubuntu-desktop or
lubuntu-desktop. I cannot use "Ubuntu Wayland" because libreoffice
becomes sluggish (I can't reproduce it reliably, it seems completely
random) and because it has limited remote desktop functionality.

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

Title:
  copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

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

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

[Bug 1721719] Re: gvfs-info bashism

2017-10-18 Thread Marcello Nuccio
You are right, the bug is fixed upstream. I have manually downloaded
gvfs-bin_1.34.1-1ubuntu1_amd64.deb and checked the file: it includes the
fix.

However it is not fixed on my computer. And I do not know why.

Unfortunately I have not found the package in /var/cache/apt/archives,
then I am not sure if the .deb installed on my computer is the same.

I have never tampered with my installation. This is a fresh install of
Artful Beta1 updated once a day with "apt dist-upgrade". I dont know
what has happened.

Regarding the use of "$@:2", there is no error displayed because:

1. "$@:2" is valid syntax in both shells, but it is clearly a bug
because it is expanded to "$1" "$2" ... ":2", which does not make sense.
I think that in bash it should have been "${@:2}" (2 is an offset),
while in dash the syntax is not supported and you should use "shift"
instead. You can check it by running:

$ echo 'echo "$@:2"; echo "${@:2}"' | bash -s foo bar
foo bar:2
bar

$ echo 'echo "$@:2"; echo "${@:2}"' | dash -s foo bar
foo bar:2
dash: 1: Bad substitution

2. "gio help info" discards all parameters after "info", then for
example "gio help info :2" is equivalent to "gio help info".

In short: I think you can safely remove "$@:2".

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

Title:
  gvfs-info bashism

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

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

[Bug 1721719] Re: gvfs-info bashism

2017-10-06 Thread Marcello Nuccio
** Description changed:

  The script /usr/bin/gvfs-info uses two bash features:
  
  1. "==" is used for string comparison instead of "="
  2. "$@:2" is used instead of "shift" and then "$@" to expand all but the 
first argument.
+ 
+ You can see the errors by running "gvfs-info --help".
  
  I have found this bug using xdg-open to open a PDF file from the command
  line. xdg-open executes "gvfs-info --help" to check the environment, but
  this command fails because of the problems described.
  
  The attached patch fixes the problem for me.
  
  $ lsb_release -rd:
  Description:  Ubuntu Artful Aardvark (development branch)
  Release:  17.10
  
  $ apt-cache policy gvfs-bin
  gvfs-bin:
-   Installato: 1.34.1-1ubuntu1
-   Candidato:  1.34.1-1ubuntu1
-   Tabella versione:
-  *** 1.34.1-1ubuntu1 500
- 500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installato: 1.34.1-1ubuntu1
+   Candidato:  1.34.1-1ubuntu1
+   Tabella versione:
+  *** 1.34.1-1ubuntu1 500
+ 500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gvfs-bin 1.34.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Oct  6 09:45:04 2017
  InstallationDate: Installed on 2017-09-21 (15 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=it_IT.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=it_IT.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gvfs
  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/1721719

Title:
  gvfs-info bashism

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

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

[Bug 1721719] [NEW] gvfs-info bashism

2017-10-06 Thread Marcello Nuccio
Public bug reported:

The script /usr/bin/gvfs-info uses two bash features:

1. "==" is used for string comparison instead of "="
2. "$@:2" is used instead of "shift" and then "$@" to expand all but the first 
argument.

I have found this bug using xdg-open to open a PDF file from the command
line. xdg-open executes "gvfs-info --help" to check the environment, but
this command fails because of the problems described.

The attached patch fixes the problem for me.

$ lsb_release -rd:
Description:Ubuntu Artful Aardvark (development branch)
Release:17.10

$ apt-cache policy gvfs-bin
gvfs-bin:
  Installato: 1.34.1-1ubuntu1
  Candidato:  1.34.1-1ubuntu1
  Tabella versione:
 *** 1.34.1-1ubuntu1 500
500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
100 /var/lib/dpkg/status

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gvfs-bin 1.34.1-1ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Oct  6 09:45:04 2017
InstallationDate: Installed on 2017-09-21 (15 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: gvfs
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

** Patch added: "fixes bashisms in /usr/bin/gvfs-info"
   
https://bugs.launchpad.net/bugs/1721719/+attachment/4963458/+files/gvfs-info-fix-bashism.patch

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

Title:
  gvfs-info bashism

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

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

[Bug 1003950] Re: launcher does not show minimized update manager while clicked

2014-10-17 Thread Marcello Nuccio
Eric Lambart, did you close the app by right clicking on the launcher
icon and choosing Exit from the menu, before trying to launch it?

To find the app, you have two options:

1. or write software update (without the final r) in the dash (Super
key OR Super+A, not Super-R).

2. choose System details (I dont know the exact translation, but
should be the first menu item) from the gear menu in the top right
corner. Then click the button in bottom right corner, if updates are
available.

About the crashes, it's off topic for this bug, so please report it as a
separate bug report. However, since I had similar problems, I can say
you that it's probably a problem with the video drivers. Here's a couple
of references that helped me to solve them:

http://askubuntu.com/a/507299/11223
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1329689

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

Title:
  launcher does not show minimized update manager while clicked

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

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


[Bug 1324697] Re: [HP Pavilion dv7t-7000 CTO Entertainment Notebook PC] Suspend fails with - kernel 3.13.0-27

2014-10-05 Thread Marcello Nuccio
*** This bug is a duplicate of bug 1329689 ***
https://bugs.launchpad.net/bugs/1329689

** This bug has been marked a duplicate of bug 1329689
   Suspend fails with nouveau problem

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

Title:
  [HP Pavilion dv7t-7000 CTO Entertainment Notebook PC] Suspend fails
  with - kernel 3.13.0-27

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

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


[Bug 1329689] Re: Suspend fails with nouveau problem

2014-10-05 Thread Marcello Nuccio
The easiest workaround is installing the proprietary drivers as
explained at http://askubuntu.com/a/507299/11223

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

Title:
  Suspend fails with nouveau problem

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

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


[Bug 1003950] Re: launcher does not show minimized update manager while clicked

2013-11-05 Thread Marcello Nuccio
In response to comment #42:

   there is not a lot of noise about other people having the problem

I've seen this bug on all Ubuntu installations I've used in the last two years 
(at least 10 computers). The problem is that it's hard to search for this bug 
on launchpad.  Today I've spent one full hour and I've found 6 duplicates. I've 
marked them as duplicates of bug #925260
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/925260

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

Title:
  launcher does not show minimized update manager while clicked

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

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


[Bug 925260] Re: Update Manager icon appears on the launcher when updates are available, clicking on it does not bring up the update-manager.

2013-11-05 Thread Marcello Nuccio
I think it's a duplicate of Bug #1003950 but I'm not marking it as
duplicate because this bug it's not fixed (tested on fresh install of
Ubuntu 13.10).

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

Title:
  Update Manager icon appears on the launcher when updates are
  available, clicking on it does not bring up the update-manager.

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

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


[Bug 1219161] Re: Software updates window not shown

2013-11-04 Thread Marcello Nuccio
Same problem on a freshly installed Ubuntu 13.10 amd64.

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

Title:
  Software updates window not shown

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

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


[Bug 1219161] Re: Software updates window not shown

2013-11-04 Thread Marcello Nuccio
*** This bug is a duplicate of bug 925260 ***
https://bugs.launchpad.net/bugs/925260

** This bug has been marked a duplicate of bug 925260
   Update Manager icon appears on the launcher when updates are available, 
clicking on it does not bring up the update-manager.

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

Title:
  Software updates window not shown

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

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


[Bug 993848] Re: when automatically started to launcher because updates available, cannot open window

2013-11-04 Thread Marcello Nuccio
*** This bug is a duplicate of bug 925260 ***
https://bugs.launchpad.net/bugs/925260

** This bug has been marked a duplicate of bug 925260
   Update Manager icon appears on the launcher when updates are available, 
clicking on it does not bring up the update-manager.

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

Title:
  when automatically started to launcher because updates available,
  cannot open window

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

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


[Bug 1000500] Re: Update manager won't open when clicked

2013-11-04 Thread Marcello Nuccio
*** This bug is a duplicate of bug 925260 ***
https://bugs.launchpad.net/bugs/925260

** This bug has been marked a duplicate of bug 925260
   Update Manager icon appears on the launcher when updates are available, 
clicking on it does not bring up the update-manager.

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

Title:
  Update manager won't open when clicked

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

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


[Bug 1007898] Re: Update Manager window often freezes and is invisible when computer is left on for a while

2013-11-04 Thread Marcello Nuccio
*** This bug is a duplicate of bug 925260 ***
https://bugs.launchpad.net/bugs/925260

** This bug has been marked a duplicate of bug 925260
   Update Manager icon appears on the launcher when updates are available, 
clicking on it does not bring up the update-manager.

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

Title:
  Update Manager window often freezes and is invisible when computer is
  left on for a while

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

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


[Bug 1219161] [NEW] Software updates window not shown

2013-08-31 Thread Marcello Nuccio
Public bug reported:

When updated packages are available, the unity bar shows the Software
updates icon, but clicking on it no window is shown. The only way to do
the updates, is to right-click on the icon and select Install available
updates in the context menu.

Using Alt+Tab to select the Software updates window does not show the
window.

The unity bar always shows the Software updates window as focused (blu
arrow on the left of the icon and red border), no matter what is the
currently focused window.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: update-notifier 0.134
ProcVersionSignature: Ubuntu 3.8.0-27.40-generic 3.8.13.4
Uname: Linux 3.8.0-27-generic i686
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: i386
Date: Sat Aug 31 07:12:06 2013
ExecutablePath: /usr/bin/update-notifier
MarkForUpload: True
ProcEnviron:
 PATH=(custom, user)
 XDG_RUNTIME_DIR=set
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: update-notifier
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 raring

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

Title:
  Software updates window not shown

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

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

[Bug 1219161] Re: Software updates window not shown

2013-08-31 Thread Marcello Nuccio
Possibly duplicate of Bug #1023172 but for raring?

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

Title:
  Software updates window not shown

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

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


[Bug 1219161] Re: Software updates window not shown

2013-08-31 Thread Marcello Nuccio
** Description changed:

  When updated packages are available, the unity bar shows the Software
  updates icon, but clicking on it no window is shown. The only way to do
  the updates, is to right-click on the icon and select Install available
  updates in the context menu.
  
  Using Alt+Tab to select the Software updates window does not show the
  window.
+ 
+ The unity bar always shows the Software updates window as focused (blu
+ arrow on the left of the icon and red border), no matter what is the
+ currently focused window.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: update-notifier 0.134
  ProcVersionSignature: Ubuntu 3.8.0-27.40-generic 3.8.13.4
  Uname: Linux 3.8.0-27-generic i686
  ApportVersion: 2.9.2-0ubuntu8.3
  Architecture: i386
  Date: Sat Aug 31 07:12:06 2013
  ExecutablePath: /usr/bin/update-notifier
  MarkForUpload: True
  ProcEnviron:
-  PATH=(custom, user)
-  XDG_RUNTIME_DIR=set
-  LANG=it_IT.UTF-8
-  SHELL=/bin/bash
+  PATH=(custom, user)
+  XDG_RUNTIME_DIR=set
+  LANG=it_IT.UTF-8
+  SHELL=/bin/bash
  SourcePackage: update-notifier
  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/1219161

Title:
  Software updates window not shown

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

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

[Bug 1023172] Re: update manager doesn't indicate software being installed

2013-08-31 Thread Marcello Nuccio
Very similar to Bug #1219161

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

Title:
  update manager doesn't indicate software being installed

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

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


[Bug 502426] Re: DVD playback broken (Media region code is mismatched to logical unit region)

2013-06-28 Thread Marcello Nuccio
I've tried the fix suggested by mjlcapdagde at #16

rm -r ~/.dvdcss

and it worked on Ubuntu-13.04 (updated from 12.04). It is the first time
I see this bug and I'm using ubuntu since 06.06.

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

Title:
  DVD playback broken (Media region code is mismatched to logical unit
  region)

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

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


[Bug 1003316] Re: Cannot close Firefox inspector

2012-11-21 Thread Marcello Nuccio
I haven't seen anymore this bug for months. So I think it was fixed by
some updates.

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

Title:
  Cannot close Firefox inspector

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

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


[Bug 1064962] Re: [SRU] Global menubar items do not work when opening a document directly from nautilus with no LibreOffice instance running

2012-11-21 Thread Marcello Nuccio
@chemnic, have you checked comment #132? What happens if you wait 5
seconds before reopening LibreOffice, as stated at bug #1075263?

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

Title:
  [SRU] Global menubar items do not work when opening a document
  directly from nautilus with no LibreOffice instance running

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

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


[Bug 1079618] Re: Menus do not show up when opening an existing file

2012-11-18 Thread Marcello Nuccio
apport-collect does not work for me because I am not the bug's reporter.
However, I have tried to find a reliable way to reproduce this bug. I
have found it to be very easy to reproduce on two computers, but it is
not that easy to understand when it happens.

I have come to the conclusion that it is a race condition, because it
happens more easily when start-up is slower. Sometimes the menu is shown
and seems to work, but clicking on any menu item does nothing. Sometimes
the shown menu is the menu of oosplash, instead of the menu of the
application (Writer or Calc.) Sometimes the menu is shown only by doing
Alt+F10 and not by holding down the Alt key or hovering the mouse on the
top panel. Sometimes the menu is shown after switching to and from
another window.

There is no easy and reliable pattern for reproducing it, but it happens
frequently.

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

Title:
  Menus do not show up when opening an existing file

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

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


[Bug 1079618] Re: Menus do not show up when opening an existing file

2012-11-18 Thread Marcello Nuccio
Thanks for the tips Christopher.

After much searching, I have finally found the bug that I am seeing: Bug
#1064962

However I think this bug is a duplicate of bug #1064962.

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

Title:
  Menus do not show up when opening an existing file

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

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


[Bug 1063965] Re: Choppy sound in 12.10

2012-11-16 Thread Marcello Nuccio
Johan, you should post the output of the script, not the script.

Raymond, you can find the output alsa-info.sh on my computer at
http://www.alsa-project.org/db/?f=578ac23a785c41eae14c32f15fb39ccb1da3a663

Thanks for any help.

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

Title:
  Choppy sound in 12.10

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

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


[Bug 1054282] Re: No obvious way to restrict shopping suggestions from displaying adult products

2012-10-30 Thread Marcello Nuccio
*** This bug is a duplicate of bug 1060979 ***
https://bugs.launchpad.net/bugs/1060979

I don't think this is a duplicate of bug #1060979 because it doesn't fix
the accidental display of adult content.

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

Title:
  No obvious way to restrict shopping suggestions from displaying adult
  products

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-lens-shopping/+bug/1054282/+subscriptions

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


[Bug 1067434] Re: Sound output device keeps changing when using headphones

2012-10-27 Thread Marcello Nuccio
As suggested at http://askubuntu.com/a/206554/11223 doing:

rm -r ~/.pulse ~/.pulse-cookie
pkill pulse

makes the problem disappear, but only until I change the sound volume
through the panel indicator.

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

Title:
  Sound output device keeps changing when using headphones

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

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


[Bug 1067434] Re: Sound output device keeps changing when using headphones

2012-10-27 Thread Marcello Nuccio
Looks like e duplicate of Bug #1063965

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

Title:
  Sound output device keeps changing when using headphones

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

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


[Bug 1063965] Re: Choppy sound in 12.10

2012-10-27 Thread Marcello Nuccio
Looks like a duplicate of bug #1067434

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

Title:
  Choppy sound in 12.10

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

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


[Bug 1063965] Re: Choppy sound in 12.10

2012-10-27 Thread Marcello Nuccio
Going to (translated from my language) System properties  Sound 
Output, and clicking on a output device, I see that the device Analog
headphones appears and disappears continuosly at a fast rate.

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

Title:
  Choppy sound in 12.10

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

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


[Bug 939954] Re: noip2 for precise

2012-06-14 Thread Marcello Nuccio
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653957

** Bug watch added: Debian Bug tracker #653957
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653957

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

Title:
  noip2 for precise

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

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


[Bug 1003316] [NEW] Cannot close Firefox inspector

2012-05-23 Thread Marcello Nuccio
Public bug reported:

Started the inspector via context menu Inspect Element (Q).
Clicking on the X (Close Inspector) button does nothing.
Reloading the page, the inspector is still here.
Forcing reload, same effect.
Switching to other tabs on the same window, all tabs show the inspector.
Opening new window, there's no inspector.

The web page was: http://docs.angularjs.org/tutorial/step_00
I've started the inspector by right clicking on the Previous button on the 
page.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: firefox 14.0~a2~hg20120522r94329-0ubuntu1~umd1
ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
Uname: Linux 3.2.0-24-generic-pae i686
AddonCompatCheckDisabled: False
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  marcenuc   1810 F pulseaudio
BuildID: 20120522055837
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfe3f4000 irq 47'
   Mixer name   : 'Intel Eaglelake HDMI'
   Components   : 'HDA:10ec0888,104382fe,00100101 
HDA:80862803,80860101,0010'
   Controls  : 46
   Simple ctrls  : 23
Channel: aurora
Date: Wed May 23 11:26:21 2012
ForcedLayersAccel: False
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
IpRoute:
 default via 192.168.11.1 dev eth0  proto static 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 192.168.11.0/24 dev eth0  proto kernel  scope link  src 192.168.11.2  metric 1
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MostRecentCrashID: bp-e9d6e30e-ea59-48e2-bf92-d11982120520
ProcEnviron:
 PATH=(custom, user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
Profile0PrefErrors: Unexpected character before close parenthesis @ prefs.js:167
Profile1PrefSources:
 /etc/firefox/syspref.js
 prefs.js
 user.js
Profile2PrefSources:
 /etc/firefox/syspref.js
 prefs.js
 user.js
Profiles:
 Profile0 - LastVersion=14.0a2/20120522055837 (In use)
 Profile1 - LastVersion=12.0/20120420145725 (Out of date)
 Profile2 - LastVersion=13.0/20120508180640 (Out of date)
 Profile3 (Default) - LastVersion=14.0a2/20120521054317 (Out of date)
RelatedPackageVersions:
 rhythmbox-mozilla 2.96-0ubuntu4
 totem-mozilla 3.0.1-0ubuntu21
RfKill:
 
RunningIncompatibleAddons: False
SourcePackage: firefox
UpgradeStatus: No upgrade log present (probably fresh install)
WifiSyslog:
 May 23 10:39:47 pisolo kernel: [ 7965.651511] vboxdrv: Found 4 processor cores.
 May 23 10:39:47 pisolo kernel: [ 7965.651714] vboxdrv: fAsync=0 offMin=0x508 
offMax=0x2b30
 May 23 10:39:47 pisolo kernel: [ 7965.651801] vboxdrv: TSC mode is 
'synchronous', kernel timer mode is 'normal'.
 May 23 10:39:47 pisolo kernel: [ 7965.651803] vboxdrv: Successfully loaded 
version 4.1.16 (interface 0x0019).
 May 23 10:39:47 pisolo kernel: [ 7965.861142] vboxpci: IOMMU not found (not 
registered)
dmi.bios.date: 07/16/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0314
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5QL-EM
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0314:bd07/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5QL-EM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: apport-bug aurora-channel i386 precise

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

Title:
  Cannot close Firefox inspector

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

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


[Bug 1003316] Re: Cannot close Firefox inspector

2012-05-23 Thread Marcello Nuccio
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1003316

Title:
  Cannot close Firefox inspector

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

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


[Bug 533295] Re: OpenJDK crashes using Eclipse in Lucid

2010-04-05 Thread Marcello Nuccio
I only needed to
sudo apt-get --purge remove xulrunner-1.9.1

No need to edit eclipse.ini.
(I have upgraded from Ubuntu 9.10)

-- 
OpenJDK crashes using Eclipse in Lucid
https://bugs.launchpad.net/bugs/533295
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291333] Re: Onda MT505UP / MF632 not working

2008-11-21 Thread Marcello Nuccio
The xml snippet in the first comment malformed.
hal-info 20081013-0ubuntu3 lacks it, so here is attached the correct one.

** Attachment added: correct-code.xml
   http://launchpadlibrarian.net/19845895/correct-code.xml

-- 
Onda MT505UP / MF632 not working
https://bugs.launchpad.net/bugs/291333
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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