Hi
I'm using a RPi-5 and Ubuntu-64-bit 24.0.4 and trying to run a Java program at bootup/startup that provides a splash screen and then enters the user into an application.
I went for option 2 as detailed in this article by adding a file in etc/init.d:
https://raspberrytips.com/autostart-a-program-on-boot/
My file is as follows:
But when I re-boot I don't see the splashscreen or app. I know my app works because if I run the java command in a terminal then it works as expected. There is something missing from adding the launch script to /init.d. Does anyone know what is wrong?
Thanks
Graham
I'm using a RPi-5 and Ubuntu-64-bit 24.0.4 and trying to run a Java program at bootup/startup that provides a splash screen and then enters the user into an application.
I went for option 2 as detailed in this article by adding a file in etc/init.d:
https://raspberrytips.com/autostart-a-program-on-boot/
My file is as follows:
Code:
#!/bin/bash### BEGIN INIT INFO# Provides: rpiclaunch# Required-Start:$all# Required-Stop:# Default-Start: 5# Default-Stop: 6# Short-Description: Launching RPi Compute### END INIT INFOjava -jar ~/software/rpicompute/target/rpic-1.0.jar &
Code:
sudo chmod +x /etc/init.d/rpiclaunchsudo update-rc.d rpiclaunch defaults
Thanks
Graham
Statistics: Posted by gmseed — Wed Dec 04, 2024 12:34 pm