| 308 | | So again more to come... |
| | 308 | |
| | 309 | == 11) Enable autologin == |
| | 310 | |
| | 311 | Because I have my USB host port broken on my A101IT and I haven't figured out how to start the onscreen keyboard at the login screen yet. I am using for now automatic login. To enable that we copy /usr/share/defaults.conf to /etc/gdm/gdm.conf and edit that file. |
| | 312 | |
| | 313 | {{{ |
| | 314 | $ sudo cp ./debianlxdefinal/gdm/defaults.conf ./debianlxdefinal/etc/gdm/gdm.conf |
| | 315 | $ sudo gedit ./debianlxdefinal/etc/gdm/gdm.conf |
| | 316 | }}} |
| | 317 | |
| | 318 | Now we change at line 48 AutomaticLoginEnable=false to AutomaticLoginEnable=true and at line 49 we fill in our username, in my case debian. |
| | 319 | |
| | 320 | gdm.conf |
| | 321 | {{{ |
| | 322 | ... |
| | 323 | [daemon] |
| | 324 | # Automatic login, if true the first attached screen will automatically logged |
| | 325 | # in as user as set with AutomaticLogin key. |
| | 326 | AutomaticLoginEnable=true |
| | 327 | AutomaticLogin=debian |
| | 328 | ... |
| | 329 | }}} |
| | 330 | |
| | 331 | More to come... |
| | 332 | |
| | 333 | |
| | 334 | |