|
Pretty sure Orange OS is basically Linux so when you want to do something as root you use sudo. For instance if you wanted to do something only root can do you place sudo before the command. (SuperUser Do)
If for example you wanted to change the hostname of you OPI you would first see what thw current name is,
hostname
And you will see what your PI is named. Now to change it to "newname" you use sudo
sudo hostname newname
The system will ask you for your passward and you are done.
Using sudo instead of working in a root terminal protects one from doing something really bad.
|
|