AlmaLinux는 ffmpeg를 설치할 수 없습니다

AlmaLinux는 ffmpeg를 설치할 수 없습니다

AlmaLinux 8(r8.7(Stone Smilodon))을 새로 설치합니다. ffmpeg 설치를 준비하기 위해 다음을 실행했습니다.

sudo dnf -y install https://download.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo yum install yum-utils -y
sudo yum-config-manager --enable powertools
sudo dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm -y
sudo dnf install --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm -y

final을 실행하면 sudo dnf install ffmpeg ffmpeg-devel다음과 같은 오류가 발생합니다.

Last metadata expiration check: 0:22:38 ago on Tue 25 Apr 2023 11:48:30 AM MDT.
No match for argument: ffmpeg
Error: Unable to find a match: ffmpeg

이전 컴퓨터와 다른 버전의 'Nix'에서 문제 없이 ffmpeg를 설치하고 실행했지만 이것이 나를 당황하게 합니다. 나는 실행 dnf repolist하고 이것을 얻었습니다 :

repo id                                                           repo name
appstream                                                         AlmaLinux 8 - AppStream
baseos                                                            AlmaLinux 8 - BaseOS
dell-omsa-indep                                                   Dell OMSA repository - Hardware independent
dell-omsa-specific                                                Dell OMSA repository - Hardware specific
dell-system-update_dependent                                      dell-system-update_dependent
dell-system-update_independent                                    dell-system-update_independent
elevate                                                           ELevate
epel                                                              Extra Packages for Enterprise Linux 8 - x86_64
extras                                                            AlmaLinux 8 - Extras
influxdata                                                        InfluxData Repository - Stable
influxdb                                                          InfluxDB Repository
powertools                                                        AlmaLinux 8 - PowerTools

따라서 저장소가 존재하고 정확합니다.

다른 곳을 확인해야 할지 모르겠습니다. 이는 간단해야 합니다. 누군가 이것을 설치하도록 도와줄 수 있나요?

답변1

다음 단계가 나에게 효과적이었습니다.

dnf config-manager --set-enabled powertools
dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm -y
dnf install --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm -y
dnf install ffmpeg

epel도 필요하지 않습니다. ffmpeg에는 powertools와 rpmfusion 저장소만으로도 충분합니다.

관련 정보