본문 바로가기

도커11

tvheadend에서 m3u 등록해서 사용하기 hdhomerun이라는 네트워크 TV수신기를 구매하여 tvheadend의 TV Adaptor로 등록해서 채널을 등록하려고 했지만 이상하게 tvheadend에서 채널 스캔이 실패를 했다. hdhomerun에서 재생되는 주파수를 등록했지만 실패했고, KODI의 simple iptv client나 hdhomerun 앱에서는 재생이 잘 되지만 기존 tvheadend client로 보고 있기 때문에 두개를 사용하는 것은 불편하다. 그래서 찾아보니 m3u형태로 파일을 넣어주면 tvheadend에서 재생이 가능하다고 해서 적용을 해보았다. 1. hdhomerun의 채널 확인 hdhomerun에서 스캔된 채널을 확인한 다음 아래와 같이 m3u를 만든다. #EXTM3U #EXTINF:-1 tvg-chno="11" tvg.. 2020. 8. 22.
Docker를 이용하여 Springer 책 다운 받기 COVID-19로 인해 Springer에서 400여권의 책을 무료로 배포 한다고 해서 Docker를 이용하여 손 쉽게 다운받아 본다. 1. 준비사항 ubuntu@ubuntu01:~$ git clone https://github.com/alexgand/springer_free_books.git ubuntu@ubuntu01:~$cd springer_free_books ubuntu@ubuntu01:~/springer_free_books$ ls Dockerfile LICENSE.txt README.MD helper.py main.py requirements.txt requirements2x.txt run_VirtualEnv.bat ubuntu@ubuntu01:~/springer_free_books$mkdir d.. 2020. 5. 11.
Ubuntu 20.04에 Docker 설치 하기 Ubuntu 20.04가 4월말에 Release되고 난 뒤 오라클 클라우드에도 Image가 배포되어 생성해 보았다. 서버 버전이라 특별히 바뀐것은 잘 모르겠고, 제일 많이 쓰는 Docker를 설치해본다. 1. 서버 버전 확인 ubuntu@ubuntu01:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04 LTS Release: 20.04 Codename: focal 2. Docker 설치 ubuntu@ubuntu01:~$ sudo apt install docker.io Reading package lists... Done Building dependency tree Reading st.. 2020. 5. 5.
Oracle Linux에 Docker 설치하기 Oracle linux는 RHEL계열로 특별히 docker를 설치하는 데는 어려울 것이 없어 보이지만 정리 차원에서 설치 하는 과정을 정리해 본다. 1. 준비사항 VM : Oracle Linux 7.6 사양 : 2 Cores, 2GB, 20GB HDD 2. Docker Repository cd /etc/yum.repos.d/ wget http://yum.oracle.com/public-yum-ol7.repo public-yum-ol7.repo 파일에서 아래 repository를 enable한다. ======================================================================== [ol7_latest] name=Oracle Linux $releasever La.. 2019. 5. 24.