Xử lý lỗi khi yum trên CentOS 8 AppStream
Bài viết này, hướng dẫn các Bạn khách fix lỗi Failed to download metadata for repo ‘AppStream’ [CentOS] trong quá trình sử dụng yum
# yum update
Failed to download metadata for repo ‘AppStream’
CentOS-8 – AppStream 70 B/s | 38 B 00:00
Error: Failed to download metadata for repo ‘AppStream’: Cannot prepare internal mirrorlist: No URLs in mirrorlist
Để xử lý vấn đề này, các bạn thực hiện như sau:
Bước 1: Đi tới thư mục /etc/yum.repos.d/
# cd /etc/yum.repos.d/
Bước 2: Thực hiện command sau để điều chỉnh file cấu hình
# sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* # sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
Bước 3: Thực hiện thao tác yum update
# yum update -y
Chúc Quý khách thành công