请教3个问题:1.setleds设置numlock 2.dev null写法的作用 3.关于path打通

请教3个问题:1.setleds设置numlock 2.dev null写法的作用 3.关于path打通

1.我参考setlets在man中的一段脚本,在/etc/rc.d/rd.local中加入下面代码:

INITTY=/dev/tty[1-8]
for tty in $INITTY
do
    setleds -D +num < $tty
done

重启后登陆到text模式下,num灯自动亮起;但startx进入xwindow,numlock灯又自动灭掉,请问如何才能时进入xwindow时numlock灯仍然保持亮起状态?

2.常看到 > /dev/null这种写法,请问这样写是什么意思,有什么作用?

3.我把自己练习时写的shell脚本都保存在自建的一个目录下(/home/shellib),
然后在/etc/profile中加入
FPATH=/home/shellib
...
export FPATH

请问这样写对吗?我重启后发现设置没有生效,应该怎样打通路径呢?

谢谢!      
1. setleds 只在标准的 console 上起作用

2. /dev/null & /dev/zero
复制内容到剪贴板
代码:
       Data written on a null or zero special file is discarded.

       Reads  from  the  null  special file always return end of file, whereas
       reads from zero always return \0 characters.
3. 在 ~/.bashrc 中加上一句:
export PATH=$PATH:/home/shellib