亂碼如圖:
解決方案:
cygwin左上角->options->text->
locale->c
character->gbk
+——+華麗的分割線
資料夾及檔案顯示亂碼錯誤解決方案:
cygwin64\etc\skel
——————————————————
.bash_profile檔案末尾新增
——————————————————
export lc_all=zh_cn.gbk
export lc_ctype=zh_cn.gbk
export lang=zh_cn.gbk
export xmodifiers=@im=chinput3
stty cs8 -istrip
stty pass8
export lesscharset=latin1
——————————————————
.inputrc中去掉以下的**前的#(注釋)
——————————————————
set meta-flag on
set convert-meta off
set input-meta on
set output-meta on
——————————————————
.bashrc檔案中新增
——————————————————
alias ls='ls --color --show-control-chars'
——————————————————
Cygwin中文亂碼問題
直接執行 alias ls ls color show control chars time style long iso 或者把上面的內容加到 etc profile中重啟cygwin即可。為了使使用更方便,推薦增加如下配置資訊 1.編輯使用者home目錄下的檔案.inputc,去除以下幾行的注釋...
cygwin中文亂碼解決
1,在.bashrc profile末尾新增以下內容 讓ls和dir命令顯示中文和顏色 alias ls ls show control chars color alias dir dir n color 設定為中文環境,使提示成為中文 export lang zh cn.gbk 輸出為中文編碼 e...
Cygwin的中文支援(解決亂碼)
在cygwin home資料夾下 將下面的注釋去掉 bash profile 讓ls和dir命令顯示中文和顏色 alias ls ls show control chars color alias dir dir n color 設定為中文環境,使提示成為中文 exportlang zh cn.gb...