- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: default ecoding and character set
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:07 AM
03-02-2006 01:07 AM
10 point to win!
I need to know the defaut ecoding type and the character set of my server HP-UX 11.11.
How can see info about these topics and about convertions between ecoding types, characters set?
TIA,
Art
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:10 AM
03-02-2006 01:10 AM
Re: default ecoding and character set
# locale
Start with the manpages for 'locale(1)'. Follow the "See Also" manpage suggestions at the end, too :-)
Regards!
...JRF...
- Tags:
- locale
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:11 AM
03-02-2006 01:11 AM
Re: default ecoding and character set
#locale LC_CTYPE
should give you default char set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:14 AM
03-02-2006 01:14 AM
Re: default ecoding and character set
You can find more information from # man locale.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:18 AM
03-02-2006 01:18 AM
Re: default ecoding and character set
this is the output of locale -A on my server:
locale -A
32-bit locales are:
C
POSIX
C.iso88591
C.iso885915
C.utf8
univ.utf8
64-bit locales are:
C
POSIX
C.iso88591
C.iso885915
C.utf8
univ.utf8
what are teh enconding type and the character set?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:29 AM
03-02-2006 01:29 AM
Re: default ecoding and character set
You are having ISO 8859-1 encoding.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 01:49 AM
03-02-2006 01:49 AM
SolutionIf you simply do 'locale' you will see yuor current values. For instance, my LC_TIME is:
LC_TIME="C"
If I do 'locale -a' I will see all of the locales available for choice. For instance:
# date
Thu Mar 2 09:44:53 EST 2006
# LC_TIME=de_DE.iso88591 date
Do., 02. März 2006, 09:45:06
In the second command I set the locale (temporarily) to a German one since it was one choice available to me.
As for character sets, you need to look at the other manpages I mentioned, such as 'localedef(1M), 'charmap(4)' and 'environ(5)' among others.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2006 03:00 AM
03-02-2006 03:00 AM