본문 바로가기
Server story

[RHEL 9.4] AST2600 1920x1200 해상도 이슈 해결 방법

by phpdoumi 2024. 10. 30.

아직 Ubuntu 24.04에서 적용하진 않았지만, 같은 방식으로 가능할 것 같다. (해결 안됨)

 

참고 사이트:

https://www.cyberciti.biz/faq/centos-linux-install-gcc-c-c-compiler/#google_vignette

https://majuboki12.github.io/posts/how_to_config_RHEL_9_X_local_repository/

 

How to Configure Local Repository on RHEL 9.x

1. Mount RHEL 9.X Media and Copy Package file

majuboki12.github.io

https://www.aspeedtech.com/support_driver/

 

ASPEED Technology Inc.

ASPEED Technology Inc. is a highly innovative fabless IC-design company founded in 2004 and headquartered in Hsinchu, Taiwan. As a pioneer of cutting-edge SoC solutions with a focus on the niche market of high-margin products, the company's specialties ran

www.aspeedtech.com

추가 패키지 설치를 위해 localrepo구성.
~# mkdir -p /var/local/localrepo
~# mount Downloads/rhel-9.4-x86_64-dvd.iso /mnt
~# cp -rfpv /mnt/* /var/local/localrepo/
~# umount /mnt
~# 
~# mkdir -p /etc/yum.repos.d/repo_bak
~# mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo_bak/
~# vi /etc/yum.repos.d/local.repo
[RHEL9.4_LocalRepository-BaseOS]
name=Redhat Enterprise Linux 9.4 - BaseOS
metadata_expire=-1
gpgcheck=0
enabled=1
baseurl=file:///var/local/localrepo/BaseOS
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

[RHEL9.4_LocalRepository-AppStream]
name=Redhat Enterprise Linux 9.4 - AppStream
metadata_expire=-1
gpgcheck=0
enabled=1
baseurl=file:///var/local/localrepo/AppStream
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
   
~# dnf repolist

추가 패키지 설치
~# yum install rpmbuild
~# yum group install 'Development Tools'

그래픽드라이버 소스 build
~# cd Downloads/
~# tar xvfz Linux_DRM_1.14.4_4.tar.gz 
~# cd Linux_DRM_1.14.4_4/RPM
~# ./auto-srpm.sh 

그래픽드라이버 업데이트 (설치 아님)
~# cd ~/rpmbuild/RPMS/
~# rpm -Uvh ast-drm.1.14.4.4.rpm 
~# 
~# reboot

 

End of line.

댓글