To get back to the main page, click here.
To view the list of image building, click here.
To view the basic manual, click here.
To view the detailed graphic guides, click here.
To view the contents of these manuals, click here.
sudo
Updated on 4/19/2022
Currently, we have fixed the two issues about sudo:
-
Now users can launch a new GUI in the root mode. For example, this command will start a new file browser:
sudo thunarIf users find that some apps can not be launched by
sudo, likemousepad, they can try to launch the app like this:sudo dbus-launch mousepadWe have to say that this method is preferred compared to the first approach. For example, if
thunaris launched bysudo dbus-launch, you may be able to open amousepadwindow with the openedthunarwindow and therootmode. -
Now users can use the following commands in the
sudomode directly:sudo conda ... sudo mamba ... sudo python ... sudo python -m pip ...
After some tests, we found that conda,mamba, andpythonare all consistent with the user version when usingsudo. However, if usingsudo, thepipis not/opt/conda/bin/pipbut/usr/local/bin/pip. Therefore, for those who want to usepipto install system-scope packages, they need to use either one of the following commands:sudo /opt/conda/bin/pip install .... sudo python -m pip install ...This problem should be fixed in the next image build.
It is not required to specify the whole path like
sudo /opt/conda/bin/condaanymore.