런타임으로 콘솔을 끄는건 메시지만 출력하지 않는 것 같고..
kernel argument로 주어진 포트를 close 하는 건 다시 찾아 봐야 할 듯..
---
이건 딱히 다른 티가 안나고..
uart로 콘솔 연결해 보기 전에는 모르겠네...
$ sudo dmesg -n 1
얘는 에러가 나네...
$ sudo sysctl disable serial-getty@ttySAC1.service sysctl: cannot stat /proc/sys/disable: No such file or directory sysctl: cannot stat /proc/sys/serial-getty@ttySAC1/service: No such file or directory $ ll /proc/sys total 0 dr-xr-xr-x 1 root root 0 ene 1 2000 ./ dr-xr-xr-x 150 root root 0 ene 1 1970 ../ dr-xr-xr-x 1 root root 0 oct 12 00:57 debug/ dr-xr-xr-x 1 root root 0 oct 12 00:57 dev/ dr-xr-xr-x 1 root root 0 ene 1 2000 fs/ dr-xr-xr-x 1 root root 0 ene 1 2000 kernel/ dr-xr-xr-x 1 root root 0 ene 1 2000 net/ dr-xr-xr-x 1 root root 0 ene 1 2000 vm/ |
# systemctl disable serial-getty@ttyS0.service
[링크 : http://developer.toradex.com/knowledge-base/how-to-disable-enable-debug-messages-in-linux]
$ sudo vi /etc/sysctl.conf kernel.printk = 0 4 1 7 |
[링크 : https://wiki.openwrt.org/doc/recipes/terminate.console.on.serial]
# sysctl -w kernel.printk="2 4 1 7" kernel.printk = 2 4 1 7 # sysctl kernel.printk kernel.printk = 2 4 1 7 |
$ sysctl kernel.printk kernel.printk = 1 4 1 7 |
[링크 : http://superuser.com/questions/351387/how-to-stop-kernel-messages-from-flooding-my-console]
inittab이나 grub 로더를 통해서 하는건데odroid에는 inittab이 존재하지 않는다.
[링크 : https://help.ubuntu.com/community/SerialConsoleHowto]
'Linux > Ubuntu' 카테고리의 다른 글
fcitx-hangul (0) | 2016.11.14 |
---|---|
xwindow 가상 터미널 비활성화 하기 (2) | 2016.10.11 |
linux cpu hotplug (0) | 2016.10.11 |
ubuntu php4 설치 (0) | 2016.10.06 |
ubuntu apt를 통해 자동 업데이트 되지 않도록 하기 (0) | 2016.10.05 |