On Sun, Sep 12, 2010 at 4:30 PM, Piavlo <span dir="ltr">&lt;<a href="mailto:piavka@cs.bgu.ac.il">piavka@cs.bgu.ac.il</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
Hi,<br>
<br>
If this mailing list is not appropriate place to ask such questions, can<br>
you point me to the correct one?<br>
<br></blockquote><div>You could always try irc #systemd at freenode. <br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div></div><div class="h5"><br>
On 09/06/2010 12:44 PM, Piavlo wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I several issues questions:<br>
&gt;<br>
&gt; --------------------<br>
&gt; [root@fedora2 ~]# systemctl status getty@tty6.service<br>
&gt; getty@tty6.service - Getty on tty6<br>
&gt; Loaded: loaded (/lib/systemd/system/getty@.service)<br>
&gt; Active: active (running) since [Mon, 06 Sep 2010 12:17:55 +0300; 7min ago]<br>
&gt; Main PID: 679 (mingetty)<br>
&gt; CGroup: name=systemd:/systemd-1/getty@.service/tty6<br>
&gt; └ 679 /sbin/mingetty tty6<br>
&gt; [root@fedora2 ~]# systemctl stop getty@tty6.service<br>
&gt; [root@fedora2 ~]# systemctl status getty@tty6.service<br>
&gt; getty@tty6.service - Getty on tty6<br>
&gt; Loaded: loaded (/lib/systemd/system/getty@.service)<br>
&gt; Active: inactive (dead) since [Mon, 06 Sep 2010 12:25:54 +0300; 2s ago]<br>
&gt; Main PID: 679 (code=killed, signal=HUP)<br>
&gt; CGroup: name=systemd:/systemd-1/getty@.service/tty6<br>
&gt; [root@fedora2 ~]# systemctl disable getty@tty6.service<br>
&gt; Couldn&#39;t find getty@tty6.service.<br>
&gt; [root@fedora2 ~]#<br>
&gt; ---------------------<br>
&gt;<br>
&gt; why disable does not work?<br>
&gt;<br>
&gt; same problem with enable and is-enabled<br>
&gt;<br></div></div></blockquote><div>If I may guess. Stuff started with @ are not &quot;real&quot; services. Those you have to delete manually in the wants directory, i.e /etc/systemd/system/getty.target.wants.<br></div>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div class="h5">
&gt; --------------------<br>
&gt; [root@fedora2 ~]# systemctl status network.target<br>
&gt; network.target - Network<br>
&gt; Loaded: loaded (/lib/systemd/system/network.target)<br>
&gt; Active: active since [Mon, 06 Sep 2010 12:30:18 +0300; 1min 41s ago]<br>
&gt; [root@fedora2 ~]# systemctl status network.service<br>
&gt; network.service - LSB: Bring up/down networking<br>
&gt; Loaded: loaded (/etc/rc.d/init.d/network)<br>
&gt; Active: inactive (dead)<br>
&gt; CGroup: name=systemd:/systemd-1/network.service<br>
&gt; [root@fedora2 ~]# systemctl enable network.service<br>
&gt; Couldn&#39;t find network.service.<br>
&gt; [root@fedora2 ~]#<br>
&gt; [root@fedora2 ~]# systemctl is-enabled network.service<br>
&gt; Couldn&#39;t find network.service.<br>
&gt; [root@fedora2 ~]#<br>
&gt; [root@fedora2 ~]# systemctl start network.service<br>
&gt; Bringing up loopback interface: [ OK ]<br>
&gt; Bringing up interface eth0:<br>
&gt; Determining IP information for eth0... done.<br>
&gt; [ OK ]<br>
&gt; [root@fedora2 ~]#<br>
&gt; [root@fedora2 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0<br>
&gt; DEVICE=&quot;eth0&quot;<br>
&gt; HWADDR=&quot;00:50:56:3E:13:C7&quot;<br>
&gt; NM_CONTROLLED=&quot;no&quot;<br>
&gt; ONBOOT=&quot;yes&quot;<br>
&gt; BOOTPROTO=&quot;dhcp&quot;<br>
&gt; [root@fedora2 ~]#<br>
&gt; -----------------------<br>
&gt;<br>
&gt; In order to start<br>
&gt; serial console I had to make the following link manually<br>
&gt; /etc/systemd/system/serial-getty@ttyS0.service -&gt;<br>
&gt; /lib/systemd/system/serial-getty@.service<br>
&gt; but this does not seems as correct way<br>
&gt; how can i do this with systemctl instead?<br>
&gt;<br></div></div></blockquote>I think it&#39;s the right way but the wrong place. &quot;ln -s /lib/systemd/system/serial-getty@.service  /etc/systemd/system/getty.target.wants/serial-getty@ttyS0.service&quot;<br>That should start the getty at boot.<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div class="h5">
&gt; ----------------------<br>
&gt; [root@fedora2 ~]# systemctl status serial-getty@ttyS0.service<br>
&gt; serial-getty@ttyS0.service - Serial Getty on ttyS0<br>
&gt; Loaded: loaded (/lib/systemd/system/serial-getty@.service)<br>
&gt; Active: active (running) since [Mon, 06 Sep 2010 12:30:46 +0300; 9min ago]<br>
&gt; Process: 736 (/sbin/securetty %I, code=exited, status=0/SUCCESS)<br>
&gt; Main PID: 738 (login)<br>
&gt; CGroup: name=systemd:/systemd-1/serial-getty@.service/ttyS0<br>
&gt; [root@fedora2 ~]# systemctl enable serial-getty@ttyS0.service<br>
&gt; Refusing to operate on symlinks, please pass unit names or absolute<br>
&gt; paths to unit files.<br>
&gt; [root@fedora2 ~]# systemctl is-enabled serial-getty@ttyS0.service<br>
&gt; Refusing to operate on symlinks, please pass unit names or absolute<br>
&gt; paths to unit files.<br>
&gt; [root@fedora2 ~]#<br>
&gt; ----------------------<br></div></div></blockquote><div>As I said before, I don&#39;t think systemctl works with such symlinks. better just make the links manually.<br><br>Jens <br></div></div><br>