Ubuntu 16.04 设置 root 账号登录

  1. 设置root密码
  2. 更改配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
##STEP1
##setting root password:
$ sudo passwd root

##STEP2
##Edit
$ sudo gedit /etc/lightdm/lightdm.conf
############
[Seat:*]
autologin-user=root
############

##STEP3
##If Prompt Error found
$ gedit /root/.profile
############
#用#注释mesg n
#添加
tty -s && mesg n # change’mesg n’ to‘tty –s && mesg n’
############

##STEP4
##If Audio no function
$ gedit /root/.profile
############
#添加
pulseaudio --start --log-target=syslog
############