Sometimes when you boot Linux, you will see a dialog box that reports the system error as shown in the following figure.
There are many reasons why.
The most common case is the Dpkg error issue with Linux Ubuntu
Or, security issues may arise after installing selinux.
Let's look at the principle of turning off system error reporting in earnest.
Usually on Linux Ubuntu, the following files are responsible for the configuration:
/etc/default/apport
The file is a configuration file about whether to report the error.
-- 터미널 텍스트 박스 (Terminal text box) --
<Drag와 복사가 가능합니다.>
// cat 명령을 통하여 해당 파일을 들여다 보면
user@user-test:~$ cat /etc/default/apport
enable=1
-> 해당 파일이 'enable=1'로써 되어 있다면 오류보고를 하겠다는 설정이다. 이것을 'enable=0'로 바꾸어 주면 되는 것이다.
If the file is set to 'enable = 1', it will report an error. You can change this to 'enable = 0'.
-- 터미널 텍스트 박스 (Terminal text box) --
<Drag와 복사가 가능합니다.>
// 에디터가 아닌 쉘에서 간편히 바꾸고 싶다면 다음과 같은 'sed' 명령어를 응용한 명령을 내리면 된다.
user@user-test:~$ sudo sed -i 's/enabled=1/enabled=0/g' etc/default/apport
And if there is something missing or wrong in the article, please let me know by comment.
'리눅스 기초 가이드 > 시스템 이론' 카테고리의 다른 글
[리눅스 앱] 터미널 콘솔에서 사진파일을 거의 완벽하게 로드하여 띄어 보자! - 프로그램 fbi (0) | 2017.06.22 |
---|---|
[리눅스 앱] Tuxguitar에 기타프로의 RSE 부럽지 않은 리얼 사운드 폰트를 적용해 보자!! (0) | 2017.06.21 |
[프로그래밍 기초 이론] 파이썬 컴파일의 그 필요성에 대하여 (0) | 2016.10.10 |
리눅스에서 '환경 변수'의 의미와 활용방법에 대해서 알아보자. (0) | 2016.09.14 |
[unix 시스템 기초] 리눅스 의 기초 이론인 TTY와 PTS, PTY에 대해서 알아보자. (1) | 2016.08.11 |