Qubes OS/Fedora 23에 VLC 설치

Qubes OS/Fedora 23에 VLC 설치

최근에 설치했어요QubesOS설치하고 싶어요VLC 미디어 플레이어개인의Fedora 23 기반 VM.

RPM-fusion을 구성하기 위해 다음 두 명령을 실행했습니다(다음에서 찾을 수 있습니다).프랑스어 페도라 문서):

$ su -lc 'dnf install --nogpgcheck http://fr2.rpmfind.net/linux/rpmfusion/free/fedora/rpmfusion-free-release-stable.noarch.rpm'

$ su -lc 'dnf install --nogpgcheck http://fr2.rpmfind.net/linux/rpmfusion/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm'

먼저 위에서 언급한 download1.rpmfusion.org 서버를 이용하여 RPM-Fusion 구성을 시도해 보았습니다.여기그러나 그것은 응답하지 않았습니다.

그런 다음 VLC 타이핑을 설치하려고했습니다.

$ sudo dnf -y update
$ sudo dnf install vlc

그러나 VLC 패키지를 찾을 수 없습니다. 다음과 같은 오류가 있습니다.

[user@personal ~]$ sudo dnf install vlc
Last metadata expiration check: 1:23:59 ago on Fri Dec 30 10:18:41 2016.
No package vlc available.
Error: Unable to find a match.

이것이 VLC를 설치하는 다른 방법입니까? 저는 Debian 기반 운영 체제를 사용하는 데 익숙하며 간단한 운영 체제로도 sudo apt-get install vlc충분합니다.

정보

[user@personal Downloads]$ dnf repolist
Last metadata expiration check: 0:00:33 ago on Fri Dec 30 14:03:49 2016.
repo id                                                                    repo name                                                                                      status
*fedora                                                                    Fedora 23 - x86_64                                                                             46,074
qubes-vm-r3.2-current                                                      Qubes OS Repository for VM (updates)                                                              186
rpmfusion-free-updates                                                     RPM Fusion for Fedora 23 - Free - Updates                                                         380
rpmfusion-nonfree-updates                                                  RPM Fusion for Fedora 23 - Nonfree - Updates                                                      106
*updates                                                                   Fedora 23 - x86_64 - Updates                                                                   21,532

답변1

@schaiba가 해결책을 찾았습니다. 감사합니다.

RPM 퓨전이 설치되었지만 설치되지 않았습니다.활성화됨. 이것이 기본 동작입니다. 활성화하려면:

$ cd /etc/yum.repos.d/
$ sudo vim rpmfusion-free.repo

첫 번째 부분에서 enabled=10으로 설정할지 여부를 설정합니다.

$ sudo vim rpmfusion-nonfree.repo

다시 첫 번째 부분에서 enabled=10으로 설정되었는지 여부를 설정합니다.

그런 다음 업데이트를 실행하고 설치하십시오.

$ sudo dnf update
$ sudo dnf install vlc

관련 정보