How to solve garbled Chinese file names under centos

王林
Release: 2020-03-30 14:13:40
Original
3109 people have browsed it

How to solve garbled Chinese file names under centos

Problem: Chinese file names under

centos are garbled.

Cause:

The default file name encoding in Linux is UTF8. Due to inconsistent encoding, the file name is garbled.

(Recommended tutorial: centos tutorial)

Solution:

1. Install convmv

yum install convmv
Copy after login

2. Batch recursive modification File name

convmv -f gbk -t utf-8 -r --notest /home/要操作的文件
Copy after login

Common parameters introduction:

-r Recursively process subfolders

-notest Really perform operations. By default, no real operations are performed on files

–list displays all supported encodings

–unescap can be escaped, such as changing it to a space

-i Interactive mode (ask for each conversion to prevent misoperation)

Recommended related video tutorials: linux video tutorial

The above is the detailed content of How to solve garbled Chinese file names under centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!