this post was submitted on 26 Feb 2024
21 points (92.0% liked)

Linux

47231 readers
870 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
21
$LANG variable (iusearchlinux.fyi)
submitted 6 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

How do i set the $LANG variable without using export? I have set my locale.conf to LANG=en_US.UTF-8 but LANG is still always set to en_US which is not valid. I'd prefer not to use .bashrc or /etc/. Thanks in advance!

all 9 comments
sorted by: hot top controversial new old
[–] [email protected] 8 points 6 months ago (1 children)

localectl set-locale LANG=en_US.UTF-8

[–] [email protected] 1 points 6 months ago (2 children)

I've solved it by running g eselect locale set x with x being the locale. Thanks for your contribution.

[–] [email protected] -1 points 6 months ago (1 children)

Nevermind somehow it was set back

[–] [email protected] 1 points 6 months ago

It is OK 👍

[–] [email protected] 5 points 6 months ago (1 children)
[–] [email protected] 1 points 6 months ago

This has solved it ultimately.

[–] [email protected] 4 points 6 months ago (1 children)

Why no export, bashrc, or /etc ?

[–] [email protected] 2 points 6 months ago

If something else is setting it as en_US, then I don't want a conflict.