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 thunar
If users find that some apps can not be launched by
sudo
, likemousepad
, they can try to launch the app like this:sudo dbus-launch mousepad
We have to say that this method is preferred compared to the first approach. For example, if
thunar
is launched bysudo dbus-launch
, you may be able to open amousepad
window with the openedthunar
window and theroot
mode. -
Now users can use the following commands in the
sudo
mode directly:sudo conda ... sudo mamba ... sudo python ... sudo python -m pip ...
After some tests, we found that
conda
,mamba
, andpython
are all consistent with the user version when usingsudo
. However, if usingsudo
, thepip
is not/opt/conda/bin/pip
but/usr/local/bin/pip
. Therefore, for those who want to usepip
to 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/conda
anymore.