export LD_PRELOAD=/usr/lib/libtsocks.so
It’s ok that I can export in this way, but how can I make it permanent? I want LD_PRELOAD to still be changed after a reboot. I’m using Ubuntu and Fedora
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Ordinarily, you’d put your “export” line into whatever shell startup file is appropriate: .profile, .bash_profile, .zprofile, whatever, in your $HOME directory.
If you want to make it permanent for every user, the various shells usually have system-wide config files in /etc/: /etc/profile exists on this linux box, but do read the man page to figure out which user-specific and which system-wide file to put it in.
Method 2
Most distributions also have an /etc/profile.d/ directory containing a group of .sh and .csh files. Creating a new file in this directory tends to keep items better organized and keeps /etc/profile from getting cluttered.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0