Nome del volume errato per il volume sshfs nel Finder anche con l'opzione volname

9

Sto usando sshfs @2.5 e osxfuse @ 2.6.4 installato tramite MacPorts 2.2.1 sul mio MacBook Pro Retina Late 2013 che esegue OS X Mavericks 10.9.2. Quando si emette il seguente comando:

sshfs -ovolname=Z user@host:/somewhere/on/the/Y /Z

Il montaggio è eseguito correttamente. Usando il terminale, tutto funziona come previsto. Tuttavia, finder visualizza il nome del volume come Y , come se la presenza dell'opzione volname= non avesse importanza. Qualcun altro l'ha incontrato?

    
posta Nicolas De Jay 07.05.2014 - 19:44
fonte

3 risposte

7

Le opzioni vanno alla fine del comando, quindi nel tuo caso:

sshfs user@host:/somewhere/on/the/Y /Z -o volname=Z

Ho appena avuto un problema simile e questo lo risolve per me!

    
risposta data 16.01.2015 - 19:09
fonte
2

Hai bisogno di uno spazio tra -o e volname :

sshfs -o volname=Z user@host:/somewhere/on/the/Y /Z
        ^
    
risposta data 07.05.2014 - 20:53
fonte
2

Lottando con questo problema da solo, ho scoperto che avevo bisogno di aggiungere l'opzione -o local :

sshfs user@host:/somewhere/on/the/Y /Z -o volname=Z -o local

Attenzione, i gestori di OSXFUSE sconsigliano questa opzione , tuttavia, poiché potrebbe invocare indesiderati effetti collaterali:

This option marks the volume being mounted as "local". By default, osxfuse volumes are marked as "nonlocal", which technically isn't necessarily the same as a "server" or "network" volume, but is treated as such by the Finder in some cases. For example, the Finder may not show "connected servers" on the Desktop or in the sidebar in some cases. If you use this option, you can get around this "limitation". However, wait! Don't be too tempted and think local is a magic pill that will solve all your problems. In fact, it may mess things up more than you realize. The operating system can be more aggressive in dealing with "local" volumes (a .Trashes. directory will be created, for one). You could run into mysterious problems with Disk Arbitration and other system components. I don't know (and possibly can't know--Mac OS X isn't all open source!) the side effects of using this option. Therefore, treat this as experimental and use with caution. Moreover, please do not file bug reports that involve this option--reproduce your issue without this option and then file a bug report.

    
risposta data 07.06.2016 - 00:21
fonte

Leggi altre domande sui tag