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

Linux

47527 readers
1529 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 7 months ago* (last edited 7 months ago) by potentiallynotfelix@iusearchlinux.fyi to c/linux@lemmy.ml
 

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
[–] kbal@kbin.melroy.org 8 points 7 months ago (1 children)

localectl set-locale LANG=en_US.UTF-8

[–] potentiallynotfelix@iusearchlinux.fyi 1 points 7 months ago (2 children)

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

[–] potentiallynotfelix@iusearchlinux.fyi -1 points 7 months ago (1 children)

Nevermind somehow it was set back

[–] backhdlp@iusearchlinux.fyi 5 points 7 months ago (1 children)

This has solved it ultimately.

[–] mvirts@lemmy.world 4 points 7 months ago (1 children)

Why no export, bashrc, or /etc ?

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