Posted On May 31, 2020

Linux: How to Set Startup Script

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux >> Linux: How to Set Startup Script

In previous Linux versions, startup scripts can simply be enabled by linking a script into the /etc/rc.d/ directory, and voila:

startupScript=/etc/init.d/startupScript
ln -s $startupScript /etc/rc.d/

However, recent versions of major branches such as Debian require that a script be LSB compliant to be triggered by the system upon booting; hence, a more universal method to edit startup routines on any Linux machine is to configure cron as shown in this example:

startupScript=/ect/init.d/startVncSessions.sh
cat <<EOF >  $startupScript
#!/bin/bash
# /etc/init.d/startVncSessions.sh
# Manually set users and session IDs
declare -A users=(
	["einie"]=1
	["minie"]=2
	["maynie"]=3
	["moe"]=4
	["wiwi"]=5
	)

for k in "${!users[@]}"
do
	username=$k
	sessionId=${users[$k]}
	#printf "%s\n" "key: $username value: $sessionId"
	sudo -H -u $username bash -c "vncserver -kill :$sessionId"	
	sudo rm -f /tmp/.X$sessionId-lock
	sudo rm -f /tmp/.X11-unix/X$sessionId
	sudo -H -u $username bash -c "vncserver :$sessionId -geometry 1920x1080 -depth 15 -pixelformat rgb565"
	sudo -H -u $username bash -c "websockify -D --web=/usr/share/novnc/ --cert=/etc/ssl/novnc.pem 908$sessionId localhost:590$sessionId"
done
EOF

# Set script to run at startup
chmod a+x $startupScript
chmod 777 $startupScript # optional: this is to give everyone full access, including editing rights

# Put it in cron
crontab -e
### add this line ###
@reboot /bin/bash -c '/ect/init.d/startVncSessions.sh' &

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

WordPress PHP Fatal error: Maximum execution time of 30 seconds exceeded

Error: [Tue Oct 12 05:57:03.088314 2021] [php7:error] [pid 167] [client 172.16.90.64:39776] PHP Fatal error: Maximum…

PowerShell: Invoke Backup SQL Database

Function to invoke SQL Backups on a Remote SQL Server: # invokeSqlBackup.ps1 # Version 0.0.1…

PowerShell: Encapsulating Function Inside a Function and Inside an Invoke-Command or Job

$domain='google.com' function pingSomething($x){ $result=ping $x function getTraceroute($y){ pathping $y } $result+=getTraceroute $x return $result }…