↧
Answer by Roboman1723 for Start script on boot up?
You can use cron. cron allows you to set scheduled tasks in Linux. crontab -e @reboot <path-to-script>/boot-up #add to end of file
View ArticleStart script on boot up?
I want to run a script when the system starts. The script is: #!/bin/bash gnome-terminal --tab -t "MyPC" -e "sh -c 'nohup firefox & nohup gedit & bash'" --tab -t "MYPC2" -e "sh -c 'ls -al;ls;...
View Article