Login on local terminal without password

10,500

Solution 1

edit /etc/init/tty1.conf:

sudo nano -w /etc/init/tty1.conf

replace the content with the following:

# tty1 - getty
#
# This service maintains a getty on tty1 from the point the system is
# started until it is shut down again.

start on stopped rc RUNLEVEL=[2345] and (
            not-container or
            container CONTAINER=lxc or
            container CONTAINER=lxc-libvirt)

stop on runlevel [!2345]

respawn
exec /sbin/getty --autologin root -8 38400 tty1

the important change is the last line includes --autologin root as an argument.

Once the change is made it can be activated with a reboot or by running sudo stop tty1 && sudo start tty1

Solution 2

And now, the systemd answer.

As discussed, Daniel Llewellyn's answer is upstart-specific and misses that this is for changing the serial device login, not the kernel virtual terminal device login. In the systemd world, this distinction is important.

In the systemd world, you similarly (to upstart) have to adjust what command options a particular getty program is spawned with to include --autologin root. Whilst there are two ways to do this with a kernel virtual terminal, there's really only one for a serial device, because there's no tweakable service alias akin to [email protected] for serial device login services.

Write one or more unit file override files under /etc/systemd/system with systemctl edit [email protected] or just directly with a text editor. Change the ExecStart setting by first having a line that clears it and then having a replacement line:

[Service]
ExecStart=
ExecStart=/sbin/agetty --autologin root -8 --keep-baud 115200,38400,9600 ttyS0 $TERM

Further reading

Share:
10,500

Related videos on Youtube

John Mitchell
Author by

John Mitchell

One of the problems with current developers is a basic lack of programming knowledge. Sure people can pick up a book and learn C# or Java but that doesn't say much about if they can program. People learn way to much "parrot fashion" in schools and universities about how to solve a pre-set problem in the same way as everyone else, but no one seems to know how to program with core concepts any more. I'm different on that respect, I consider myself language agnostic, although I can program in many many languages I like having the ability and knowledge to pick up a language syntax manual and understanding it in a day or two, it means I can always pick the right language for the job.

Updated on September 18, 2022

Comments

  • John Mitchell
    John Mitchell over 1 year

    I have a virtual guest of Ubuntu on a KVM Machine, I've setup the machine so I can type virsh console and be dropped into a console.

    I realise the security considerations here, but is it possible to set the guest up so that if a user connects via console they are automatically root without having to type in any password. However this is only for serial console and not for SSH or remote access.

    This isn't really a KVM question but just a system setup, the console has been setup as a device on /dev/ttyS0.

  • gertvdijk
    gertvdijk over 7 years
    This answer probably won't work with current Ubuntu release, because appears to be upstart-specific and thereby has gotten out of date since the change to systemd. (I should improve it some day.)