xorg.conf
文件里加入如下内容来更改此默认设置。如果该文件不存在,您可使用文本编辑器手动创建它,/etc/X11/xorg.conf
,之后Xorg就会使用那个设置。
Section "ServerFlags" Option "DontZap" "false" EndSection
%post grep -q -s DontZap /etc/X11/xorg.conf append=$? if [ $append -ne 0 ]; then cat >> /etc/X11/xorg.conf << EOF Section "ServerFlags" Option "DontZap" "false" EndSection EOF fi %end