하모니카 묻고답하기

조회 수 484 추천 수 0 댓글 8
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

sudo wget -O /usr/share/keyrings/gpg-pub-moritzbunkus.gpg https://mkvtoolnix.download/gpg-pub-moritzbunkus.gpg

 

sudo sh -c 'echo "deb https://mkvtoolnix.download/ubuntu/ focal main" >> /etc/apt/sources.list.d/mkvtoolnix.download.list'

 

W: GPG 오류: https://mkvtoolnix.download/ubuntu focal Release: 다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다: NO_PUBKEY 74AF00ADF2E32C85

E: The repository 'https://mkvtoolnix.download/ubuntu focal Release' is not signed.

N: Updating from such a repository can't be done securely, and is therefore disabled by default.

N: See apt-secure(8) manpage for repository creation and user configuration details.

 
 
이후에 
/etc/apt/sources.list.d/mkvtoolnix.download.list 파일 삭제 후
 
sudo sh -c 'echo "deb https://mkvtoolnix.download/ubuntu/ $(lsb_release -sc)" >> /etc/apt/sources.list.d/mkvtoolnix.download.list'
 
E: Malformed entry 1 in list file /etc/apt/sources.list.d/mkvtoolnix.download.list (Component)
E: 소스 목록을 읽을 수 없습니다.
 
이렇게 오류가 뜨네요.
 
해결 방법이 있을까요?
  • profile
    Kevin 2023.01.02 13:00

    위 내용 중 저장소 추가 부분을 아래와 같이 수정하시고 실행하면 정상적으로 동작할겁니다.

    sudo sh -c 'echo "deb [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ focal main" > /etc/apt/sources.list.d/mkvtoolnix.download.list'

  • ?
    타조 2023.01.03 09:00

    알려주신 방법으로 하니 해결되었습니다.

    감사합니다.^^

  • ?
    JamesBae 2023.01.02 13:06

    안녕하세요 JamesBae 입니다.

     

    우선 저장소 키 등록 방법입니다.

     

    sudo wget -O /usr/share/keyrings/gpg-pub-moritzbunkus.gpg https://mkvtoolnix.download/gpg-pub-moritzbunkus.gpg

     

    우선 다음 명령어를 실행하면 gpg 인증 파일이 /usr/share/keyrings/gpg-pub-moritzbunkus.gpg 에 생깁니다.

    따라서 해당 파일을 저장소에서 쓰기 위해서는

    [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] 형태를 작성해 주어야 합니다.

     

    저장소 리스트 파일 등록 방법 입니다.

     

    echo "deb [signed-by=/usr/share/keyrings/gpg-pub-moritzbunkus.gpg] https://mkvtoolnix.download/ubuntu/ focal main" | sudo tee /etc/apt/sources.list.d/mkvtoolnix.download.list

     

    위에서 사용하신 > 방식으로 진행하셔도 상관없습니다.

    sources.list.d 폴더안에 해당 저장소 주소가 들어있는 list 파일만 생성이 되면 됩니다.

     

    sudo apt update

     

    다음 메세지가 나오는건 크게 신경쓰지 않으셔도 됩니다.

    32bit(i386)은 해당 저장소에서 지원하지 않는다는 메세지입니다.

     

    N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://mkvtoolnix.download/ubuntu focal InRelease' doesn't support architecture 'i386'

     

    sudo apt install mkvtoolnix mkvtoolnix-gui

     

    감사합니다.

     

    참고사이트

    https://mkvtoolnix.download/downloads.html#ubuntu

  • ?
    타조 2023.01.03 09:02

    상세한 설명 감사합니다.

     

    예전에는 txt 였을 때는 그냥 썼는데요, gpg는 다른가 보네요^^

     

    i386 내용도 감사드립니다.^^

     

     

  • ?
    Moordev 2023.01.02 14:17
    mkvtoolnix는 저는 그냥 Appimage버전을 사용합니다

    https://mkvtoolnix.download/downloads.html#appimage

    귀찮기도 하고 배포판 업그레이드할때 ffmpeg등 중요 라이브러리가 문제를 일으킨 적이 많아서 kdenlive, mkvtoolnix, handbrake등 영상관련은 Appimage나 Snap을 씁니다.

    계속 오류나고 그러시면 그냥 Appimage버전 쓰는걸 추천합니다
  • ?
    타조 2023.01.03 09:09

    좋은 프로그램 알려 주셔서 감사합니다.

     

    Appimage 아직 잘 모르겠는데요.

     

    포터블 개념 같은 건가요?

     

    잘 찾아 보겠습니다.^^

  • ?
    Moordev 2023.01.03 09:39
    일종의 포터블이고 그냥 파일하나 받아서 속성에서 실행가능하게 권한 준다음 실행하면 됩니다.

    배포판별로 생기는 호환문제가 없어서 편리합니다.
  • ?
    타조 2023.01.03 14:17

    wow 사용해보니 너무 좋네요.^^

    앞으로는 AppImage 파일이 부터 찾아봐야겠네요^^

     

    감사합니다.


  1. 게시판에 질문하기 전 읽기 - 어떻게 질문을 하는 것이 좋을까?

    Date2019.11.18 ByKevin Views13005 Votes0
    read more
  2. 금요일 입니다 ^^

    Date2023.01.13 ByKongS Views381 Votes0
    Read More
  3. 하모니카 사용자님들은 복 받으신거에요.....

    Date2023.01.12 ByKongS Views822 Votes0
    Read More
  4. 하모니카 게시판이 점점 죽어 가는거 같아서....

    Date2023.01.10 ByKongS Views741 Votes0
    Read More
  5. [해결완료] 하드디스크 용량부족

    Date2023.01.10 By하몬 Views590 Votes0
    Read More
  6. [문의] 업데이트 매니저에서 이전 리눅스 커널 업데이트

    Date2023.01.08 By파인트리 Views539 Votes0
    Read More
  7. 하모니카 에 궁금한것도 있고...여러모로...

    Date2023.01.05 ByKongS Views616 Votes0
    Read More
  8. 하모니카 사용자 님들을 위해서....

    Date2023.01.02 ByKongS Views598 Votes0
    Read More
  9. 하모니카 5.0 mkvtoolnix 설치 문의

    Date2023.01.02 By타조 Views484 Votes0
    Read More
  10. 하모니카6 태백 텔레그램 한글 입력 안 됨

    Date2022.12.28 Byslave Views658 Votes0
    Read More
  11. scrcpy 미러링안됨 알려주세요 ㅜㅜㅜ 미리 감사요

    Date2022.12.27 Byredking Views1287 Votes0
    Read More
  12. 하모니카 5.0 설치했더니 윈도우에서 cd rom이 사라졌습니다.

    Date2022.12.24 By자장러로허 Views580 Votes0
    Read More
  13. 멀티미디어용 코덱 어디서 깔면 될까요?

    Date2022.12.24 By자장러로허 Views433 Votes0
    Read More
  14. [건의] 하모니카 의 3가지 안건... ^^

    Date2022.12.23 ByKongS Views613 Votes1
    Read More
  15. [하모니카] 초보자 입니다.

    Date2022.12.21 By%%%% Views517 Votes0
    Read More
  16. 하모니카 MC 를 소개합니다 ^^

    Date2022.12.20 ByKongS Views635 Votes0
    Read More
  17. 저도, 하모니카 태백 출시 이벤트 경품 받았습니다. 근데 USB가 초기 불량인 것 같아요.

    Date2022.12.20 By유니스 Views435 Votes0
    Read More
  18. 하모니카 사이트 안드로이드 접속기

    Date2022.12.17 ByKongS Views527 Votes0
    Read More
  19. 하모니카 산타가 오셨어요 ~ 이벤트 선물 감사합니다.

    Date2022.12.16 By친절한우주인 Views458 Votes0
    Read More
  20. [문의-해결 완료] 지금 시스템을 끄시겠습니까? 팝업 반복 발생

    Date2022.12.15 By우아 Views484 Votes0
    Read More
  21. 인터넷이 연결되지 않아요 답글

    Date2022.12.14 ByKongS Views480 Votes0
    Read More
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 123 Next
/ 123
CLOSE