|
如果不适用液晶屏显示内容,启动图形界面会占用一定的内存,9G45的图形界面是Xorg GPE,从启动界面就可以看出:========================================================
Running ntpdate to synchronize clockError : Temporary failure in name resolution
.
Starting GPE display manager: gpe-dm
.-------.
| | .-.
| | |-----.-----.-----.| | .----..-----.-----.
| | | __ | ---'| '--.| .-'| | |
| | | | | |--- || --'| | | ' | | | |
'---'---'--'--'--. |-----''----''--' '-----'-'-'-'
-' |
'---'
The Angstrom Distribution at91sam ttyS0
========================================================
那么如何禁用图形界面的显示呢?一般情况下图形界面的启动等级是5,所以可以到rc5.d下找到相关配置文件即可,9G45里面是S99gpe-dm,它链接到 /etc/init.d/gpe-dm,所以我们修改一下这个文件。
[mw_shl_code=bash,true]vi /etc/init.d/gpe-dm [/mw_shl_code]
注释掉gpe-dm的启动:
[mw_shl_code=bash,true]case "$1" in
start)
#echo "Starting GPE display manager: gpe-dm"
#/usr/bin/gpe-dm
;;[/mw_shl_code]
同步一下,再重启就可以了
[mw_shl_code=bash,true]sync
reboot[/mw_shl_code]
|
|