博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
perl: warning: Falling back to the standard locale ("C").
阅读量:6487 次
发布时间:2019-06-24

本文共 1085 字,大约阅读时间需要 3 分钟。

/********************************************************************************** *          perl: warning: Falling back to the standard locale ("C"). * 说明: *     使用debootstrap的时候,遇到这个问题,记录解决方法。 *  *                                          2017-2-18 深圳 南山平山村 曾剑锋                              *********************************************************************************/一、参考文档:    1. How to fix a locale setting warning from Perl?        http://stackoverflow.com/questions/2499794/how-to-fix-a-locale-setting-warning-from-perl二、原因:If you are creating a rootfs using debootstrap you will need to generate the locales. You can do this by running:    sudo locale-gen en_US.UTF-8This tip comes from, https://help.ubuntu.com/community/XenOn Debian you may need to do $ echo en_US UTF-8 >> /etc/locale.gen first.三、处理方法:    root@zengjf:# echo en_US UTF-8 >> /etc/locale.gen    root@zengjf:# locale-gen en_US.UTF-8    Generating locales (this might take a while)...      en_US.UTF-8... done      Generation complete.    root@zengjf:#

 

转载于:https://www.cnblogs.com/zengjfgit/p/6412262.html

你可能感兴趣的文章
js if语句多个条件判断
查看>>
AVPacketList结构体和AVPacketQueue结构体
查看>>
PHP操作redis详细讲解
查看>>
Android学习笔记(一)
查看>>
Java 提高篇(一)
查看>>
虚拟化学习笔记
查看>>
浏览器的兼容性问题
查看>>
我的友情链接
查看>>
今天真的搬走了
查看>>
PC散热风扇之研究一:风扇种类介绍
查看>>
关于Session和Cookie简单实例
查看>>
App框架实现———dagger2
查看>>
zabbix 微信报警
查看>>
通过SQL Server 2008数据库复制实现数据库同步备份
查看>>
HttpClient做接口测试时自定义参数长度
查看>>
PyCharm2017激活方法
查看>>
正则表达式
查看>>
Exchange企业实战技巧(27)邮件中使用数字签名和邮件加密功能
查看>>
mysql-5.6.27源码安装及错误解决办法
查看>>
Shell 函数、数组与正则表达式
查看>>