SL (Sabayon Linux) does not use the APT package manager (the apt-get command) and the Synaptic GUI. The package manager is different to the one used in Ubuntu. You need to do some reading on the package managers (Entropy and Portage, but stick to Entropy) and the commands available for SL; see the sticky thread
Resources For You.
As far as passwords are concerned, if you're using the LiveDVD then the passwords are given in one of the SL Wiki pages referenced in the above-mentioned Resources For You thread; they are:
Root User Account
Username: root
Password: root
Configured Normal User Account
Username: sabayonuser
Password: sabayonuser
N.B. Do
not log-in to the desktop environment (e.g. KDE or GNOME) as the root user.
Also, although the sudo command works in all versions of Linux (providing it has been enabled -- see the SL Wiki), it is not necessary to use it. It is simpler to use the su command, become the root user and do what you need to do and then exit back to your normal user account. For example:
- Code: Select all
fitzcarraldo@sabayonx86 ~ $ whoami
fitzcarraldo
fitzcarraldo@sabayonx86 ~ $ su
Password:
sabayonx86 fitzcarraldo # whoami
root
sabayonx86 fitzcarraldo # exit
exit
fitzcarraldo@sabayonx86 ~ $ whoami
fitzcarraldo
fitzcarraldo@sabayonx86 ~ $
By the way, the "su" in the commands
sudo and
su means "substitute user", not "super user"; see
The su Command. You can use the su and sudo commands to switch to
any user, not just the root user.
What some people call the "super user" is the root account user, equivalent to the Administrator in Microsoft Windows.