“FAQ:Linux”的版本间差异
跳到导航
跳到搜索
无编辑摘要 |
无编辑摘要 |
||
第12行: | 第12行: | ||
AutomaticLoginEnable=True | AutomaticLoginEnable=True | ||
AutomaticLogin=root | AutomaticLogin=root | ||
</syntaxhighlight> | |||
== 删除xxx以外的文件 == | |||
用通道指令(参见[https://blog.csdn.net/taiyang1987912/article/details/41488395]): | |||
<syntaxhighlight lang="bash"> | |||
yes | rm -rf `ls | grep -v ".well-known "` | |||
</syntaxhighlight> | </syntaxhighlight> |
2020年10月14日 (三) 03:06的版本
关于“sudo”
关于“systemd”
默认Root登录
vim /etc/gdm/custom.conf
[daemon]
AutomaticLoginEnable=True
AutomaticLogin=root
删除xxx以外的文件
用通道指令(参见[1]):
yes | rm -rf `ls | grep -v ".well-known "`