<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
I did the following a couple of weeks ago..<br>
<br>
The recommended way is to install a service file is in
/etc/systemd/system/<br>
according to the docs I have read.<br>
I used this as information: <a class="moz-txt-link-freetext" href="https://fedoraproject.org/wiki/Systemd">https://fedoraproject.org/wiki/Systemd</a><br>
<br>
To add another getty: systemctl enable getty@tty8<br>
<br>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
cp /lib/systemd/system/getty@.service
/etc/systemd/system/jnos@.service<br>
<br>
and edited <a class="moz-txt-link-abbreviated" href="mailto:jnos@.service">jnos@.service</a> to my situation.<br>
<br>
Modified:<br>
<br>
#ExecStart=-/sbin/agetty --noclear %I $TERM<br>
ExecStart=/usr/local/hamradio/jnos/dojnos<br>
<br>
Added to the end of that file:<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:Alias=getty.target.wants/getty@tty8.service">Alias=getty.target.wants/getty@tty8.service</a><br>
<br>
Made a soft link..<br>
<br>
ln -s /etc/systemd/system/jnos@.service
/etc/systemd/system/getty.target.wants/getty@tty8.service <br>
<br>
Started the stuff:<br>
<br>
systemctl start <a class="moz-txt-link-abbreviated" href="mailto:getty@tty8.service">getty@tty8.service</a><br>
<br>
<br>
Note:<br>
<br>
One of the lines in "dojnos" is<br>
<br>
exec $jnoscommand </dev/tty8>/dev/tty8 2>&1<br>
<br>
"dojnos" was already in use before the conversion to systemd.<br>
<br>
<br>
Bob VE3TOK<br>
<br>
</body>
</html>