[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2015-08-05 Thread Alvaro A.Cordoba
** Changed in: thunar-volman (Ubuntu)
 Assignee: (unassigned) => Alvaro A.Cordoba (alvaroacordoba)

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-07-11 Thread Peter F. Patel-Schneider
No action yet that I can see.  Does anyone know how to get this patch
looked at?   The current setup with its 5 second delay is getting
annoying.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Peter F. Patel-Schneider
I see that 0.8.1 has your patch.

I think that better than waiting 1 second would be to try immediately
and only then wait for a bit.  I modified the code accordingly, ending
up with


static gboolean
tvm_block_device_mount_volume (TvmContext *context, GVolume *volume)
{
  GMountOperation *mount_operation;

  /* check if we have a volume */
  if (volume != NULL)
{
  /* check if we can mount the volume */
  if (g_volume_can_mount (volume))
{
  /* try to mount the volume asynchronously */
  mount_operation = gtk_mount_operation_new (NULL);
  g_volume_mount (volume, G_MOUNT_MOUNT_NONE, mount_operation,
  NULL, (GAsyncReadyCallback) 
tvm_block_device_mount_finish, context);
  g_object_unref (mount_operation);
}
  else
{
  g_set_error (context->error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
   _("Unable to mount the device"));

  /* finish processing the device */
  tvm_device_handler_finished (context);
}
}
  else
{
  g_set_error (context->error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
   _("Could not detect the volume corresponding to the 
device"));

  /* finish processing the device */
  tvm_device_handler_finished (context);
}
return FALSE;
}

static gboolean
tvm_block_device_mount_retry (TvmContext *context)
{
  GVolume *volume;

  volume = 
tvm_g_volume_monitor_get_volume_for_kind (context->monitor,
  
G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE,
  g_udev_device_get_device_file 
(context->device));

  /* if no volume then call anyway to do not-found processing */
  tvm_block_device_mount_volume (context,volume);
  return FALSE;
}

static gboolean
tvm_block_device_mount (TvmContext *context)
{
  GVolume *volume;

  g_return_if_fail (context != NULL);

  /* determine the GVolume corresponding to the udev device */
  volume = 
tvm_g_volume_monitor_get_volume_for_kind (context->monitor,
  
G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE,
  g_udev_device_get_device_file 
(context->device));
  if (volume != NULL)
{
  tvm_block_device_mount_volume(context,volume);
}
  else
{ 
  /* clean up and try again in one second */
  g_object_unref (context->monitor);
  context->monitor = g_volume_monitor_get ();
  g_timeout_add_seconds(1, (GSourceFunc) tvm_block_device_mount_retry, 
context);
}
  return FALSE;
}


What's the best way to get this put into thunar-volman?

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Mati86dl
> I see that 0.8.1 has your patch.

Yes .. Even though I recommended do it. hah :S

> I think that better than waiting 1 second would be to try
> immediately and only then wait for a bit.  I modified the
> code accordingly, ending up with 

Looks better.. =)

> What's the best way to get this put into thunar-volman?

Clone the repo, commit your change with a good description
and make a patch from this commit. ;)

Then attach it here.

If you doubt, do it with a graphical interface as gitg- =)

Regards.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Peter F. Patel-Schneider
https://bugzilla.xfce.org/show_bug.cgi?id=9193#c14

doesn't work reliably for me.  It may be that it doesn't help at all,
except to cause the race condition to sometimes come out the "right"
way.

The problem is still active with Thunar 1.6.6 and thunar-volman 0.8.0.
I'm going to try to add some patches to the current versions.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Peter F. Patel-Schneider
My patch that tries to get the volume up to three times, with a 1-second
delay between each time, hides the problem successfully.

However, a better solution would be to have thunar-volman only called
when the volume has been set up.  This is known, as the volume has to be
set up for the icon to appear on the desktop.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Mati86dl
> https://bugzilla.xfce.org/show_bug.cgi?id=9193#c14
>
> doesn't work reliably for me.  It may be that it doesn't help
> at all, except to cause the race condition to sometimes come
> out the "right" way.


I honestly do not know. In the latest versions of fedora not
have problems and use this change by default.. :S

On thunar volman 0.8.1 added my patch.. :S

http://git.xfce.org/xfce/thunar-
volman/commit/?id=f3f8ba9d92923492d93672676dffc5f65c068ea9

As they added to the patch, Please at least reduce the time to one or
two seconds. 5 seconds is completely unnecessary.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Peter F. Patel-Schneider
OK, done.

Hopefully this will get picked up faster than your patch.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2015-04-15 Thread Peter F. Patel-Schneider
Created attachment 6191
Try to get GVolume right away and only if that fails wait for 1 second

This should change the total delay from 5 seconds per partition to at
most 1 second for an entire physical device.

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-12-27 Thread Thaddäus Tintenfisch
** Package changed: thunar-volman-plugin (Ubuntu) => thunar-volman
(Ubuntu)

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-12-26 Thread R E Pas
** Package changed: thunar-volman (Ubuntu) => thunar-volman-plugin
(Ubuntu)

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898]

2014-07-07 Thread Mati86dl
Hi there.
I wrote the proposed patch, but honestly not recommend it..

This may solve the problems, but it really is not a problem of thunar!.
it's definitely a problem between udev/udisk and glib!.

Please, Those who have problems, test the comented on:

https://bugzilla.xfce.org/show_bug.cgi?id=9193#c14

With it work properly, and no require changes in any code..

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-05-18 Thread Mattia Rizzolo
** No longer affects: hundredpapercuts

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

Title:
  Removable drives and media not automatically mounted/listed

To manage notifications about this bug go to:
https://bugs.launchpad.net/thunar-volman/+bug/1210898/+subscriptions

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-05-17 Thread snafu109
I've closed the bug I opened in my previous comment as "Invalid" - my
issue was that the thunar daemon wasn't running. When I added 'thunar
--daemon' to the list of applications to autostart when XFCE starts it
did start working as expected.

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-05-17 Thread snafu109
For anyone still experiencing this issue I've opened a new bug against
thunar-volman version 0.8.0-4ubuntu1. Please add to that report if, like
me, you still have a problem.

Bug #1320542

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898]

2014-04-23 Thread adam jvok
Still a problem

$ thunar-volman -V
thunar-volman 0.8.0 (Xfce 4.10)

$ thunar -V
Thunar 1.6.3 (Xfce 4.10)

Please fix.

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-21 Thread Alad Wenter
Bug is still present in 0.8.0-4ubuntu1.

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-19 Thread Bug Watch Updater
Launchpad has imported 18 comments from the remote bug at
https://bugzilla.xfce.org/show_bug.cgi?id=9193.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2012-08-09T23:07:17+00:00 Vaxon77 wrote:

I have "Mount removable drives when hot-plugged" option enabled.
However, thunar-volman fails to mount any removable media.

I've made the following script as a workaround for the issue:

cat /usr/local/bin/thunar-volman 
#!/bin/sh
sleep 1
exec /usr/bin/thunar-volman $@ >/tmp/thunar-volman.log 2>&1

Mount succeeds if thunar-volman is started after a small delay.
If I comment "#sleep 1", mount fails and the output of /tmp/thunar-volman.log 
looks as follows:
cat /tmp/thunar-volman.log 
thunar-volman: Could not detect the volume corresponding to the device.

/usr/bin/thunar-volman --version
thunar-volman 0.8.0 (Xfce 4.10)

Copyright (c) 2004-2007 Benedikt Meurer 
Copyright (c) 2010-2011 Jannis Pohlmann 

All rights reserved.

Please report bugs to <http://bugzilla.xfce.org/>.

Thanks,
Val.

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/0


On 2012-08-10T13:16:39+00:00 Vaxon77 wrote:

The problem seems to be in the inconsitency between thunar and thunar-
volman.

Thunar seems to be using UDEV events to detect device add/remove, while
thunar-volman uses GVolumeMonitor to find a volume corresponding to the
added device and mount it. The problem is gvolume monitor has not set-up
the new device volume by the time thunar-volman is started. Obviously
UDEV events are emitted first and there's no guarantee GVolumeMonitor
manages to set up a volume fast enough for thunar-volman to use it.

I'm not thunar expert, but probably the best way to fix it would be to
use the the same event monitoring mechanism in both thunar and thunar-
volman. For example, if thunar started thunar-volman based on
GVolumeMonitor "volume-added" events AOT UDEV device add events, thunar-
volman would detect the volume and mount it without any problems.

Thanks,
Val.

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/1


On 2012-08-29T16:52:13+00:00 Mati86dl wrote:

Confirm it.
Inspire in thunar-volman code now try to add support to remobable devices in 
pragha, and I found this problem.

Now I did a quick test, and adding a sleep (5) before
tvm_g_volume_monitor_get_volume_for_kind, solves all the problems.

ONLY A TEST!.

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/2


On 2012-08-29T18:14:52+00:00 Mati86dl wrote:

Created attachment 4608
Mount devices with a timeout of 5 seconds.

Tested in Fedora 17 with xfce 4.10.
Only wait 5 seconds to make sure that glib detect the volume.

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/3


On 2012-11-01T20:13:26+00:00 Andriy Yurchuk wrote:

Auto-mounting worked fine in 4.8. What has changed since then? Maybe

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/4


On 2013-02-27T06:06:22+00:00 Peter F. Patel-Schneider wrote:

Adding a sleep at the beginning of twm_block_device_mount doesn't work
for me.  However, adding a sleep in main() does.

Further, adding a loop inside twm_block_device_mount with a sleep and
retry of the tvm_g_volume_monitor_get_volume_for_kind doesn't help at
all, even when the total delay runs into several minutes, and even when
a new volume monitor is created.

I find this very strange - it is almost as if the contents of the volume
monitor are fixed at thread invocation time and can't change thereafter.
There is something about volume monitor not being thread-safe, but I
don't understand just what this means.

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/5


On 2013-04-01T18:50:58+00:00 Philipp wrote:

I have the same problem in Xubuntu 12.10 with XFCE 4.10.
With the workaround it seems to work now.

Thanks to vaxon77

Reply at: https://bugs.launchpad.net/ubuntu/+source/thunar-
volman/+bug/1210898/comments/6


On 2013-06-08T07:21:38+00:00 programmist11180 wrote:

Debian Wheezy, XFCE 4.10. When gvfs 1.16 and udisks2

[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-14 Thread Pasi Lallinaho
** Changed in: thunar-volman (Ubuntu)
 Assignee: (unassigned) => Thaddäus Tintenfisch (thad-fisch)

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

Title:
  Removable drives and media not automatically mounted/listed

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

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

[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-13 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/thunar-volman

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-13 Thread Launchpad Bug Tracker
This bug was fixed in the package thunar-volman - 0.8.0-4ubuntu1

---
thunar-volman (0.8.0-4ubuntu1) trusty; urgency=medium

  * Fix auto-mounting of removable devices. LP: #1210898
 -- Thaddaeus TintenfischFri, 11 Apr 2014 21:59:42 
+0200

** Changed in: thunar-volman (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/listed

2014-04-13 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/thunar-volman

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Removable drives and media not automatically mounted/recognized

2014-04-13 Thread Pasi Lallinaho
Marking as high since the same bug also causes some drives/media to not
be listed at all, which makes it impossible to mount them at all from
the GUI. The bugfix in the PPA fixes this issue as well, as reported by
Elfy in comment #14.

** Summary changed:

- Thunar does not automatically mount removable drives and media
+ Removable drives and media not automatically mounted/recognized

** Summary changed:

- Removable drives and media not automatically mounted/recognized
+ Removable drives and media not automatically mounted/listed

** Changed in: thunar-volman (Ubuntu)
   Importance: Low => High

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

Title:
  Removable drives and media not automatically mounted/listed

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-13 Thread Elfy
PPA works here - though I am affected by a slightly different issue -
Sansa Clip wasn't visible ~90% of insertions

Now shows up and automounts.

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-11 Thread Thaddäus Tintenfisch
** Branch linked: lp:~thad-fisch/ubuntu/trusty/thunar-volman/fix-
automount

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-11 Thread Thaddäus Tintenfisch
** Branch linked: lp:~thad-fisch/ubuntu/trusty/thunar-volman/fix-
automount

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-10 Thread Thaddäus Tintenfisch
Jarno, sorry that I did not mention it, but the PPA is targeting Trusty
("Fixes for Xubuntu 14.04 LTS").

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-10 Thread Jarno Suni
The repository did not work for Sausy:
sudo apt-get update says: 

W: Failed to fetch http://ppa.launchpad.net/thad-
fisch/test/ubuntu/dists/saucy/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/thad-
fisch/test/ubuntu/dists/saucy/main/binary-i386/Packages  404  Not Found

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-04-09 Thread Thaddäus Tintenfisch
I have uploaded a patched version of thunar-volman to
https://launchpad.net/~thad-fisch/+archive/test for testing purpose.

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-03-17 Thread Thaddäus Tintenfisch
** Package changed: thunar (Ubuntu) => thunar-volman (Ubuntu)

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-03-17 Thread Thaddäus Tintenfisch
** Also affects: thunar-volman via
   https://bugzilla.xfce.org/show_bug.cgi?id=9193
   Importance: Unknown
   Status: Unknown

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-03-16 Thread Elfy
spoke too soon ...

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-03-13 Thread Elfy
An update to mount means that the only thing that failed for me now
works.

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-03-06 Thread Elfy
Plugged in Sansa mp3 player.

Recognised, did some media player movement.

Unmounted and ejected - thunar crashed.

Further attempts to plugin and mount mp3 player fail. Reboot of machine
- no difference. Cold start - can now plugin and mount mp3 player.

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2014-01-27 Thread Alberto Salvia Novella
** Changed in: thunar (Ubuntu)
   Importance: Undecided => Low

** Also affects: hundredpapercuts
   Importance: Undecided
   Status: New

** Changed in: hundredpapercuts
   Status: New => Confirmed

** Changed in: hundredpapercuts
   Importance: Undecided => Low

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-12-26 Thread Peter F. Patel-Schneider
This sounds very much like
https://bugzilla.xfce.org/show_bug.cgi?id=9193 which has a proposed
workaround.

The crux of the problem is that thunar-volman tries to access
information about the volume before the information is available.
Adding a delay solves the problem, but not in a pleasant way.

** Bug watch added: Xfce Bugzilla #9193
   https://bugzilla.xfce.org/show_bug.cgi?id=9193

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-12-17 Thread Sergio Benjamim
** Tags added: trusty

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-12-17 Thread Sergio Benjamim
interesting. If Thunar is already open, and I plug an flash drive, then
it will mount and open an other Thunar window, like I told in Bug
#1261460.

But if I plug my flash drive without one Thunar window open, then it
will not mount automatically, I can see this in /media/my-user/

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-10-28 Thread 2CV67
This sounds like the problem I reported on Ubuntu Forum back in May 2013 using 
12.10:
http://ubuntuforums.org/showthread.php?t=2146129

Still the same today in 13.04.

Basically, when hot-plugging a camera, it sometimes appears in Thunar as 
mounted & calls up Shotwell as required.
But more often than not, it appears in Thunar as unmounted & fails to call 
Shotwell.

I would be pleased to provide further details or run any tests.

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-10-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: thunar (Ubuntu)
   Status: New => Confirmed

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-09-23 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1210898

** Tags added: iso-testing

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] Re: Thunar does not automatically mount removable drives and media

2013-08-10 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu Package testing tracker.

A list of all reports related to this bug can be found here:
http://packages.qa.ubuntu.com/qatracker/reports/bugs/1210898

** Tags added: package-qa-testing

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

Title:
  Thunar does not automatically mount removable drives and media

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

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


[Bug 1210898] [NEW] Thunar does not automatically mount removable drives and media

2013-08-10 Thread Jack Fromm
Public bug reported:

After inserting an external drive, flash drive or data CD/DVD, the
drives show up unmounted in the side pane even though in Volume Manager
the preferences have been set to automount and display contents.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: thunar 1.6.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.10.0-6.17-generic 3.10.3
Uname: Linux 3.10.0-6-generic x86_64
ApportVersion: 2.12-0ubuntu3
Architecture: amd64
Date: Sat Aug 10 20:16:41 2013
InstallationDate: Installed on 2013-08-08 (2 days ago)
InstallationMedia: Xubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130804)
MarkForUpload: True
SourcePackage: thunar
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug saucy

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

Title:
  Thunar does not automatically mount removable drives and media

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

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