mount no funciona para utf-8

1

He establecido la configuración regional:

$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=

Sin embargo, mientras este montaje funciona:

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

Este montaje falla:

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

¿Alguna sugerencia sobre cómo solucionar este problema?

    
pregunta Peter Brooks 04.12.2017 - 06:49

1 respuesta

2

codificación de URL el nombre del servidor:

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

Las citas no son necesarias aquí, por lo que debería funcionar lo siguiente:

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
    
respondido por el klanomath 04.12.2017 - 07:38

Lea otras preguntas en las etiquetas