Digital Signage/Displays: Difference between revisions

Jump to navigation Jump to search
No edit summary
Line 62: Line 62:
</syntaxhighlight>
</syntaxhighlight>
===== Turn on autologin =====
===== Turn on autologin =====
1. Create the required directory with '''''mkdir /etc/systemd/system/getty@tty1.service.d'''''
1. Create the required directory with:
<syntaxhighlight lang="bash">
mkdir /etc/systemd/system/getty@tty1.service.d
</syntaxhighlight>


2. Create the '''''autologin.conf''''' file in /etc/systemd/system/getty@tty1.service.d and add the contents below.
2. Create the '''''autologin.conf''''' file in the newly created '''''/etc/systemd/system/getty@tty1.service.d''''' directory and add the contents below.


Note:  Change '''''kiosk''''' below to the username that will be used for autologin if you are using something different (root is not recommended)
Note:  Change '''''kiosk''''' below to the username that will be used for autologin if you are using something different (root is not recommended)
Line 79: Line 82:
</syntaxhighlight>
</syntaxhighlight>


Ensure this is enabled with '''''systemctl status getty@tty1''''':
Ensure this is enabled with:
<syntaxhighlight lang="bash">
systemctl status getty@tty1
</syntaxhighlight>


<syntaxhighlight lang="text">
<syntaxhighlight lang="text">
Line 95: Line 101:
             └─776 /sbin/agetty -o "-p -- \\u" --noclear - linux
             └─776 /sbin/agetty -o "-p -- \\u" --noclear - linux
</syntaxhighlight>
</syntaxhighlight>
Run the following command if the service isn't enabled:
<syntaxhighlight lang="bash">
systemctl enable getty@tty1
</syntaxhighlight>
===== Set kiosk user .profile =====
===== Set kiosk user .profile =====
Change '''''/home/kiosk/.profile''''' to the contents below:
Change '''''/home/kiosk/.profile''''' to the contents below:

Navigation menu