Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. root@localhost /etc/cron.d # cat /etc/inittab
  2. #
  3. # /etc/inittab: This file describes how the INIT process should set up
  4. # the system in a certain run-level.
  5. #
  6. # Author: Miquel van Smoorenburg, <miquels@cistron.nl>
  7. # Modified by: Patrick J. Volkerding, <volkerdi@ftp.cdrom.com>
  8. # Modified by: Daniel Robbins, <drobbins@gentoo.org>
  9. # Modified by: Martin Schlemmer, <azarah@gentoo.org>
  10. # Modified by: Mike Frysinger, <vapier@gentoo.org>
  11. # Modified by: Robin H. Johnson, <robbat2@gentoo.org>
  12. #
  13. # $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.1 2010/01/08 16:55:07 williamh Exp $
  14.  
  15. # Default runlevel.
  16. id:3:initdefault:
  17.  
  18. # System initialization, mount local filesystems, etc.
  19. si::sysinit:/sbin/rc sysinit
  20.  
  21. # Further system initialization, brings up the boot runlevel.
  22. rc::bootwait:/sbin/rc boot
  23.  
  24. l0:0:wait:/sbin/rc shutdown
  25. l0s:0:wait:/sbin/halt -dhp
  26. l1:1:wait:/sbin/rc single
  27. l2:2:wait:/sbin/rc nonetwork
  28. l3:3:wait:/sbin/rc default
  29. l4:4:wait:/sbin/rc default
  30. l5:5:wait:/sbin/rc default
  31. l6:6:wait:/sbin/rc reboot
  32. l6r:6:wait:/sbin/reboot -dk
  33. #z6:6:respawn:/sbin/sulogin
  34.  
  35. # new-style single-user
  36. su0:S:wait:/sbin/rc single
  37. su1:S:wait:/sbin/sulogin
  38.  
  39. # TERMINALS
  40. c1:12345:respawn:/sbin/agetty 38400 tty1 linux
  41. c2:2345:respawn:/sbin/agetty 38400 tty2 linux
  42. c3:2345:respawn:/sbin/agetty 38400 tty3 linux
  43. c4:2345:respawn:/sbin/agetty 38400 tty4 linux
  44. c5:2345:respawn:/sbin/agetty 38400 tty5 linux
  45. c6:2345:respawn:/sbin/agetty 38400 tty6 linux
  46.  
  47. # SERIAL CONSOLES
  48. #s0:12345:respawn:/sbin/agetty 9600 ttyS0 vt100
  49. #s1:12345:respawn:/sbin/agetty 9600 ttyS1 vt100
  50.  
  51. # What to do at the "Three Finger Salute".
  52. ca:12345:ctrlaltdel:/sbin/shutdown -r now
  53.  
  54. # Used by /etc/init.d/xdm to control DM startup.
  55. # Read the comments in /etc/init.d/xdm for more
  56. # info. Do NOT remove, as this will start nothing
  57. # extra at boot if /etc/init.d/xdm is not added
  58. # to the "default" runlevel.
  59. x:a:once:/etc/X11/startDM.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement