How to install locale for Cygwin?
I've installed Cygwin on window10. The language installed on window in French Canadian.
When I right-click on title bar of Cygwin window and choose Options..., I got this below.
On Window7, cygwin is also installed and the language installed of window is French Canadian too.
On my Cygwin installation on Window 7, I have
How do I install locale en_US ?
windows-7 windows-10 cygwin locale mintty
add a comment |
I've installed Cygwin on window10. The language installed on window in French Canadian.
When I right-click on title bar of Cygwin window and choose Options..., I got this below.
On Window7, cygwin is also installed and the language installed of window is French Canadian too.
On my Cygwin installation on Window 7, I have
How do I install locale en_US ?
windows-7 windows-10 cygwin locale mintty
add a comment |
I've installed Cygwin on window10. The language installed on window in French Canadian.
When I right-click on title bar of Cygwin window and choose Options..., I got this below.
On Window7, cygwin is also installed and the language installed of window is French Canadian too.
On my Cygwin installation on Window 7, I have
How do I install locale en_US ?
windows-7 windows-10 cygwin locale mintty
I've installed Cygwin on window10. The language installed on window in French Canadian.
When I right-click on title bar of Cygwin window and choose Options..., I got this below.
On Window7, cygwin is also installed and the language installed of window is French Canadian too.
On my Cygwin installation on Window 7, I have
How do I install locale en_US ?
windows-7 windows-10 cygwin locale mintty
windows-7 windows-10 cygwin locale mintty
edited Feb 21 at 20:37
Biswapriyo
3,33141344
3,33141344
asked Feb 21 at 17:01
Luc MLuc M
167414
167414
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
That are the locale coming from Windows.
You can set a different locale in you shell startup scripts
$ grep LANG .bashrc
export LANG=en_US.UTF-8
$ grep LANG .bash_profile
export LANG=en_US.UTF-8
may beecho 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge
– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1408229%2fhow-to-install-locale-for-cygwin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
That are the locale coming from Windows.
You can set a different locale in you shell startup scripts
$ grep LANG .bashrc
export LANG=en_US.UTF-8
$ grep LANG .bash_profile
export LANG=en_US.UTF-8
may beecho 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge
– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
add a comment |
That are the locale coming from Windows.
You can set a different locale in you shell startup scripts
$ grep LANG .bashrc
export LANG=en_US.UTF-8
$ grep LANG .bash_profile
export LANG=en_US.UTF-8
may beecho 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge
– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
add a comment |
That are the locale coming from Windows.
You can set a different locale in you shell startup scripts
$ grep LANG .bashrc
export LANG=en_US.UTF-8
$ grep LANG .bash_profile
export LANG=en_US.UTF-8
That are the locale coming from Windows.
You can set a different locale in you shell startup scripts
$ grep LANG .bashrc
export LANG=en_US.UTF-8
$ grep LANG .bash_profile
export LANG=en_US.UTF-8
answered Feb 21 at 17:45
matzerimatzeri
1,422257
1,422257
may beecho 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge
– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
add a comment |
may beecho 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge
– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
may be
echo 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge– matzeri
Feb 22 at 7:57
may be
echo 'export LANG=en_US.UTF-8' >> ~/.bashrc
as otherwise you will destroy the current content. If he does not know what grep is doing we are very low on the Cygwin knowledge– matzeri
Feb 22 at 7:57
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
Oh Thanks. I didn't realize that it was coming from Windows. I did try to modify the locale in bash... In cygwin, I'm calling sqlplus, a Windows programs and messages are coming in French, You didn't answer directly the question but it helped me to understand what was happening. Thanks
– Luc M
Feb 28 at 14:45
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1408229%2fhow-to-install-locale-for-cygwin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown