Post

How to modify the environment of a running process in a desktop or server environment

If your environment initialization files are incorrect, your environment can become misconfigured. In such cases, how can you fix the environment of an existing process—especially one that doesn’t have a typical interface, like a shell process, for manual changes? A GDB script can help you.

Let’s walk through how to manipulate the PATH environment variable of an existing process. Consider a scenario where a process is created using the following script:,

image

Run it and get its output flushing,

image

So how can we fix it on the fly? Let’s write a gdb script like this,

image

run it at another terminal,

image

check the output from the user’s script terminal,

image

Cheers, the broken environment was fixed.

This post is licensed under CC BY 4.0 by the author.