this post was submitted on 02 Jan 2024
27 points (93.5% liked)
Linux
47997 readers
934 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Most cases will be solved with these settings (but some applications may need additional tweeks):
ja_JP.UTF-8
locale, or~/.config/fontconfig/fonts.conf
I was trying to do that but I'm unsure what to edit to do that, since most tutorials are using either a Debian based or Arch distro.
I was using a similar guide, and it also talked about the locale.gen, but that file was never to be found, I just searched a bit more into that and this popped up. So it seems Fedora handles things differently, but now I'm unsure what commands to execute since I'm not sure the ones in that thread are also valid for me.
You can use
localectl
to change the locale on Fedora. Here's what you need to do:ja_JP.UTF-8
should be in the output oflocalectl list-locales
.sudo dnf install langpacks-ja
(I'm not 100 % sure about this and I don't have a Fedora system to test it on.)sudo localectl set-locale LANG=ja_JP.UTF-8
This will (probably) change everything to Japanese – texts in menus, error messages in the terminal, and also the font rendering. This answer on Stack Overflow suggests to do something with your
fonts.conf
. This way your UI would be in English (or your preferred language) and kanji would render as the Japanese variants.