gpt4 book ai didi

linux - SUSE reboot 启动时执行脚本

转载 作者:太空宇宙 更新时间:2023-11-04 09:44:10 24 4
gpt4 key购买 nike

我正在尝试在 SUSE 重新启动时执行名为“测试”的脚本。所以我把这个简单的脚本放在'/etc/init.d'代码是这样的

#!/bin/bash
# ScriptName=testing
cat > ~/output << "EOF"
This text is generated on startup!!
EOF

之后,我执行这些命令

chmod +x /etc/init.d/testing   
touch /etc/rc.d/rc3.d/S12testing

但是在我重新启动系统之后,什么也没有发生。

一定是我漏掉了什么。

Here is the reference I searched.

最佳答案

chmod +x /etc/init.d/testing   
touch /etc/init.d/rc.d/rc3.d/S12testing

不应该是“touch”,而是指向/etc/init.d/testing 的符号链接(symbolic link) (ln -s)。

尝试

cd /etc/init.d/rc.d/rc3.d
ln -s ../../testing S12testing

希望这对您有所帮助。

关于linux - SUSE reboot 启动时执行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18221930/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com