fedora 开机自动登录及脚本自动运行

1.fedora 开机自动登录
使用root,
编辑/etc/gdm/custom.conf ,
末尾加入如下内容:

[daemon]
TimedLoginEnable=true
TimedLogin=yourusername 要自动登录的用户名
TimedLoginDelay=0

2.脚本自动运行
将要运行的脚本放入/etc/profile.d/,
也可以在此目录下新建脚本调用其他位置的脚本,如:
/etc/profile.d/load-xxx.sh
内容:
#!/bin/sh
source sou-xxx.sh

你可能感兴趣的:(fedora)