mount non funziona per utf-8

1

Ho impostato la locale:

$locale
LANG="en_GB.UTF-8"
LC_COLLATE="en_GB.UTF-8"
LC_CTYPE="en_GB.UTF-8"
LC_MESSAGES="en_GB.UTF-8"
LC_MONETARY="en_GB.UTF-8"
LC_NUMERIC="en_GB.UTF-8"
LC_TIME="en_GB.UTF-8"
LC_ALL=

Tuttavia, mentre questa montatura funziona:

$ mount -t smbfs "//Mercury/Echo" "/Volumes/Echo"
Password for Mercury:

Questa montatura non funziona:

$ mount -t smbfs "//Προκρούστης/DiningRoom" "/Volumes/DiningRoom"
mount_smbfs: URL parsing failed, please correct the URL and try again: Invalid argument

Qualche suggerimento su come risolvere questo problema?

    
posta Peter Brooks 04.12.2017 - 06:49
fonte

1 risposta

2

Codifica URL il nome del server:

Προκρούστης > %CE%A0%CF%81%CE%BF%CE%BA%CF%81%CE%BF%CF%8D%CF%83%CF%84%CE%B7%CF%82

Le virgolette non sono richieste qui, quindi il seguente dovrebbe funzionare:

mount -t smbfs //%CE%A0%CF%81%CE%BF%CE%BA%CF%81%CE%BF%CF%8D%CF%83%CF%84%CE%B7%CF%82/DiningRoom /Volumes/DiningRoom
    
risposta data 04.12.2017 - 07:38
fonte

Leggi altre domande sui tag