Change your default locale on Ubuntu
Answer:
To change your Ubuntu's default locale, what you need is edit the file /etc/default/locale
LANG="en_US.UTF-8"
Add your choice of locale like the above.
Restart your computer and take effect.
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Change your default locale on Ubuntu
Answer:
To change your Ubuntu's default locale, what you need is edit the file /etc/default/locale
LANG="en_US.UTF-8"
Add your choice of locale like the above.
Restart your computer and take effect.
Changing keyboard layout on Ubuntu
Answer:
If you have set a wrong keyboard layout, you can change it using the following command:
# dpkg-reconfigure console-setup
Follow the instructions and change it.
Install Mercurial in Ubuntu
Answer:
Mercurial is a scalable distributed version control system, to install it in Ubuntu, type
# sudo apt-get install mercurial
That's it.
Clone an existing project using Mercurial
Answer:
To clone an existing Mercurial project, use the following simple command:
# hg clone https://bitbucket.org/ellislab/codeigniter
That's all.
Install Git in Mac using MacPort
Answer:
To install Git in Mac using MacPort, following the method below:
1. Search if Git is available
# port search git
2. You will found the package named "git-core", go ahead to install it
# sudo port install git-core
That's all.