systemd_boot_into_console

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
systemd_boot_into_console [08.12.2015 17:55] – created Pascal Sutersystemd_boot_into_console [07.03.2019 15:29] (current) – [Autologin to console] Pascal Suter
Line 6: Line 6:
   systemctl set-default multi-user.target   systemctl set-default multi-user.target
      
-you might need to pass "text" rather than "quiet boot" to your kernel through grub (in ubuntu, edit /etc/default/grub)+you might need to pass "text" rather than "quiet boot" to your kernel through grub (in ubuntu, edit /etc/default/grub then run update-grub) 
 + 
 +===== Autologin to console ===== 
 +find the original command to see how terminals are started:  
 +  grep ExecStart /lib/systemd/system/getty@.service 
 +the output is something like  
 +  ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear %I $TERM 
 +edit getty@1.service for the first tty:  
 +  systemctl edit getty@tty1 
 +now write the following lines:  
 +  [Service] 
 +  ExecStart= 
 +  ExecStart=-/sbin/agetty --autologin myuser --noclear %I $TERM 
 +where ''myuser'' should be replaced with the username of the user that should be logged in. removing the ''-o '-p -- \\u' '' removes the password prompt. if you leave this in the user will be automatically selected but you still need to enter the password to continue.  
 + 
 +===== Autostart some scripts upon every login ===== 
 +edit ''~/.bash_profile'' 
  
  • systemd_boot_into_console.1449593733.txt.gz
  • Last modified: 08.12.2015 17:55
  • by Pascal Suter