Home > Article > System Tutorial > What should you do after completing the Debian 6.0 installation?
Debian-6.0.0-i386 is installed by default. After installation:
1. Switch between graphical interface and command line
Initially we can only log in to the default desktop (gnome) as the ordinary user we created.
Switch from the graphical interface to the command line: CTRL ALT SHIFT F1
Switch from command line to graphical interface: ALT F7
2. Add the ordinary user we created to sudoers (allow the use of sudo commands)
vi /etc/sudoers
You will see a default setting:
root ALL=(ALL) ALL
All you need to do is to follow the same example and add a setting below so that your ordinary users can act like root.
3. Allow root user to log in to the graphical interface
vi /etc/pam.d/gdm3
Comment out the following line (add a "#" in front):
auth required pam_succeed_if.so user != root quiet_success
Then
vi /etc/gdm3/daemon.conf
Add a line below "[security]":
AllowRoot=true
4. Install apt-spy and find the fastest apt source
apt-get install apt-spy
apt-spy update
apt-spy -d stable -a Asia
5. The system starts from the command line by default
First, we need to install sysv-rc-conf, which is a powerful system configuration tool:
apt-get update
apt-get install sysv-rc-conf
Then, execute sysv-rc-conf
Find the gdm item:
Change it to this:
After reboot, the system will start from the command line by default.
The above is the detailed content of What should you do after completing the Debian 6.0 installation?. For more information, please follow other related articles on the PHP Chinese website!