相关命令
Linux setleds命令用来设定键盘上方三个 LED 的状态。在 Linux 中,每一个虚拟主控台都有独立的设定。
Windows开机后Numlock灯是亮着的,使用数字键输入数字比较方便,所以通常都希望开机时就开启数字键盘
如果希望CentOS操作系统开启后Num Lock灯也亮着,需要编辑/etc/rc.local文件,并设置参数,保存退出,重启系统后才会生效,然后检查系统开机后Numlock灯是否亮着
-
INITTY=/dev/tty[1-8]
-
for tty in $INITTY; do
-
setleds -D +num < $tty
-
done
编辑后rc.local文件内容
-
#!/bin/sh
-
#
-
# This script will be executed *after* all the other init scripts.
-
# You can put your own initialization stuff in here if you don
阅读(1997) | 评论(0) | 转发(0) |