我正在尝试做一些非常简单的事情,但经过几天的研究和尝试,我仍然无法实现。
本质上,我有一个运行 Raspbian Buster 最新版本 (10) 的 Raspberry Pi 4,带有默认的 PIXEL (LXDE) 桌面管理器。当我打开 Raspberry 时,我希望 qbittorrent 也能打开(GUI 版本),就这么简单。
我确实使用以下代码创建了一个批处理文件:
#!/bin/bash
/usr/bin/qbittorrent &
我已经将它设置为任何人都可以执行。双击文件会打开一个窗口,询问我是否要在终端中执行或执行。这两个选项都可以很好地打开 qbittorrent。
在我尝试过的所有事情中,有一个简短的列表:
- rc.local:添加行 sudo bash /usr/bin/qbittorrent
- rc.local:添加行 sudo -u pi /usr/bin/bash /usr/bin/qbittorrent
- rc.local:添加行 sudo -u pi /usr/bin/qbittorrent
- /etc/xdg/lxsession/LXDE/autostart:添加行@sh /home/pi/Documents/qbittorrent.sh
- 将 sh 文件复制到 /etc/init.d
这些都没有奏效。雪上加霜,每当我再次用谷歌搜索类似的东西时,Raspbian run program on startup
我会发现我已经尝试过的任何东西,或者更常见的是,其他人说使用谷歌 duh
我不介意在这里提供帮助,请记住,我确实广泛使用了 Google,但我不知道为什么到目前为止没有任何效果。