Multics Autostart script

LiNuX-SaT

Administrator
Staff member
Ofline
use that comand for multics autostart
1: cd /etc
2: touch multics.sh
3: chmod 777 multics.sh
4: nano multics.sh
now and that lines in box of multics.sh


#!/bin/bash
if ! ps -C multics > /dev/null
then
/usr/local/bin/multics
fi


5: cd /etc
6: export EDITOR="nano"
7: crontab -e

now put that line in crontab

*/1 * * * * /etc/multics.sh
 
Back
Top