일반적인 경우라면 이렇게 해서는 안되겠지만, 어떤 이유에서 root계정으로 바로 부팅을 해야하는 일이 생겼다.
그 방법을 기록해 둔다.
$ sudo vim /etc/lightdm/lightdm.conf.d/12-autologin.conf
#autologin-user=odroid
autologin-user=root #이걸로 교체해준다.
$ reboot
이렇게하면 일단 root로 로그인이 되지만, x윈도우에서 아래와 같은 에러를 띄울지도 모른다.
Error found when loading /eoot/.profile : stdin: is not a tty
이럴때는 .profile을 수정하면 된다.
$ vim .profile
#mesg n
tty -s && mesg n #이렇게 교체하면 된다.
그러면 일단 에러메세지는 안뜬다.
'Robotics > Software Tech.' 카테고리의 다른 글
(c++)Singleton pattern 클래스를 멀티쓰레드에서 안전하게 만드는 방법 (0) | 2015.07.30 |
---|---|
Cygwin + Eclipse에서 STL unresolved inclusion문제 (0) | 2015.03.02 |
gtk에서 Gtk-WARNING **: Theme parsing error: buttons.css.. 에러의 원인.. (0) | 2014.12.31 |
컴포넌트 소프트웨어 엔지니어링 자료. (0) | 2014.10.11 |
C++ 소프트웨어 개발 프레임워크, push framework (0) | 2014.05.16 |