로그인 시 표준 콘솔로 사용되는 fbterm

로그인 시 표준 콘솔로 사용되는 fbterm

실행할 수 있는지 아시는 분 계신가요?FB 용어로그인 시 표준 콘솔로 사용하시겠습니까?

답변1

Raspbian(자동 로그인이 활성화된)에는 편집할 수 있는 getty 라인이 있습니다./etc/systemd/system/[email protected]/autologin.conf

[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin pi --noclear %I $TERM

으로 교체하면

[Service]
ExecStart=
ExecStart=-/sbin/rungetty -u root %I -- fbterm

루트 터미널이 나타납니다 fbterm.

자동으로 로그인되지 않은 경우 파일을 직접 만들 수 있습니다( autologin그러나 이름을 지정하지 마십시오. fbterm.conf더 나은 이름이 사용될 수 있습니다).

[Service]
ExecStart=
ExecStart=-/sbin/rungetty -u root %I -- fbterm -- login

그러면 일반적인 로그인 프롬프트가 표시됩니다 fbterm.

관련 정보