if i run ls command it will show me the junk output what is
problem and how to resolve it
Answer Posted / maneeshkumar
Check the locale settings.
For finding the current locale settings.
# locale
For displaying all avaialable locales.
# locale –a
C
POSIX
en_CA
en_CA.ISO8859-1
en_CA.UTF-8
en_US
en_US.ISO8859-1
en_US.ISO8859-15
en_US.ISO8859-15@euro
en_US.UTF-8
es
es_MX
es_MX.ISO8859-1
es_MX.UTF-8
fr
fr_CA
fr_CA.ISO8859-1
fr_CA.UTF-8
iso_8859_1
Setting the locales.
# LC_ALL=en_US.UTF-8
# export LC_ALL
# locale
LANG=
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_ALL=en_US.UTF-8
#
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the fastest way to enter a series of commands from the command-line?
How do you run command every time a file is modified?
What does chmod 644 do?
What does chmod 777 do?
How do I stress test my cpu?
How do I get to root in linux?
Write a command that will do the following: -look for all files in the current and subsequent directories with an extension c,v -strip the,v from the result (you can use sed command) -use the result and use a grep command to search for all occurrences of the word orange in the files.
How do you create a text file in linux?
How cp command works in linux?
Why is it called bash?
How do you clear the screen in linux?
What does curl command do in linux?
What is makefile in unix?
What are grep patterns called?
What is the makefile in c?