this post was submitted on 08 Aug 2024
3 points (100.0% liked)

raspberrypi

3180 readers
1 users here now

Community about the single-board computers, micro-controllers and related projects.

https://www.raspberrypi.com/

Other RaspberryPi communities on Lemmy

founded 4 years ago
MODERATORS
 

...at the expense of breaking some commands here and there. Why is that? How come env values can have this much impact in performance "for free"? This MUST have some caveats, right?

Thanks in advance.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 month ago

it will make pretty much everything faster...

This is just not true. Environment variables are only going to be used by programs that are looking for them specifically. Putting them in your .bashrc as you have done is going to make them only available in contexts where that file is sourced, e.g. interactive command line environments.

...at the expense of breaking some commands here and there...

You probably experience this because you used a single > to overwrite your .bashrc entirely with that single command. Anything that was in that file before is now gone. Using >> will append rather than overwrite.

That variable in particular is probably one used by mesa, a 3D graphics library. It's only going to be used by programs that use the mesa library. I don't know what it does exactly, but there will be documentation somewhere.