In the live Ubuntu 12.04 there is 1 graphical and 6 console automatic logins.
To disable the graphical login, use a text editor like GEDIT sudo gedit /etc/lightdm/lightdm.conf
Change the line:
autologin-user=ubuntu
to
autologin-user=
and append the following to make the login greeter show up:
greeter-show-manual-login=true
This is how you can disable the 6 console logins:
There are 6 files that specify the automatic logins. They are /etc/init/tty1.conf to /etc/init/tty6.conf.
First rename these files to any unused names, for example to /etc/init/custom-tty1.conf to /etc/init/custom-tty6.conf.
Then edit each file, replacing the line beginning with "exec" as shown below. Match the tty number to the number in the file name. For example, for file /etc/init/custom-tty1.conf, replace
exec /bin/login -f ubuntu </dev/tty1 > /dev/tty1 2>&1
with
exec /sbin/getty -8 38400 tty1