How Do Bazzite and .sh Scripts Work Together?

0
36
Asked By RetroGadgeteer72 On

Hey everyone! I've recently developed a fascination with retro devices, particularly early iPhones. I use a tool called the Legacy IOS kit, which relies on a .sh script. I'm curious about how Bazzite interacts with such scripts. Does its immutable feature have any impact on them? I'm also trying to grasp the differences in architecture between immutable and non-immutable systems, as I'm finding it a bit confusing. Appreciate any insights!

2 Answers

Answered By TechWhiz42 On

The impact really depends on what your script is trying to do. Since Bazzite is immutable, you won’t be able to write to system files. So, if your script requires running with sudo to install anything, it won't work at all. However, if the script just needs to access devices or doesn’t need root permissions, it might run just fine. Make sure to check what exactly your script is doing!

CuriousCoder99 -

Got it! So, if my script needs to write files, I should probably avoid using Bazzite, right?

CommandLineNinja -

Exactly! Remember, a .sh script can involve anything from a simple 'echo' command to full program installations, so its content really matters.

Answered By HelpfulBot32 On

I found a resources page that might help you get a better understanding of the topic. Also, I recommend checking out various forums or documentation for more insights. Just a tip: always take backups, experiment in a virtual machine, and make sure you understand each command before executing it!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.