少了点 发表于 2005-6-18 19:33:10

在pre6下制作动画启动界面,看了还是感觉不懂???????

1.# fbmngplay -h

usage: fbmngplay [ -x <val> ] [ -y <val> ] [ -a <val> ] [-b] [-v] [-s] ]]

-x: x coordinate
-y: y coordinate
-a, --alpha: default alpha channel 1..100
-v, --verbose: verbose mode
-b, --buffered: buffered mode
-s, --signal: wait for SIGUSR1 between animations
-p, --position: dynamically select position
-V, --version: show version and exit
-?, -h, --help: print this help.
-S --start-console: only output animation on console it was started on.
-c: start output animation on specified console.
这个我见到了,可是用这个做什么的我不懂还请大哥大姐们指教!

2.也来写一个脚本:
animate.sh放在/sbin中
源码:
case "$1" in
start)
fbmngplay -x 420 -y 580 /etc/bootsplash/themes/current/animations/bounce.mng &
exit 0
;;
stop)
killall -q fbmngplay
exit 0
;;
esac

将其的属性改为可执行。
chmod +x animate.sh 我用了CHOMOD
+X命令后说找不到后面的那个文件这是怎么回事?

3.要关掉fbmngplay也行简单。我是找到/etc/rc.d/init.d有找到最后一个运行的脚来,在start)那一段最后加一句
/sbin/animate.sh stop
比如我最后运行的是vmware。所以,修改vmware
case "$1" in <-找到这一段
start)
if [ -e "$vmware_etc_dir"/not_configured ]; then
echo "`vmware_product_name`"' is installed, but it has not been (correctly) configured'
echo 'for the running kernel. To (re-)configure it, invoke the'
echo
...

[ -d /var/lock/subsys ] || mkdir -p /var/lock/subsys
touch /var/lock/subsys/"$subsys"
/sbin/animate.sh stop <-加入这一行
;;
我这边而且还没有这个文件了更奇怪了!!!!!!!!!!!!!
有没有教程啊 ?小弟很想看看到底怎么改的???????大哥大姐们帮我解答一下好吗 我的QQ191178695

tingxx 发表于 2005-6-20 12:59:41

1.那个程序是用来播放启动的那个滚动条的
2.找不到那个文件,说明那个文件不在你执行命令的目录里
3.那个文件没有很正常,因为只有装了vmware才会有那个文件

少了点 发表于 2005-6-24 19:38:23

:-( 那哪装啊!我用的ROOT身份登陆后安装软件时提示我的权限不够,这是怎么一回事?
还有启动画面应该我是认为把LINUX里面那张图片换掉就可以了怎么要改那么多东西啊?可是换了又没法显示出那张我换过的图片!!
1.那个程序是用来播放启动的那个滚动条的
2.找不到那个文件,说明那个文件不在你执行命令的目录里
3.那个文件没有很正常,因为只有装了vmware才会有那个文件

tingxx 发表于 2005-6-24 20:10:31

只是换/etc/里面的图片当然不行,因为系统启动时不会读那个文件,而是从initrd.img文件中直接读出来的。
页: [1]
查看完整版本: 在pre6下制作动画启动界面,看了还是感觉不懂???????