this post was submitted on 26 Jun 2025
91 points (96.0% liked)

Linux

8120 readers
558 users here now

A community for everything relating to the GNU/Linux operating system

Also check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
 

For me, my high bar that I have yet to beat, was the time I pivoted the running OS (ubuntu) into RAM over SSH so I could unmount and image the boot drive without rebooting and loading a live USB (Which would have required a ticket with my provider to enable IPMI)

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Samueru_sama@programming.dev 2 points 1 day ago (1 children)

If you have binary that is hardcoded to look for some files/libs in a certain path, you can overwrite that path with sed directly lol. You just need to make sure to keep the string length the same.

sed -i s|/usr|././|g will change /usr for the current working dir for example.

[โ€“] mvirts@lemmy.world 1 points 8 hours ago

Would you believe me if I told you this is how conda works? :P