Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
12
rated 0 times [  12] [ 0]  / answers: 1 / hits: 73156  / 1 Year ago, fri, november 25, 2022, 11:58:47

I've installed Ubuntu 12.04 & and edited the /etc/default/grub file to auto boot into text mode. but every time I turn on the computer it asks for username and password (in text mode), I wanted it to automatically login without asking for username and password, so in graphical mode I went to "System Setting->User Accounts" and checked the "Automatic login", but it didn't work. so what should I do to automatically log in even in text mode?


More From » boot

 Answers
0

To boot into text mode



sudo vim /etc/default/grub



and change the following line:



GRUB_CMDLINE_LINUX_DEFAULT="text"


exit and enter:



 sudo update-grub


Automatically login in text mode without specifying userid or password



Upstart Versions of Ubuntu



Add -a <your-user-name> to the line:



exec /sbin/getty -8 38400 tty1


in file /etc/init/tty1.conf



like so:



exec /sbin/getty -8 38400 tty6 -a gruber


/etc/init/tty1.conf is the upstart job that runs at the appropriate time to start the terminal session on tty1. Adding the -a option tells getty to call the login program with the -f option to sign that user in, bypassing the user prompt from getty and the password prompt from login.



Upstart is the Ubuntu system that operates as the kernel init process (process 1).



I tested this on my tty6 and it worked great. Because of the upstart respawn line if you exit the shell it will start back up again automatically.



Systemd Versions of Ubuntu



Newer versions of Ubuntu use mostly systemd to manage system processes. Therefore there are new ways of doing things.



systemd tty usage is also a little different with graphics terminals possibly running on the first few virtual terminals. tty6 is reserved to be a text virtual terminal with systemd and there will probably be others as well.



To have tty6 come up signed on as you enter:



sudo systemctl edit getty@tty6


A nano editor will come up in a temporary file. Enter the following into that editor:



 [Service]
ExecStart=
ExecStart=-/sbin/agetty -o '-p -f gruber' -a gruber --noclear %I $TERM


Exit the editor.



Putting in the extra ExecStart= line is not a typo. it's very important as it tells systemd to forget about the original ExecStart parameter it already knows about (from /lib/systemd/system/[email protected]) so you can replace ExecStart.



You can check the results with the following command:



 systemd-analyze verify [email protected]


I see some warnings there when I try this, but not about what we are doing here.



If there is already a tty process going on tty6 you'll have to restart it to see the results.






To figure this out I referred to the excellent answer at https://askubuntu.com/a/659268/63886. There Muru happened to use the same goal as an example on how to tailor systemd. His ExecStart line is:



 ExecStart=-/sbin/agetty -a muru --noclear %I $TERM


The difference appears to be a couple more systemd related environmental variables appear in my version.



The end result of the above edit is the creation of a file called override.conf in /etc/systemd/system/[email protected]/ containing just what you typed above. If you were to create such a file yourself you would need to run the systemctl daemon-reload command to get systemd to recognize it, and again then possibly restarting any existing agetty process on that virtual console. systemctl --edit takes care of the daemon-reload for you.


[#36204] Saturday, November 26, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
otatorm

Total Points: 218
Total Questions: 113
Total Answers: 124

Location: British Indian Ocean Territory
Member since Tue, Feb 22, 2022
2 Years ago
;