Wikia

How To Wiki

Watchlist Recent changes

How to enable Linux to auto login at bootup

Redirected from Howto enable Linux to auto login at bootup

This howto show you howto get Linux to auto login in multi-user mode(non-GUI) at bootup.

Difficulty Operating Systems
med/hard linux
About:Ratings

RequirementsEdit

  • getty, or agetty; any getty that supports executing files (mingetty does not)
  • gcc: usually standard http://gcc.gnu.org
  • a boot disk or live cd is a good idea. If you make a mistake your computer may not boot up properly.

StepsEdit

You may not boot up if this isn't done properly, and these steps may not be the same for your computer

  1. edit a file: for example 'autologinz.c', and add (zymos being the username)
    #include <unistd.h>
    int main() { execlp( "login", "login", "-f", "zymos", 0); }
  2. Compile the file by executing this command:
    gcc -o autologinz autologinz.c
  3. make sure autologinz is executable. For help See: Howto to change file permissions in unix
  4. chmod 755 autologinz
  5. as root, perform the next steps:
  6. copy the program you just created to /usr/local/sbin
  7. cp autologinz /usr/local/sbin
  8. Read NOTE! below before proceeding!
  9. edit '/etc/inittab', and on line that looks similar to the following
    c1:2345:respawn:/sbin/agetty 38400 tty1 linux
    or
    1:2345:respawn:/sbin/mingetty tty1
  10. Replace that line with the following using the location of your executable
    c1:2345:respawn:/sbin/agetty -n -l /usr/local/sbin/autologinz 38400 tty1
    or
    1:2345:respawn:/sbin/agetty -n -l /usr/local/sbin/autologinz 38400 tty1
  11. reboot
NOTE! If your computer does not boot up properly use your boot disk to replace the line in '/etc/inittab' to its original and read 'man getty'


From HowTo Wiki, a Wikia wiki.

Pages on How To Wiki

Add a Page
1,748pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
2,506photos on this wiki
See more >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki