Ubuntu 18.04에서 새 MIME 유형을 생성할 수 없습니다

Ubuntu 18.04에서 새 MIME 유형을 생성할 수 없습니다

idx/sub 자막에 대한 새로운 MIME 유형을 만들고 싶습니다. 현재 MIME 유형은 "text/plain"입니다. 다음 내용으로 /usr/share/mime/packages에 idx.xml 파일을 만들었습니다.

<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
  <mime-type type="video/x-idx">
    <comment xml:lang="en">idx</comment>
    <icon name="bdsup2sub"/>
    <glob pattern="*.idx"/>
  </mime-type>
</mime-info>

MIME 데이터베이스를 업데이트했습니다.

sudo updata-mime-database /usr/share/mime

/usr/share/mime/video에 "x-idx.xml"이라는 새 xml 파일이 생성됩니다. 내용은

<?xml version="1.0" encoding="utf-8"?>
<mime-type xmlns="http://www.freedesktop.org/standards/shared-mime-info" type="video/x-idx">
  <!--Created automatically by update-mime-database. DO NOT EDIT!-->
  <comment xml:lang="en">idx</comment>
  <icon name="bdsup2sub"/>
  <glob pattern="*.idx"/>
</mime-type>

Xfce Mime 유형 편집기에는 새로운 MIME 유형도 있습니다. 그런데 idx 파일을 다시 확인해 보니 MIME 유형이 여전히

text/plain

컴퓨터를 다시 시작해도 아무 변화가 없습니다. 내가 또 무엇을 할 수 있나요? MIME 유형을 탐지하는 데 사용할 수 있는 "매직 넘버"에 대해 뭔가 조치를 취해야 합니까?

관련 정보