[Bug 1794064] Re: Clicking a hyperlink in a PDF fails to open it if the default browser is a snap

2023-04-18 Thread Romano Giannetti
Still here in 22.04 LTS; the workaround I use is the last one suggested
in https://askubuntu.com/a/1428798/16395 (WARNING; that will allow
evince to launch *any* snap in your system. But otherwise, evince is
severely limited...)

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

Title:
  Clicking a hyperlink in a PDF fails to open it if the default browser
  is a snap

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


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

[Bug 1448778] Re: Evince fails to display some fonts (some font thing failed)

2019-01-18 Thread Romano Giannetti
And by the way, just if somebody is still struggling to find where the
"good" error messages (instead of the surprising useful "some font thing
failed"), grep for apparmor in /var/log/kern.log

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

Title:
  Evince fails to display some fonts (some font thing failed)

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

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

[Bug 1448778] Re: Evince fails to display some fonts (some font thing failed)

2019-01-18 Thread Romano Giannetti
My solution was to apply this diff:

diff --git a/./etc-apparmor.d-abstractions-fonts 
b/etc/apparmor.d/abstractions/fonts
index 45cdf9a..44c54ac 100644
--- a/./etc-apparmor.d-abstractions-fonts
+++ b/etc/apparmor.d/abstractions/fonts
@@ -51,6 +51,8 @@
 
   /usr/local/share/fonts/   r,
   /usr/local/share/fonts/** r,
+  /home/local/share/fonts/   r,
+  /home/local/share/fonts/** r,
 
   # poppler CMap tables
   /usr/share/poppler/cMap/**r,

...and the reloading the profiles (sudo service apparmor reload). So if
you have symlinked fonts directory, you simply have to add them to the
profile.

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

Title:
  Evince fails to display some fonts (some font thing failed)

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

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

[Bug 1808702] [NEW] Bubblewrap integration broke user thumbnailers

2018-12-16 Thread Romano Giannetti
Public bug reported:

This bug is related to https://bugs.launchpad.net/ubuntu/+source/gnome-
desktop3/+bug/1795668 and to the question in Ubuntu Stackexchange
https://askubuntu.com/questions/1088539/custom-thumbnailers-don-t-work-
on-ubuntu-18-10-and-18-04

The recent hardening on thumbnailers by using bubblewrap is causing a
problem with user-installed thumbnailers. Consider this (for example)
thumbnailer to add a small Dilbert icon to the GIMP .xcf files:


#!/bin/bash

tmpfile1=$(tempfile --directory /tmp --prefix xcft --suffix .png)
trap 'rm -rf $tmpfile1' INT EXIT TERM

die() {
  echo >&2 "$@"
  rm -rf $tmpfile1
  exit 1
}
 
# The script will be called with parameters : -s %s %u %o
# -s %s: vertical size,  %u: input url, %o: output file

if [ $1 = "-s" ]; then 
   size=$2
   uin=$3
   fout=$4
else
   size=32 #default size
   uin=$1
   fout=$2
fi

# uin es una url, eliminar "file://"
fin="${uin#file://*}"

/usr/bin/gnome-xcf-thumbnailer -s $size "$fin" $tmpfile1 || die 
"gnome-xcf-thumbnailer failed"
/usr/bin/composite-im6.q16  -gravity southeast  \
   \(  -resize $((size/2))x$((size/2)) /usr/share/gimp/2.0/images/wilber.png \) 
\
   \( -resize $sizex$size $tmpfile1 \)  "$fout" || die "convert failed"

rm -rf $tmpfile1
exit 0

It used to work before the last update to use bubblewrap, and now
doesn't work anymore. I tried to dig into https://github.com/GNOME
/gnome-desktop/blob/master/libgnome-desktop/gnome-desktop-thumbnail-
script.c to see what happens, and I concluded that the "reinforced"
thumbnail generator do this:

mkdir /tmp/temporary

bwrap --ro-bind /usr /usr \
--ro-bind /etc/ld.so.cache /etc/ld.so.cache \
--ro-bind /bin /bin \
--ro-bind /lib64 /lib64 \
--ro-bind /lib /lib \
--ro-bind /sbin /sbin \
--proc /proc  \
--dev   /dev  \
--chdir   /  \
--setenv   GIO_USE_VFS   local  \
--unshare-all  \
--die-with-parent  \
--bind /tmp/temporary /tmp \
--ro-bind /home/romano/software/thumbnailers/test/rgttiwm.xcf  
/tmp/gnome-desktop-file-to-thumbnail.xcf  \
/usr/bin/xcf-thumb -s 128 file:///tmp/gnome-desktop-file-to-thumbnail.xcf 
/tmp/gnome-desktop-thumbnailer.png
#
cp /tmp/temporary/gnome-desktop-thumbnailer.png test.png

...and this way, my thumbnailer did succeed in creating the PNG with the
correct preview. But when called internally by gnome, it fails, and
creates a strange "~/.cache/thumbnailer/fail" file containing the
following:

�PNG

IHDRĉd�EtEXtThumb::URIfile:///home/romano/software/thumbnailers/test/rgttiwm.xcftEXtThumb::MTime1380735765�y�O
 tEXtSoftwareGNOME::ThumbnailFactoryo 
[...]

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


** Tags: bubblewrap thumbnails

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

Title:
  Bubblewrap integration broke user thumbnailers

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

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

[Bug 1588545] Re: escape doesn't close search bar

2017-03-12 Thread Romano Giannetti
It seems that CTRL-F does the trick, anyway...

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

Title:
  escape doesn't close search bar

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

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


[Bug 1448778] Re: Evince fails to display some fonts (some font thing failed)

2016-09-19 Thread Romano Giannetti
Just to add a note: it happened to me also, because I have /usr/local as
a symlink to /home/local (in a different partition) and evince (or
apparmor) correctly complained.

So all fonts from Microsoft, which are installed in /usr/local/font,
came out blank.

Setting aa-complain solved momentarily the thing, then an edit of the
profiles is recommended.

Now, 'some font thing failed' is not exactly a very informative error
message... ;-)

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

Title:
  Evince fails to display some fonts (some font thing failed)

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

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


[Bug 1518813] Re: sharing panel fails to properly launch required daemons

2016-06-30 Thread Romano Giannetti
I can confirm that this bug is still here in 16.04. Under the user point
of view, is as screen sharing is simply not working ( regression from
14.04).

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-user-share in Ubuntu.
https://bugs.launchpad.net/bugs/1518813

Title:
  sharing panel fails to properly launch required daemons

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

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


[Bug 1584457] [NEW] gsd-backlight-helper spamming the logs since upate to 16.04

2016-05-22 Thread Romano Giannetti
Public bug reported:

Since updating to 16.04 from 14.04, I have the syslog spammed by:

SEC: May 22 13:26:43 samsung-romano pkexec[21248]: gdm: Error executing command 
as another user: Not authorized [USER=root] [TTY=unknown] [CWD=/var/lib/gdm3] 
[COMMAND=/usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness 
1766]
SEC: May 22 13:26:43 samsung-romano pkexec: pam_unix(polkit-1:session): session 
opened for user root by (uid=1153)
SEC: May 22 13:26:43 samsung-romano pkexec: pam_systemd(polkit-1:session): 
Cannot create session: Already running in a session
SEC: May 22 13:26:43 samsung-romano pkexec: pam_ck_connector(polkit-1:session): 
cannot determine display-device
SEC: May 22 13:26:43 samsung-romano pkexec[21249]: romano: Executing command 
[USER=root] [TTY=unknown] [CWD=/home/romano] 
[COMMAND=/usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness 
4322]
SYS: May 22 13:26:43 samsung-romano gnome-session[1454]: Error executing 
command as another user: Not authorized
SYS: May 22 13:26:43 samsung-romano gnome-session[1454]: This incident has been 
reported.

every couple of seconds or so. There is no really need to change
brightness... how can I stop it?

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


** Tags: gnome-settings-daemon

** Tags added: gnome-settings-daemon

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1584457

Title:
  gsd-backlight-helper spamming the logs since upate to 16.04

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

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


[Bug 1411174] Re: "open in terminal" does not honour SSH_AUTH_SOCK and GPG_AGENT_INFO environment variables in Ubuntu 14.10

2016-01-17 Thread Romano Giannetti
@Simon:

I proposed  a workaround (ugly) in http://askubuntu.com/questions/606451
/nautilus-open-in-terminal-extension-will-not-propagate-ssh-auto-sock

A upstream report would be nice; I suspect it could be related to the fact that 
"run in terminal" is hard coded in gnome (see 
https://bugzilla.gnome.org/show_bug.cgi?id=627943 ) or not.
 


** Bug watch added: GNOME Bug Tracker #627943
   https://bugzilla.gnome.org/show_bug.cgi?id=627943

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

Title:
  "open in terminal" does not honour SSH_AUTH_SOCK and GPG_AGENT_INFO
  environment variables in Ubuntu 14.10

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

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


[Bug 1418217] Re: printing a scaled page not in the center

2015-11-23 Thread Romano Giannetti
If you scale down, say, to 90% a page to make it fits the printing
margins, evince fails to center it and you still have one border cut
off.

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

Title:
  printing a scaled page not in the center

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

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


[Bug 854833] Re: NM asks for Wi-Fi password every time I log in, or every minute, if "Available to all users" not checked; forgets password too

2015-10-30 Thread Romano Giannetti
New installation of 14.04.3, still happens. It happens only for
enterprise-type connection (my university and eduroam, both WPA). The
WPA personal connections (where you do not have to put an username) are
ok, remembered and automatically started.

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

Title:
  NM asks for Wi-Fi password every time I log in, or every minute, if
  "Available to all users" not checked; forgets password too

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

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


[Bug 792085] Re: Automatic remount of safely removed drive

2015-10-17 Thread Romano Giannetti
FYI --- using command line to eject the disk/partiton do work, see
http://askubuntu.com/questions/422481/prevent-usb-drives-from-auto-
remounting-after-remove

On the other hand, I see surprising that this bug is marked Medium. For
non-tech-savy users, can ends in unclean disconnect and even data-loss.
Should be marked as Critical.

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

Title:
  Automatic remount of safely removed drive

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

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


[Bug 1420698] [NEW] use network time is not installing ntp?

2015-02-11 Thread Romano Giannetti
Public bug reported:

I discovered that, even if I checked use network time in the control
panel, the package ntp was not installed (just ntpdate).

This caused a drift in time in my desktop (which is always on); after a
couple of days if I deselect the the option and select it again I have:

SYS: Feb 11 08:47:58 pern kernel: [775917.016524] systemd-timedated[14157]: Set 
NTP to disabled
SYS: Feb 11 08:47:59 pern kernel: [775918.305488] systemd-timedated[14157]: Set 
NTP to enabled
SYS: Feb 11 08:48:59 pern ntpdate[14170]: step time server 91.189.94.4 offset 
53.842810 sec
SYS: Feb 11 08:49:01 pern dovecot: imap: Warning: Time jumped forwards 53 
seconds

I solved it manually by install ntp --- but shouldn't this be
automatically done if I choose use network time? It doesn't seem a
one shot option at all --- it stays put (it is not like a button to
read network time now or similar).

Thanks!

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

** Attachment added: use network time option
   
https://bugs.launchpad.net/bugs/1420698/+attachment/4317012/+files/Selection_019.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1420698

Title:
  use network time is not installing ntp?

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

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


[Bug 1420659] [NEW] systemd-timedated is not keeping the time synchronized

2015-02-11 Thread Romano Giannetti
Public bug reported:

I do not know if this is related to
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1409594

In my system, 14.04 fully updated, the time is not kept in sync with
network servers.

When starting, I have this complain:

Feb 11 08:47:51 pern kernel: [775910.071548] systemd-timedated[14157]:
/etc/localtime should be a symbolic link to a timezone data file in
/usr/share/zoneinfo/.

But then no error is shown, and the setting panels says that I am using
network time --- which is not true. After a day, if I deselect/reselect
network time, I have:

SYS: Feb 11 08:47:58 pern kernel: [775917.016524] systemd-timedated[14157]: Set 
NTP to disabled
SYS: Feb 11 08:47:59 pern kernel: [775918.305488] systemd-timedated[14157]: Set 
NTP to enabled
SYS: Feb 11 08:48:59 pern ntpdate[14170]: step time server 91.189.94.4 offset 
53.842810 sec
SYS: Feb 11 08:49:01 pern dovecot: imap: Warning: Time jumped forwards 53 
seconds

...so it's definitely not working. Any help/hint/workaround?

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

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

Title:
  systemd-timedated is not keeping the time synchronized

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-11-29 Thread Romano Giannetti
@Mekk I think that you nailed the problem in #77 (and you forgot all the
settings via XKB in xorg.conf hierarchy, and /usr/share/X11/xkb/, and
.Xmodmap, and IBus, and ).

I have the sensation (mind you --- this is not at all an accusation to
anyone; I tried to dig into it and failed) that no one has a clear idea
of how the keyboard is configured, chosen and modyfied.

I found a solution for me (no switching, defined use system keyboard
layout in IBus setup AND disabled IBus  --- don't ask, and defininign
my own keyboard). It's viable because I write in three langauges that
have a similar character set; but I imagine that having for example to
write in Russian and English have to be a nightmare.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 282659] Re: evince print problems for double sided, multiple copies

2014-10-28 Thread Romano Giannetti
Just to comment, passing by, that this nice bug is still here with us.

Print the attached file and ask for two copies in a printer that default
to double-sided printer. You will have one sheet ready to trash, with
the image on the two sides.

Have a nice day,

** Attachment added: Example .eps file
   
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/282659/+attachment/4246894/+files/ne555-internal.eps

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

Title:
  evince print problems for double sided, multiple copies

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-09-18 Thread Romano Giannetti
Can anyone confirm that the workaround (setting language - keyboard
input method to None instead of IBus) breaks the Shift-Ctrl-U method of
inputting Unicode chars?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2014-06-04 Thread Romano Giannetti
I can confirm that when it happened to me, I had gdm as login manager
and not lightdm.

Since the upgrade to 14.04, it happened just one time in one laptop
(solved by login/logout) with Ubuntu Gnome, and never in my other laptop
which has Xubuntu.

So for me it is happening now very rarely; last time I seen it was more
than a month ago --- I can't remember. My guess is that the DBUS
connection between udidskd and the desktop get lost, or stuck. Probably
related to the DM, yes. Would not be surprising if lightdm and gdm share
some bug.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-05-24 Thread Romano Giannetti
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

The all time record being probably bug #295014, with us since 2004 in
its first incarnation... But well, we have to remember that most
developers works on this in their free time, so... There should be a
pledge system for fixing bugs, I for one have a couple of them where I
wouldn't mind to pay to see them fixed.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-05-22 Thread Romano Giannetti
I want to underline that my comment was not *at all* a critic to
developers. There is something pesky going on with keyboards, and
difficult to spot (although I suspect some kind of bad interaction
between {unity,gnome}-control-settings and ibus). The monster bug
#1218322 would have been fixed otherwise, it's one of the hottest bug of
all launchpad. Simply I think that marking this bug low is understating
its importance --- Ubuntu should work all over the planet.

As a data point, I switched my laptop which sports a Spanish keyboard to
Xubuntu (not for this bug, just a matter of usability and too few RAM),
disable system keyboard configuration, no IBUS,  and never had a problem
with the keyboard. Which points to the direction above... from a layman
point-of-view.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-05-21 Thread Romano Giannetti
@Alberto Low? Really?

Since 13.10, between this and https://bugs.launchpad.net/ubuntu/+source
/gnome-settings-daemon/+bug/1218322 Ubuntu has become a PITA if you have
to write in more than one language (and even with just one, if that one
is not en_US).

Your call, but I think this is _at least_ high.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1215798] Re: losing windows on Ubuntu 13.10

2014-05-16 Thread Romano Giannetti
Tried to report upstream
https://bugzilla.gnome.org/show_bug.cgi?id=730261

Temporary solution: install terminator.


** Bug watch added: GNOME Bug Tracker #730261
   https://bugzilla.gnome.org/show_bug.cgi?id=730261

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

Title:
  losing windows on Ubuntu 13.10

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

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


[Bug 1215798] Re: losing windows on Ubuntu 13.10

2014-05-16 Thread Romano Giannetti
Christian Persch [gnome-terminal developer] said on 2014-05-16 17:49:52
UTC, in the upstream bug:

An essential component in your reproducer is restarting gnome-shell.
Gnome-terminal used to unrealise and re-realise all windows in this case; that
was removed from 3.8. So I think this is fixed in gnome-terminal = 3.8. If you
do upgrade in the future and can still reproduce this then, please do reopen
the bug; marking OBSOLETE for now.

Sounds reasonable. Could be Remmina doing something similar?


** Also affects: gnome-shell via
   https://bugzilla.gnome.org/show_bug.cgi?id=730261
   Importance: Unknown
   Status: Unknown

** No longer affects: gnome-shell

** Also affects: gnome-terminal via
   https://bugzilla.gnome.org/show_bug.cgi?id=730261
   Importance: Unknown
   Status: Unknown

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

Title:
  losing windows on Ubuntu 13.10

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-05-15 Thread Romano Giannetti
There is a possible workaround here:
http://askubuntu.com/questions/459617/keyboard-layout-isnt-kept-upon-
reboot

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-05-15 Thread Romano Giannetti
Could be this the upstream report?

https://bugzilla.gnome.org/show_bug.cgi?id=729423

** Bug watch added: GNOME Bug Tracker #729423
   https://bugzilla.gnome.org/show_bug.cgi?id=729423

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1246272

Title:
  Keyboard layout changing randomly

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-15 Thread Romano Giannetti
Could be this: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-
daemon/+bug/1246272 (and maybe this:
https://bugzilla.gnome.org/show_bug.cgi?id=729423 ) related too?

Seeing the workaround in http://askubuntu.com/questions/459617/keyboard-
layout-isnt-kept-upon-reboot I have a feeling that we could have the
normal `xsetkeyb` and IBUS fighting?


** Bug watch added: GNOME Bug Tracker #729423
   https://bugzilla.gnome.org/show_bug.cgi?id=729423

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-13 Thread Romano Giannetti
@William: I tested the PPA. Remeber, Ubuntu Gnome 14.04; I have just two
keyboard layouts (if you want I can check with three to).

With the PPA:

1. switching to next source works ok if I choose a normal key combo, for
example, Super+Space. On pressing the combo, the layout switches, the
indicator is synchronized, and I have a nice OSD display indicting the
switch.  I cannot set this option with modifiers only keys, as expected.

2. Setting  Modifiers only switch to next source to Alt+Shift does not
work. Nothing, no OSD, no switch in the indicator, no switch of layout.

3. Checking more, I discovered that  setting Modifiers only switch to
next source to for example Right-Ctrl + Right Shift or Compose *do*
work, and the indicator follow the switch, but there is no OSD display
about the switch. Also Left-Alt + Left-shift works, albeit without OSD
display.

So basically the combination that doesn't work for me are the ones with
plain Alt of Right-Alt involved. Could be because the Right Alt is
mapped to AltGr?

In summary, it's clearly a step in the correct direction. Any idea about
the OSD display not showing?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-12 Thread Romano Giannetti
Yes, I can confirm that with more than 2 layouts the thing is even more
broken.

I tried to get a shot to understand better what it's happening, but I
suspect that the thing is **really** complex and we have a lot of
interacting modules and things that (I suspect) no one really grasp ---
the dconf thing, the IBus thing, etc.

I feel really represented by the Steve Taylor's quote at the top of
http://www.charvolant.org/~doug/xkb/html/xkb.html --- go and read it.

At the end, I learned to edit KBD configuration to tailor a personal
keyboard so that I can avoid switching. I imagine this is viable for me
(just using three latin languages), not for people with more complex
need.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-12 Thread Romano Giannetti
@William --- will try again this afternoon; sorry for the delay.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-12 Thread Romano Giannetti
@William (sorry, got posted too early, a pity launchpad don't let you
edit comments). I read wrongly your comment and thought it would have
been of no use (I use only latin keyboards --- switch between US intl,
US intl AltGr-dead keys, and Spanish), and the name of the PPA is for
non-latin...

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1318452] [NEW] .Xmodmap should be read after keyboard layout switch

2014-05-11 Thread Romano Giannetti
Public bug reported:

Using Ubuntu Gnome 14.04, my .Xmodmap is correctly read at startup (at least, 
it seems). 
I have a very simple .Xmodmap: 

! EuroSign is on AltGr-5, eacute is mucho more useful for Spanish
keycode  26 = e E e E eacute Eacute

However, on layout switch, the modification is forgot.

Shouldn't .Xmodmap re-read on keyboard layout switch? Alternatively, is
there a hook for running scripts on the keyboard layout switch?

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

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1318452

Title:
  .Xmodmap should be read after keyboard layout switch

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-08 Thread Romano Giannetti
@William, i have a pure Ubuntu Gnome (3) system --- should  I test your
PPA? Keyboard switch with key-combos  is utterly broken on my system, to
the point that the only reliable way to obtain it is using the panel
indicator --- which, by the way, is often than not out of sync  with the
real keymap.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1215798] Re: losing windows on Ubuntu 13.10

2014-05-05 Thread Romano Giannetti
Added gnome-terminal because it really happens reliably just with it.

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

Title:
  losing windows on Ubuntu 13.10

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

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


[Bug 1215798] Re: losing windows on Ubuntu 13.10

2014-05-05 Thread Romano Giannetti
Desktop shot showing the bug.

** Attachment added: Workspace 2_003.png
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1215798/+attachment/4106024/+files/Workspace%202_003.png

** Also affects: gnome-terminal (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  losing windows on Ubuntu 13.10

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-05-02 Thread Romano Giannetti
On Ubuntu Gnome 14.04, the bug is still there.

I have no PPA related to gnome or this bug installed.

The modifier only option for switching, set to whichever option, will
change the keyboard indicated in the panel indicator, but will not
really change the keyboard layout.

Setting the switch to next source to a normal combination (for
example, ctrl+0) works.

I am starting to suspect that there is no one around who really
understand what's happening here --- it is so complex.

I confirm that none of the modifier-only combination wrong, trying with
the (should be equivalent):

- gnome (or unity) control center, keyboard - shortcut - typing
- gnome-tweak-tool - typing
- gsetting or gconf-editor on  org.gnome.desktop.input-sources - xkb-option

So no joy here. Ended up setting the switch to next source to
alt+shift+space which seems to work.

:-(

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-04-01 Thread Romano Giannetti
I just downloaded and installed in a VirtualBox Ubuntu-Gnome 14.04 beta2
32bit.

Out of the box, I changed the Switch to next sorce  to Alt+Shift L and
alternative character key to Right Alt and it works ok.

I DID NOT test the plain Ubuntu-Unity installation.

Color me (momentarily) happy.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-04-01 Thread Romano Giannetti
Ok, checked more; color me less happy.

Definitely the layout switch does not work after suspend in the lock
screen. Hope you all people have password that can be typed in all
layouts, otherwise...

Also, with more than two layouts, the switch with the keys happens only
between two of them. The third one is accessible only via the applet
menu.

Sigh. This is the never ending story.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-02-20 Thread Romano Giannetti
...and for me, now Alt+Shift switches the indicator but *not* the
keyboard. I have to switch the layout with the applet.

Is there anyone with a link on documentation on how the keyboard is
managed/configured in Ubuntu (for real)? There is a mix of xkbd, gnome-
settings, xmodmap, gnome-tweak, dbus, etc that makes it a multi-
dimensional maze.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-02-20 Thread Romano Giannetti
@Norbert, I will try with a new user, but about removing all my hidden
folders... I imagine this is a joke ;-). I have 20+ years of
configurations of my system, ssh keys, applications defaults, qucs and
spice models, vim macros, whatever in it (yes, all of this is regularly
backed up). I *really* prefer using the applet to switch layouts and
waiting for 14.04 or Fedora N+1 than going through a painful piece by
piece bisection of all the dot files.

Which are the hidden conf files that will affect keyboard switching
behavior? Without this information the rest is voodoo.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-02-14 Thread Romano Giannetti
New behavior. Resetting the whole thing and choosing again Alt+Shift from the 
control panel works, but the HUD indication of the switch disappeared. 
This is the most desperately Heisenbug I ever found.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2014-02-11 Thread Romano Giannetti
I can confirm the regression. Alt+shift stopped working for me too and
re-setting it with gnome-tweak-tool does not work.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 496603] Re: gthumb creates / .comments folders and xml files for IPTC

2014-01-21 Thread Romano Giannetti
It is probably a configuration option. If someone know *which*, it would
be helpful to post here...

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

Title:
  gthumb creates / .comments folders and xml files for IPTC

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

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


[Bug 496603] Re: gthumb creates / .comments folders and xml files for IPTC

2014-01-21 Thread Romano Giannetti
If anyone still has this problem --- I have resolved it by:
1) setting store metadata inside files if possible
2) disabling the comments and tags extension
HTH

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

Title:
  gthumb creates / .comments folders and xml files for IPTC

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-11-13 Thread Romano Giannetti
@Levan, your bug is probably https://bugs.launchpad.net/bugs/1226962

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1245064] Re: Keyboard Layout Options window is missed in gnome-control-center keyboard

2013-11-12 Thread Romano Giannetti
Reading the comments, and the linked comment on
https://bugzilla.gnome.org/show_bug.cgi?id=711426, it seems that the
GNOME resolution is WONTFIX --- letting the options in gnome-tweak-tool
(which, BTW, is broken in Ubuntu now --- please see
https://bugs.launchpad.net/gnome-tweak-tool/+bug/1228626.

So it's clear that for the Gnome Shell DE the options will be found in
Tweak Tool. Now the remaining issue is where this options will be for
Unity users.


** Bug watch added: GNOME Bug Tracker #711426
   https://bugzilla.gnome.org/show_bug.cgi?id=711426

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1245064

Title:
  Keyboard Layout Options window is missed in gnome-control-center
  keyboard

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-11-08 Thread Romano Giannetti
Reported upstream --- I hope it helps.


** Bug watch added: GNOME Bug Tracker #711711
   https://bugzilla.gnome.org/show_bug.cgi?id=711711

** Also affects: gvfs via
   https://bugzilla.gnome.org/show_bug.cgi?id=711711
   Importance: Unknown
   Status: Unknown

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-11-07 Thread Romano Giannetti
Today is a no-working day. I still am not able to determine a pattern
for when it works and when no...

Done:

(0)samsung-romano:~% gvfs-mount -o

(gvfs-mount:1): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor 
with dbus name org.gtk.Private.UDisks2VolumeMonitor is not supported
Monitoring events. Press Ctrl+C to quit.


Nothing happens when I connect my disk. In the syslog I have the disk detected: 

SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.047108] usb 3-1: new 
high-speed USB device number 3 using xhci_hcd
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.076016] usb 3-1: New USB 
device found, idVendor=059b, idProduct=0470
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.076027] usb 3-1: New USB 
device strings: Mfr=10, Product=11, SerialNumber=5
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.076033] usb 3-1: Product: 
Storage
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.076038] usb 3-1: 
Manufacturer: Iomega
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.076042] usb 3-1: 
SerialNumber: 6E34633F
SYS: Nov  7 16:47:53 samsung-romano kernel: [11768.078192] scsi7 : usb-storage 
3-1:1.0
SYS: Nov  7 16:47:53 samsung-romano mtp-probe: checking bus 3, device 3: 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1
SYS: Nov  7 16:47:53 samsung-romano mtp-probe: bus: 3, device: 3 was not an MTP 
device
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.116539] scsi 7:0:0:0: 
Direct-Access ST950032 5AS   PQ: 0 ANSI: 2 CCS
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.118070] sd 7:0:0:0: Attached 
scsi generic sg3 type 0
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.118415] sd 7:0:0:0: [sdc] 
976773168 512-byte logical blocks: (500 GB/465 GiB)
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.119367] sd 7:0:0:0: [sdc] 
Write Protect is off
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.119381] sd 7:0:0:0: [sdc] 
Mode Sense: 28 00 00 00
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.120297] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.120305] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.123622] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.123631] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.189055]  sdc: sdc1 sdc2
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.191958] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.191969] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Nov  7 16:47:54 samsung-romano kernel: [11769.191977] sd 7:0:0:0: [sdc] 
Attached SCSI disk

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-11-07 Thread Romano Giannetti
There is something really strange going on here. After the test above, I logged 
out. Next, on the login screen (gdm here), there wasn't  my name-icon. I logged 
in by using not listed here... option. 
Login was much faster than normal now, and the automount is working this time. 

(0)samsung-romano:~% gvfs-mount -o
Monitoring events. Press Ctrl+C to quit.
Drive connected:'ST9500325AS'
Drive changed:  'ST9500325AS'
Drive changed:  'ST9500325AS'
Volume added:   'IOMEGA'
Volume added:   'movlin'
Volume changed: 'movlin'
Mount added: 'movlin'
Volume changed: 'IOMEGA'
Mount added: 'IOMEGA'

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-11-07 Thread Romano Giannetti
So the main difference from gvfs-mount -o is the error:

(gvfs-mount:1): GVFS-RemoteVolumeMonitor-WARNING **: remote volume
monitor with dbus name org.gtk.Private.UDisks2VolumeMonitor is not
supported

which happens when the automount is *not* working.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-11-04 Thread Romano Giannetti
@All: I think that we all should try to cool down on this bug. It's a
serious one, developers are on it, it's not easy to fix and it's
impossible to revert to old system (unfortunately).

The SRUs are trying to fix it in a incremental manner; I think that all
these changes of tag come from not having clear the procedure for a
partial fix. There are two way of seeing it:

1) the partial fix should be tagged with verification-done, and after
the final acceptance of the SRU in -updates, the bug has to be reopened
(switch from Fix released to New) for the rest of problems, given that
the partial fix do not solve completely the bug.

2) the bug has to be marked verification-done only if all the problems
are fixed.

@Sebastien, could you please advise (or share a link) on how such a
complex bug should be managed? Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1245064] Re: Keyboard Layout Options window is missed in gnome-control-center keyboard

2013-11-04 Thread Romano Giannetti
Hi, you can set compose key --- it's just in another place. See
http://askubuntu.com/questions/360378/how-to-access-the-keyboard-layout-
options-in-13-10/370257#370257, i have mine set to Menu and it's ok.

Anyone knows how to re-instate Ctrl-Alt-Backspace behavior, though? I
was unable to find it.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1245064

Title:
  Keyboard Layout Options window is missed in gnome-control-center
  keyboard

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-11-04 Thread Romano Giannetti
Tried right now --- this boot/login it  is working, and I have the
following in ~/.cache/upstart/gnome-settings-daemon.log

(gnome-settings-daemon:1896): color-plugin-WARNING **: failed to connect
to device: Failed to connect to missing device
/org/freedesktop/ColorManager/devices/cups_PDF

...and nothing more. (Is this file flushed all the time or I am supposed
to enter/exit the session?)

I have the saved file from yesterday (I suppose, it seems that file
there are rotated) when the automounting did not work. The content is
attached.

Hope this helps. I will try to check the log file when the problem
surfaces again.


** Attachment added: ~/.cache/upstart/gnome-settings-daemon.log.1 uncompressed
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1241811/+attachment/3900102/+files/gnome-settings-daemon.log

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1247507] [NEW] Nautilus crash if a zero-sized video or graphic file exists in the folder

2013-11-02 Thread Romano Giannetti
Public bug reported:

Open nautilus on a director, and then from a shell in the same directory
create a 0-lenght file with a video extension, like .avi or .MTS.
Nautilus immediately crash trying to render the preview.

(0)samsung-romano:~/tmp% touch 0.MTS
(0)samsung-romano:~/tmp% totem-video-thumbnailer couldn't open file 
'file:///home/romano/tmp/0.MTS'

(nautilus:11002): GdkPixbuf-CRITICAL **: gdk_pixbuf_loader_close:
assertion 'GDK_IS_PIXBUF_LOADER (loader)' failed

(nautilus:11002): GdkPixbuf-CRITICAL **: gdk_pixbuf_loader_get_pixbuf: 
assertion 'GDK_IS_PIXBUF_LOADER (loader)' failed
sys:1: Warning: g_object_unref: assertion 'G_IS_OBJECT (object)' failed

[1]  + 11002 segmentation fault (core dumped)  nautilus .

This is clearly a crash in the thumbnailer; I remember a similar problem
with malformed SVG files. I think that nautilus should be protected by
crashing thumbnailers...

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: nautilus 1:3.8.2-0ubuntu2
ProcVersionSignature: Ubuntu 3.8.0-31.46-generic 3.8.13.8
Uname: Linux 3.8.0-31-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: amd64
Date: Sat Nov  2 19:11:30 2013
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'1193x738+0+27'
InstallationDate: Installed on 2013-09-30 (33 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 Raring Ringtail - Release amd64 
(20130424)
MarkForUpload: True
SourcePackage: nautilus
UpgradeStatus: Upgraded to saucy on 2013-10-18 (15 days ago)

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


** Tags: amd64 apport-bug gnome3-ppa saucy third-party-packages

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

Title:
  Nautilus crash if a zero-sized  video or graphic file exists in the
  folder

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

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


[Bug 1247507] Re: Nautilus crash if a zero-sized video or graphic file exists in the folder

2013-11-02 Thread Romano Giannetti
Sebastian: got it, if I uninstall python-nautilus (and with it 
gir1.2-nautilus-3.0) the bug disappears. 
I am not sure which functions I am losing with it...

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

Title:
  Nautilus crash if a zero-sized  video or graphic file exists in the
  folder

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-31 Thread Romano Giannetti
I have the packages form the PPA (gnome-control-center
1:3.8.5-0ubuntu1~saucy1)(gnome-settings-daemon  3.8.5-0ubuntu11.1).
Ubuntu Gnome, Gnome-shell, gdm.

1) Basically it works for me with Alt+ShiftL to switch layouts, and Menu key as 
Compose.
2) My preferred setup (shift + shift) can be selected in System Settings - 
Keyborad - Shortcuts Tab - Typing group but it doesn't work (It says Shift + 
Shift R instead of Shift L + Shift R --- going back to Alt+Shift L do work). 
3) There is a strange entry that is called Modifiers-only switch layout that 
seems to do nothing. 

I have no System Settings - Text Entry in my System Settings... is this
normal being a Ubuntu GNOME installation or I have some package missing?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-30 Thread Romano Giannetti
For me (Gnome shell, gdm locking screen) it _seems_ to work (if I press
Alt+Shift the overhead windows appears and seems to change layout).
Couldn't really test, too, because the password is typed in the exactly
same way on my two layouts. (yes, it has plenty od special char.
Happening to be in the same spot).

It would be useful if people that says it doesn't work could give a bit
more info: which display manager (gdm, lightdm), which DE (Gnome-shell,
Unity)...

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1218322/+subscriptions

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-29 Thread Romano Giannetti
After the upgrade it worked for me during a couple of days. Then it
stopped again... and is still not working.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-27 Thread Romano Giannetti
I have dome more tests, but I could not find the conditions under which it 
worked some days ago. 
Summarizing, no automatic mount of USB drives. Anyone can give some hint on 
debugging it?

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-25 Thread Romano Giannetti
Why invalid? The bug is still here, and it is taken care of by the
developers...

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-24 Thread Romano Giannetti
Probably there are reasons that make this impossible, so please take
this a naïve suggestion (no offense intended to all the people working
on this, especially William) --- but what about going back to the 13.04
situation? Now I am trying to reenable the ctl-alt-backspace x-kill
(gnome shell tends to hang sometime...) and can't find how.  The old
layout setting option windows that Norbert is citing was really useful
and covered all needs.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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

[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-24 Thread Romano Giannetti
@Alexander: no idea. :-|

I can confirm that killing and restarting daemons can give you problem
if you don't logout and login again... for example, restarting gnome-
shell sometime makes shutdown/reboot form the menu impossible.

Quite lost...

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
@Sebastien --- thanks.

I am not sure because the machine with 13.10 lacks the installation of Unity 
--- Really this problem is what is keeping me from upgrading the other laptop 
(where I have both Unity and Gnome-shell)  to 13.10. 
I will try to do more test (I do not have the 13.10 laptop with me now); it has 
to be a problem very specific, otherwise there would be a lot more people 
screaming ;-)... 
The strange thing is that I can mount perfectly the devices as a normal user 
with 

udisksctl mount --block-device /dev/sdc2

so it seems that something is failing in the chain from udev (which
register the disk correctly) to whatever agent is supposed to mount it
on my behalf. If you can give some hint on where to look for logs,
errors or how to run all the chain in debug mode, I will try to shed
some light.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
@Alexander: do you have a Ubuntu/Unity or Ubuntu/Gnome?

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
...I hate launchpad when you cannot edit your last post... I mean --- is
your installation a vanilla Ubuntu, with Unity, or you have installed
an Ubuntu Gnome distro? Imy case is the second one.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
...and u(n)mounted without any glitch. Next boot, who knows...

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
The issue is an Eisenbug ( http://en.wikipedia.org/wiki/Heisenbug ). In
this moment my disk has been mounted perfectly and automatically (both
partitions). The messages are:

SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.645573] usb 3-1: new 
high-speed USB device number 2 using xhci_hcd
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.99] usb 3-1: New USB 
device found, idVendor=059b, idProduct=0470
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.666708] usb 3-1: New USB 
device strings: Mfr=10, Product=11, SerialNumber=5
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.666714] usb 3-1: Product: 
Storage
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.666719] usb 3-1: 
Manufacturer: Iomega
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.666723] usb 3-1: 
SerialNumber: 6E34633F
SYS: Oct 23 15:02:22 samsung-romano mtp-probe: checking bus 3, device 2: 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1
SYS: Oct 23 15:02:22 samsung-romano mtp-probe: bus: 3, device: 2 was not an MTP 
device
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.745152] Initializing USB 
Mass Storage driver...
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.745565] scsi6 : usb-storage 
3-1:1.0
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.745780] usbcore: registered 
new interface driver usb-storage
SYS: Oct 23 15:02:22 samsung-romano kernel: [10752.745787] USB Mass Storage 
support registered.
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.787137] scsi 6:0:0:0: 
Direct-Access ST950032 5AS   PQ: 0 ANSI: 2 CCS
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.788991] sd 6:0:0:0: Attached 
scsi generic sg3 type 0
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.789931] sd 6:0:0:0: [sdc] 
976773168 512-byte logical blocks: (500 GB/465 GiB)
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.791825] sd 6:0:0:0: [sdc] 
Write Protect is off
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.791837] sd 6:0:0:0: [sdc] 
Mode Sense: 28 00 00 00
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.792962] sd 6:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.792975] sd 6:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.795535] sd 6:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.795544] sd 6:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.862304]  sdc: sdc1 sdc2
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.865773] sd 6:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.865784] sd 6:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 23 15:02:23 samsung-romano kernel: [10753.865792] sd 6:0:0:0: [sdc] 
Attached SCSI disk
SYS: Oct 23 15:02:24 samsung-romano dbus[703]: [system] Activating service 
name='org.freedesktop.hostname1' (using servicehelper)
SYS: Oct 23 15:02:24 samsung-romano dbus[703]: [system] Successfully activated 
service 'org.freedesktop.hostname1'
SYS: Oct 23 15:02:25 samsung-romano udisksd[2497]: Mounted /dev/sdc2 at 
/media/romano/movlin on behalf of uid 1153
SYS: Oct 23 15:02:25 samsung-romano kernel: [10754.957547] EXT4-fs (sdc2): 
mounted filesystem with ordered data mode. Opts: (null)
SYS: Oct 23 15:02:26 samsung-romano ntfs-3g[16391]: Version 2013.1.13AR.1 
external FUSE 29
SYS: Oct 23 15:02:26 samsung-romano ntfs-3g[16391]: Mounted /dev/sdc1 
(Read-Write, label IOMEGA, NTFS 3.1)
SYS: Oct 23 15:02:26 samsung-romano ntfs-3g[16391]: Cmdline options: 
rw,nosuid,nodev,uhelper=udisks2,uid=1153,gid=1001,dmask=0077,fmask=0177
SYS: Oct 23 15:02:26 samsung-romano ntfs-3g[16391]: Mount options: 
rw,nosuid,nodev,uhelper=udisks2,allow_other,nonempty,relatime,default_permissions,fsname=/dev/sdc1,blkdev,blksize=4096
SYS: Oct 23 15:02:26 samsung-romano ntfs-3g[16391]: Global ownership and 
permissions enforced, configuration type 7
SYS: Oct 23 15:02:26 samsung-romano udisksd[2497]: Mounted /dev/sdc1 at 
/media/romano/IOMEGA on behalf of uid 1153

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-23 Thread Romano Giannetti
No need to wait for the next boot. After four hours, inserted again the
same disk, no automounting. At least not in the three minutes I have
waited before mounting it manually.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-22 Thread Romano Giannetti
I really do not think that this is fixed... yes, now you can set
Ctrl+Alt, but this has side effects that I think are still directly
related to this bug, affecting gnome-settings-daemon and gnome-control-
center:

1) to make Ctrl+Alt+whatever other key combinations not working anymore  
2) the fact that remnants of kbd settings are affecting setup (it will generate 
a lot of confusion)
3) the interface accepts and shows as accepted configurations that are not 
working.

I agree that the other bugs are separated, but I think that these issues
should be solved before marking this bug fixed.

Anyway, if anyone opens a new bug on the remaining issues, please post
the bug number here. Thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-22 Thread Romano Giannetti
I received the (normal) update now. The problem is that the options
for changing the keyboard preferences has disappeared from the
keyboard settings...  using gnome (not unity), could be for this?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-22 Thread Romano Giannetti
Adding a screenshot...


** Attachment added: The options for the keyboard special keys has disappeared 
after the last update
   
https://bugs.launchpad.net/ubuntu-gnome/+bug/1218322/+attachment/3887909/+files/keyboardoptions.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-22 Thread Romano Giannetti
Tested (sorry for the comment below). Works for me with Alt+Shift_L
THANKS!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-21 Thread Romano Giannetti
Added ubuntu-gnome (to check if there is something going on here ---
seems that regular  ubuntu users have no problem). My system is a
ubuntu-gnome 13.04 (fresh install) upgraded to 13.10.


** Also affects: ubuntu-gnome
   Importance: Undecided
   Status: New

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1218322] Re: Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

2013-10-21 Thread Romano Giannetti
@Sebastian:

It's quite difficult to untagle the various issue. At first glance I see
three basic problems:

- ability to change the keyboard layout switch to an arbitrary set of
modifiers, even without a normal key in the sequence, and make the
switch wrap-around (otherwise it's a pain for people with just two
layouts).

- independence of the results  from the order of press/release of the
modifiers.

- possibility to remap Caps-Lock (which in my experience is one of the
most used switch-key by the people that commonly writes in multiple
languages like me) without it acting as a Caps-Lock, and reassign the
Caps-Lock function to another combination (say, shift lock).

Obviously, all of this should work in coherency with the indicator. I
will test it with the Ubuntu Gnome configuration, HTH.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1218322

Title:
  Can't set keyboard layout change to alt+shift, ctrl+shift, etc.

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-20 Thread Romano Giannetti
Well --- now I have a warning can't umount because busy every time I
try to umount the device, but it disappear alone after a couple of
seconds and it works. So a nuisance more than a bug.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-20 Thread Romano Giannetti
Unfortunately, it happens again. So it's seems is sort of random.
Sometime it works, sometime not. If it works one time it works for all
the session (at least). After the next reboot, you sometime have
automounting working and sometime no.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-19 Thread Romano Giannetti
I think that the duplicate is not correct. I will investigate more, but:

- I have no error messages whatsoever;
- my installation is ubuntu gnome, i do not have lightdm installed
- policyKit is completely silent when inserting disk
- I have no problem in mounting *manually* the device.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-19 Thread Romano Giannetti
** This bug is no longer a duplicate of bug 1240336
   Not authorized to perform operation

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-19 Thread Romano Giannetti
It seems that the upgrade that entered just now:

Upgrade: libsystemd-login0:amd64 (204-0ubuntu18, 204-0ubuntu19),
systemd-services:amd64 (204-0ubuntu18, 204-0ubuntu19),  libsystemd-
daemon0:amd64 (204-0ubuntu18, 204-0ubuntu19), libgudev-1.0-0:amd64
(204-0ubuntu18, 204-0ubuntu19), libpam-systemd:amd64 (204-0ubuntu18,
204-0ubuntu19), udev:amd64 (204-0ubuntu18, 204-0ubuntu19), libunity-
scopes-json-def-desktop:amd64 (7.1.2+13.10.20131010-0ubuntu1,
7.1.2+13.10.20131010-0ubuntu2), gir1.2-gudev-1.0:amd64 (204-0ubuntu18,
204-0ubuntu19),  libunity-protocol-private0:amd64
(7.1.2+13.10.20131010-0ubuntu1, 7.1.2+13.10.20131010-0ubuntu2),
libudev1:amd64 (204-0ubuntu18, 204-0ubuntu19), libudev1:i386
(204-0ubuntu18, 204-0ubuntu19), libsystemd-journal0:amd64
(204-0ubuntu18, 204-0ubuntu19), libunity9:amd64
(7.1.2+13.10.20131010-0ubuntu1, 7.1.2+13.10.20131010-0ubuntu2),
gir1.2-unity-5.0:amd64 (7.1.2+13.10.20131010-0ubuntu1,
7.1.2+13.10.20131010-0ubuntu2)

Fixed the problem.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-19 Thread Romano Giannetti
If the other affected person confirm it's gone, I'll mark it at solved,
although it would be nice to find if there is a main bug o mark this
as a duplicate.

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] [NEW] USB disk not automatically mounted after upgrade to 13.10

2013-10-18 Thread Romano Giannetti
Public bug reported:

Since the upgrade to 13.10, my laptop stopped mounting the USB devices
(and SD cards too) automatically.

Inserting the USB I have in the log:

SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.570340] usb 3-2: new 
high-speed USB device number 3 using xhci_hcd
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593170] usb 3-2: New USB 
device found, idVendor=090c, idProduct=1000
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593181] usb 3-2: New USB 
device strings: Mfr=1, Product=2, SerialNumber=3
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593187] usb 3-2: Product: 
Flash Disk
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593192] usb 3-2: 
Manufacturer: USB
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593196] usb 3-2: 
SerialNumber: FBF1009232400790
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593492] usb 3-2: ep 0x81 - 
rounding interval to 128 microframes, ep desc says 255 microframes
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593501] usb 3-2: ep 0x2 - 
rounding interval to 128 microframes, ep desc says 255 microframes
SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.595232] scsi7 : usb-storage 
3-2:1.0
SYS: Oct 18 13:57:38 samsung-romano mtp-probe: checking bus 3, device 3: 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-2
SYS: Oct 18 13:57:38 samsung-romano mtp-probe: bus: 3, device: 3 was not an MTP 
device
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.834382] scsi 7:0:0:0: 
Direct-Access USB  Flash Disk   1100 PQ: 0 ANSI: 0 CCS
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.835894] sd 7:0:0:0: Attached 
scsi generic sg3 type 0
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836227] sd 7:0:0:0: [sdc] 
3915776 512-byte logical blocks: (2.00 GB/1.86 GiB)
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836910] sd 7:0:0:0: [sdc] 
Write Protect is off
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836926] sd 7:0:0:0: [sdc] 
Mode Sense: 43 00 00 00
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.837665] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.837676] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.843552] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.843562] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.844609]  sdc: sdc1
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846982] sd 7:0:0:0: [sdc] No 
Caching mode page present
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846990] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846997] sd 7:0:0:0: [sdc] 
Attached SCSI removable disk

But after that nothing happens. I checked the dconf variables as per
https://help.ubuntu.com/community/Mount/USB but it's all correctly set.
I can mount the disk by hand:

% sudo mount /dev/sdc1 /mnt
% mount | grep mnt
/dev/sdc1 on /mnt type vfat (rw)

...and it works ok.

Add: using from command line udisks works, too:

(0)samsung-romano:~% udisks --mount /dev/sdc1
Mounted /org/freedesktop/UDisks/devices/sdc1 at /media/PENDRIVE

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


** Tags: regression-release saucy

** Tags added: regression-update saucy

** Tags removed: regression-update
** Tags added: regression-release

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-18 Thread Romano Giannetti
** Description changed:

  Since the upgrade to 13.10, my laptop stopped mounting the USB devices
  (and SD cards too) automatically.
  
  Inserting the USB I have in the log:
  
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.570340] usb 3-2: new 
high-speed USB device number 3 using xhci_hcd
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593170] usb 3-2: New USB 
device found, idVendor=090c, idProduct=1000
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593181] usb 3-2: New USB 
device strings: Mfr=1, Product=2, SerialNumber=3
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593187] usb 3-2: Product: 
Flash Disk
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593192] usb 3-2: 
Manufacturer: USB
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593196] usb 3-2: 
SerialNumber: FBF1009232400790
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593492] usb 3-2: ep 0x81 - 
rounding interval to 128 microframes, ep desc says 255 microframes
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.593501] usb 3-2: ep 0x2 - 
rounding interval to 128 microframes, ep desc says 255 microframes
  SYS: Oct 18 13:57:38 samsung-romano kernel: [  167.595232] scsi7 : 
usb-storage 3-2:1.0
  SYS: Oct 18 13:57:38 samsung-romano mtp-probe: checking bus 3, device 3: 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-2
  SYS: Oct 18 13:57:38 samsung-romano mtp-probe: bus: 3, device: 3 was not an 
MTP device
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.834382] scsi 7:0:0:0: 
Direct-Access USB  Flash Disk   1100 PQ: 0 ANSI: 0 CCS
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.835894] sd 7:0:0:0: 
Attached scsi generic sg3 type 0
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836227] sd 7:0:0:0: [sdc] 
3915776 512-byte logical blocks: (2.00 GB/1.86 GiB)
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836910] sd 7:0:0:0: [sdc] 
Write Protect is off
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.836926] sd 7:0:0:0: [sdc] 
Mode Sense: 43 00 00 00
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.837665] sd 7:0:0:0: [sdc] 
No Caching mode page present
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.837676] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.843552] sd 7:0:0:0: [sdc] 
No Caching mode page present
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.843562] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.844609]  sdc: sdc1
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846982] sd 7:0:0:0: [sdc] 
No Caching mode page present
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846990] sd 7:0:0:0: [sdc] 
Assuming drive cache: write through
  SYS: Oct 18 13:57:39 samsung-romano kernel: [  168.846997] sd 7:0:0:0: [sdc] 
Attached SCSI removable disk
  
  But after that nothing happens. I checked the dconf variables as per
  https://help.ubuntu.com/community/Mount/USB but it's all correctly set.
  I can mount the disk by hand:
  
  % sudo mount /dev/sdc1 /mnt
  % mount | grep mnt
  /dev/sdc1 on /mnt type vfat (rw)
  
  ...and it works ok.
+ 
+ Add: using from command line udisks works, too:
+ 
+ (0)samsung-romano:~% udisks --mount /dev/sdc1
+ Mounted /org/freedesktop/UDisks/devices/sdc1 at /media/PENDRIVE

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-18 Thread Romano Giannetti
I stopped and restarted in debug mode udisksd. The event arrives, then it 
simply stops and does nothing. 
Log from the daemon (inserting another USB stick, so it's sdd now):


14:28:17.122:[5681]:[NOTICE]: Acquired the name org.freedesktop.UDisks2 on the 
system message bus [main.c:77, on_name_acquired()]
14:28:17.846:[5683]:[INFO]: Housekeeping complete [udiskslinuxprovider.c:973, 
housekeeping_thread_func()]
14:28:34.725:[5681]:[DEBUG]: uevent add 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1/3-1:1.0/host12 
[udiskslinuxprovider.c:902, udisks_linux_provider_handle_uevent()]
14:28:35.960:[5681]:[DEBUG]: uevent add 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1/3-1:1.0/host12/target12:0:0
 [udiskslinuxprovider.c:902, udisks_linux_provider_handle_uevent()]
14:28:35.961:[5681]:[DEBUG]: uevent add 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1/3-1:1.0/host12/target12:0:0/12:0:0:0
 [udiskslinuxprovider.c:902, udisks_linux_provider_handle_uevent()]
14:28:36.043:[5681]:[DEBUG]: uevent add 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1/3-1:1.0/host12/target12:0:0/12:0:0:0/block/sdd
 [udiskslinuxprovider.c:902, udisks_linux_provider_handle_uevent()]
14:28:36.112:[5681]:[DEBUG]: uevent add 
/sys/devices/pci:00/:00:1c.4/:04:00.0/usb3/3-1/3-1:1.0/host12/target12:0:0/12:0:0:0/block/sdd/sdd1
 [udiskslinuxprovider.c:902, udisks_linux_provider_handle_uevent()]

will try to add udisks to this bug report.


** Also affects: nautilus-udisks (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1241811] Re: USB disk not automatically mounted after upgrade to 13.10

2013-10-18 Thread Romano Giannetti
And to add mistery, calling the daemon:

% udisksctl mount --block-device /dev/sdc1

will correctly mount the disk and the log says:

14:40:13.601:[7143]:[NOTICE]: Mounted /dev/sdc1 at
/media/romano/3861-ECBD on behalf of uid 1153
[udiskslinuxfilesystem.c:1493, handle_mount()]

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

Title:
  USB disk not automatically mounted after upgrade to 13.10

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

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


[Bug 1077696] Re: mounted samba share stops working for file access

2013-10-09 Thread Romano Giannetti
*** This bug is a duplicate of bug 1075923 ***
https://bugs.launchpad.net/bugs/1075923

I am quite sure that this is a duplicate of
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1075923.

It seems fixed --- I cannot test it myself now.


** This bug has been marked a duplicate of bug 1075923
   nautilus hangs copying large directories from a samba share

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

Title:
  mounted samba share stops working for file access

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

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


[Bug 1168293] Re: No Certificate dialog not responding

2013-07-24 Thread Romano Giannetti
Still here for me, crippling the system badly.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1168293

Title:
  No Certificate dialog not responding

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-07-19 Thread Romano Giannetti
Just triggered again now. Another nice feature of this bug: if you try to 
umount (force umount, whatever) the locked share, you will have the prompt 
(in my case, the gnome shell one) telling that is impossible because the share 
is busy. Ok. But pressing either cancel or ignore, unount anyway will 
simply re-pop-up the prompt. And givien that the darn prompt is modal, you are 
locked. 
The only solution is ginfg to a VC and issuing killall gvfs-smb. But how many 
users will know this? 
I understand that the big effort now is to have the ubuntu phone thing. But 
this is a really big issue. Please

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-05-30 Thread Romano Giannetti
@karl: are you sure?  I admit it has been month since last I triggered it, but 
I distinctly remember having processes stuck in D state, unkillable even with 
-9. 
Nevertheless, killing the processes for example during a move could cause data 
loss, as reported above. 
It seems that there have been movement on the upstream bug, let's hope it could 
be assigned to someone soon here too.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-05-21 Thread Romano Giannetti
@Sebastien Bacher: please, could you drive developers attention on this
bug? I feel that it should be assigned and risen to Critical status;
it's a core regression which will probably bite a lot of unaware and
non-technical user.

We have a report of data loss too...; and I would not be surprised if
this could be changed in a DOS someway (processes stuck in D state are
really dangerous).

I am saying this because (respectfully) I have the sensation that this
bug is being severely underestimated.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-05-03 Thread Romano Giannetti
To all --- I think that it is clear that all the world is affected, although it 
happens randomly so you will see it only with big files or a lot of them, and 
intermittently. 
It seems to me that the problem was a regression introduced by the upgrade from 
1.12 to 1.14 of gvfs.
I pointed the upstream bug to this launchpad bug; I think that the best option 
now would be to try to help the developers of upstream gvfs to squash this bug.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-04-30 Thread Romano Giannetti
@Jochen: which version of gvfs / gvfs-SMS uses your system? The problem
started with gvfs 1.14, I think.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1125260] Re: gtk_file_chooser_get_current_folder() function is broken in 2.24.10 GTK+ 2.24.15

2013-04-14 Thread Romano Giannetti
Affects a lot of applications ... still unassigned in ubuntu?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1125260

Title:
  gtk_file_chooser_get_current_folder() function is broken in 2.24.10 
  GTK+  2.24.15

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

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


[Bug 1125260] Re: gtk_file_chooser_get_current_folder() function is broken in 2.24.10 GTK+ 2.24.15

2013-04-14 Thread Romano Giannetti
The patch that the description points to is not the fix, it's just
adding a test to the test patterns of the library. The correct patch
seems to be this one:

https://bug691040.bugzilla-
attachments.gnome.org/attachment.cgi?id=238204

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1125260

Title:
  gtk_file_chooser_get_current_folder() function is broken in 2.24.10 
  GTK+  2.24.15

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-03-06 Thread Romano Giannetti
I can't do it, because I have since changed my configuration --- using
NFS. But some adventurous of you could test if upgrading gvfs can
help.

There is a PPA here, http://www.webupd8.org/2013/01/upgrade-to-gvfs-
with-mtp-support-in.html - it's oriented to other features, but if I
understand correctly it will upgrade gvfs to the same one used in the
last Fedora.

Nevertheless, I can't understand why this is not critical --- it'a a
show-stopper for a lot of applications and, in the way it fails, a kind
of DOS --- you will have a lot of processes in D state, unkillable and
zombies all around.

Ah, by the way, you can use cifs without uninstalling gvfs, I think.
Completely separate matters.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1125996] [NEW] Evince mis-print a PDF file (which prints ok with lpr or okular)

2013-02-15 Thread Romano Giannetti
Public bug reported:

Evince incorrectly print some PDFlatex documents.

Sometimes evince misprints PDF documents produced by pdflatex (at least, 
not checked with different sources).

For example, in the included tar.gz file, you have a simple PDF with just
one equation. The LaTeX source file is beta.tex, and the file produced 
by pdflatex is pdflatex-beta (obtained by running: 

pdflatex beta; mv beta.pdf pdflatex-beta.pdf

).

If I visualize the file with evince and print it --- either on a printer 
or on the CUPS PDF printer, same results, so I add the CUPS PDF printer 
generated files --- the files is mis-printed, with the beta symbol misaligned.
Notice that the file is correctly visualized by evince, with the symbol in its 
correct place.

If I print the file opening it with okular, or directly from command-line 
with lpr pdflatex-beta.pdf, the output is correct. 

Attached to this report a tar.gz file with: 
- the source LaTeX file, beta.tex
- the resulting PDF file, pdflatex-beta.pdf
- the result of printing with evince, pdflatex-beta_printed_by_evince.pdf
- the result of printing with okularm, pdflatex-beta-printed_by_okular.pdf

As I told, the errors shows exactly in the same form if I print the file 
to a physical printer.

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

** Attachment added: Files showing the bug; content described in the report.
   
https://bugs.launchpad.net/bugs/1125996/+attachment/3529598/+files/EviceMisprintPdflatex.tar.gz

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

Title:
  Evince mis-print a PDF file (which prints ok with lpr or okular)

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

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


[Bug 937204] Re: gnome-settings-daemon crashed with signal 5 in _XReply() (XSync, apply_settings)

2013-01-25 Thread Romano Giannetti
I hit (probably) the same bug --- made connecting to my PC via VNC practically 
impossible. 
Ubuntu 12.10, using gnome-shell. After a few minutes of remote VNC operation 
(using JumpDesktop from an iPad), gnome-settings-daemon crashes, and after that 
all the applications come out ugly. 
Worse still, logout-login did not solve the problem, because now gnome-shell 
didn't start again (respawning too fast), reboot needed. 
I do not have a track (yet) so I am not sure this is the same bug --- but it's 
easily reproducible. I will try to trigger it when I have a bit of spare time 
and report the track. 
Nasty.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/937204

Title:
  gnome-settings-daemon crashed with signal 5 in _XReply() (XSync,
  apply_settings)

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-01-25 Thread Romano Giannetti
Fedora has gvfs 1.15
(http://koji.fedoraproject.org/koji/packageinfo?packageID=5487) while
Quantal has 1.14, which has been rapidly deleted on Fedora. I have not
time to dig this more, but, if there is a PPA with a 1.15 build, I am
available to test it out.

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1055497] Re: Signature inserted twice when replying or forwarding

2012-12-31 Thread Romano Giannetti
I suppose this should be reported upstream on Gnome lists... I think that the 
(something more) supported MUA for Ubuntu is thunderbird - although it too has 
its share of unresolved bugs since ages...
I switched to TB and a local dovecot server for my mbox archives, and I have to 
say that it's a whole better than evolution in a lot of things, especially with 
very big mboxes like mines.

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

Title:
  Signature inserted twice when replying or forwarding

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

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


[Bug 1077696] Re: mounted samba share stops working for file access

2012-12-21 Thread Romano Giannetti
I have a very similar hang when copying files. After a few files copied,
it hangs. Forever. I have a kernel warning stack trace:

Dec 21 19:30:29 romano-asus kernel: [ 5760.344269] INFO: task cp:4312 blocked 
for more than 120 seconds.
Dec 21 19:30:29 romano-asus kernel: [ 5760.348136] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Dec 21 19:30:29 romano-asus kernel: [ 5760.352336] cp  D c1075e1e   
  0  4312   4279 0x0004
Dec 21 19:30:29 romano-asus kernel: [ 5760.352359]  f0b1dd4c 0046 f0b1dcf4 
c1075e1e 3528f000 c183f240 f09ec000 04cb
Dec 21 19:30:29 romano-asus kernel: [ 5760.352384]  c196be00 c196be00  
04cb f6bece00 eef732c0 f0b1dd20 c106d6c5
Dec 21 19:30:29 romano-asus kernel: [ 5760.352405]    0003 
ee152c34 f0b1dd20 0296 f0b1dd24 c1037af8
Dec 21 19:30:29 romano-asus kernel: [ 5760.352425] Call Trace:
Dec 21 19:30:29 romano-asus kernel: [ 5760.352448]  [c1075e1e] ? 
try_to_wake_up+0x18e/0x230
Dec 21 19:30:29 romano-asus kernel: [ 5760.352463]  [c106d6c5] ? 
__wake_up_common+0x45/0x70
Dec 21 19:30:29 romano-asus kernel: [ 5760.352477]  [c1037af8] ? 
default_spin_lock_flags+0x8/0x10
Dec 21 19:30:29 romano-asus kernel: [ 5760.352491]  [c15ca49d] ? 
_raw_spin_lock_irqsave+0x2d/0x40
Dec 21 19:30:29 romano-asus kernel: [ 5760.352503]  [c10657dc] ? 
prepare_to_wait+0x4c/0x80
Dec 21 19:30:29 romano-asus kernel: [ 5760.352514]  [c15c95d3] 
schedule+0x23/0x60
Dec 21 19:30:29 romano-asus kernel: [ 5760.352528]  [c123d885] 
fuse_request_send+0xd5/0x290
Dec 21 19:30:29 romano-asus kernel: [ 5760.352541]  [c12e184c] ? 
__percpu_counter_add+0x8c/0xb0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352552]  [c1065580] ? 
finish_wait+0x70/0x70
Dec 21 19:30:29 romano-asus kernel: [ 5760.352564]  [c1244c1e] 
fuse_flush+0xce/0x120
Dec 21 19:30:29 romano-asus kernel: [ 5760.352577]  [c114c623] 
filp_close+0x33/0x80
Dec 21 19:30:29 romano-asus kernel: [ 5760.352589]  [c1049b65] 
put_files_struct+0x75/0xc0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352600]  [c1049c56] 
exit_files+0x46/0x60
Dec 21 19:30:29 romano-asus kernel: [ 5760.352611]  [c104a09a] 
do_exit+0x14a/0x7a0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352624]  [c110333f] ? 
generic_file_aio_read+0x49f/0x740
Dec 21 19:30:29 romano-asus kernel: [ 5760.352636]  [c1056837] ? 
recalc_sigpending+0x17/0x50
Dec 21 19:30:29 romano-asus kernel: [ 5760.352647]  [c1056ae2] ? 
dequeue_signal+0x32/0x180
Dec 21 19:30:29 romano-asus kernel: [ 5760.352658]  [c104a994] 
do_group_exit+0x34/0xa0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352670]  [c1058c05] 
get_signal_to_deliver+0x175/0x5a0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352683]  [c115c5bf] ? 
path_openat+0xcf/0x380
Dec 21 19:30:29 romano-asus kernel: [ 5760.352696]  [c101049d] 
do_signal+0x2d/0x890
Dec 21 19:30:29 romano-asus kernel: [ 5760.352709]  [c114ed03] ? 
rw_verify_area+0x63/0x110
Dec 21 19:30:29 romano-asus kernel: [ 5760.352721]  [c114e620] ? 
do_sync_write+0xf0/0xf0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352732]  [c114f1e9] ? 
vfs_read+0x89/0x160
Dec 21 19:30:29 romano-asus kernel: [ 5760.352744]  [c114e620] ? 
do_sync_write+0xf0/0xf0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352756]  [c1010f25] 
do_notify_resume+0x85/0xb0
Dec 21 19:30:29 romano-asus kernel: [ 5760.352767]  [c15ca68d] 
work_notifysig+0x30/0x37

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

Title:
  mounted samba share stops working for file access

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

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


[Bug 1077696] Re: mounted samba share stops working for file access

2012-12-21 Thread Romano Giannetti
I can confirm that mount.cifs seems to work ok. Gvfs problem. Anyone
listening? I am available (well, after Xmas holidays) to help in
debugging.

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

Title:
  mounted samba share stops working for file access

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

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


[Bug 1069775] Re: evolution locks up

2012-10-23 Thread Romano Giannetti
It happens the same to me. Basically, the UI *seems* to be usable, but
when you click nothing happens (at most you have another tab doing
something that will never finish at the bottom). When you try to exit,
the UI grays out, and then nothing works.

I have not tried to let evolution in that state all night, for example.
Maybe is just something interlocking so that it's extremely slow...

Seems a lock problem. I have sometime a strange similar thing; one tab
seems to stay forever saying pinging server at (whatever) and all is
blocked. Fortunately that kind of thing *do* timeout after 10-20
seconds, and evolution resumes happily with just an error. Could this
help to shed some light?

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

Title:
  evolution locks up

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

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


  1   2   3   >