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




If you are helpful, please press '♡' button.


And if there is something missing or wrong in the article, please let me know by comment.


+ Recent posts