Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在centos linux上创建带有阿拉伯字符的文件夹..
例如当我输入
mkdir الاختبار
正在工作,但是当我尝试使用 ls 查看文件夹时,它变成了问号
我有另一个centos,但没有这个问题,已经尝试安装阿拉伯语
yum install "Arabic Support"
仍然不适合我,也尝试安装字体
yum install dejavu-sans-mono-fonts
有人知道这个问题吗?
将您的设置locale为使用 UTF-8 的内容。默认的“C”语言环境不支持任何非 ASCII 字符。试试这个例如:
locale
export LANG=en_US.utf8
或者,您可以强制ls打印文件名而不进行修改(假设您的终端支持 UTF-8,这将起作用):
ls
ls --show-control-chars