gpt4 book ai didi

linux - 如何在启动时运行 Linux 终端命令

转载 作者:太空狗 更新时间:2023-10-29 11:15:10 28 4
gpt4 key购买 nike

我喜欢在启动时在我的 Raspberry Pi 上启动我的 Siriproxy 服务器。我必须输入

  1. cd siriproxy

  2. rvmsudo siriproxy 服务器

在终端中启动 Siriproxy。有没有办法在启动时运行命令?

非常感谢,

大卫

这是我编辑的脚本:

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi

#I added this line
/home/pi/siriproxy server

exit 0
/etc/init.d/cron start

最佳答案

您可以将以 root 身份运行的命令添加到/etc/rc.local 脚本中,然后它们将在启动时运行。 ( http://ubuntuforums.org/showthread.php?t=1822137 )

从你的树莓派终端运行:

sudo nano /etc/rc.local

在 exit 0 行之前添加以下内容:

/path/to/siriproxy server

可以输入siriproxy的路径

which siriproxy

或者根据你的 pi 安装 siriproxy 的方式,它可以是你 cd 到的任何内容的完整路径,然后在末尾添加“siriproxy”。

保存文件并重新启动以查看它的工作!希望这对您有所帮助。

关于linux - 如何在启动时运行 Linux 终端命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16419429/

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