gema-arta / transmisson-remote-gui

Automatically exported from code.google.com/p/transmisson-remote-gui
0 stars 0 forks source link

Open containing folder does not work under Linux #355

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Tools -> Options -> Paths
/data=/mnt
OK
2. Torrent Right Click -> Open Containing Folder

What is the expected output? What do you see instead?
Error: Unuble to execute "/mnt/Films"

What version of the product are you using? On what operating system?
2.2 , 64 bit, Ubuntu 10.04 64 bit

Please provide any additional information below.

Original issue reported on code.google.com by arseniy....@gmail.com on 21 Nov 2010 at 8:17

GoogleCodeExporter commented 9 years ago
Do you have the following programs on your system?
- kioclient
- kfmclient

Where they are located?

Original comment by j...@cp-lab.com on 3 Apr 2011 at 10:07

GoogleCodeExporter commented 9 years ago
Hi , sorry for my poor english ...

I have the same issue whith transgui 2.1.1

I'm running xubuntu lucid

I'm connect to transmission 2.12(11412) on a french nas : freebox
I have no root acces to the freebox , I cannot configure it but ...

I see you tell about kioclient/kfmclient
 but it's a part of kde and there is so much dependance

I use gvfs-mount to acces to the nas and it work well

There is no space in the path directory and the path is not an hidden directory.

It is possible to know what's the command line it use to open a file/folder ?

If it use something like :
kfmclient openurl file:///blabla/blabla
a simple script can solve it but I made this :
my two scripts : kfmclient and kioclient install in /usr/bin don't work :

#!/bin/bash
exo-open "$2" && exit 0 || exit 1

same issue : cannot execute "/blabla/blibli"

Thanks for your great job

Original comment by windaube...@gmail.com on 10 Aug 2011 at 7:35

GoogleCodeExporter commented 9 years ago
To open files/folders/links, transgui uses "gnome-open" on Gnome and 
"/usr/bin/kioclient exec" or "kfmclient exec" in other cases.

If you create a compatile "/usr/bin/kioclient" script, it should be executed.

Or maybe your desktop is detected as Gnome. Do you have the 
GNOME_DESKTOP_SESSION_ID env variable or "DESKTOP_SESSION=gnome"? If yes, then 
you need to create the gnome-open script.

Original comment by j...@cp-lab.com on 10 Aug 2011 at 10:07

GoogleCodeExporter commented 9 years ago
Thanks a lot for this

I have gnome-open , and made 2 scripts in /usr/bin kioclient and kfmclient but 
it's not the problem

You solve my problem : 

GDMSESSION=xubuntu

I don't have GNOME_DESKTOP_SESSION_ID or DESKTOP_SESSION

I create a script like this :

#!/bin/bash
export DESKTOP_SESSION=gnome
transgui
exit $?

Now it work well , thanks a lot !!!

Original comment by windaube...@gmail.com on 10 Aug 2011 at 11:26

GoogleCodeExporter commented 9 years ago
Sorry I have DESKTOP_SESSION=xubuntu but whith export DESKTOP_SESSION=gnome it 
solve my problem

Thanks a lot

Original comment by windaube...@gmail.com on 10 Aug 2011 at 11:28

GoogleCodeExporter commented 9 years ago
My script :) thanks a lot

Original comment by windaube...@gmail.com on 10 Aug 2011 at 11:40

Attachments:

GoogleCodeExporter commented 9 years ago
I'll fix this problem in the next release.

Original comment by j...@cp-lab.com on 10 Aug 2011 at 12:56

GoogleCodeExporter commented 9 years ago
Fixed in r633.

Original comment by j...@cp-lab.com on 27 Oct 2011 at 10:25