Ashark / archlinux-amdgpu-pro

Radeon Software for Linux (AMDGPU PRO) PKGBUILD generator for ArchLinux AUR
https://aur.archlinux.org/pkgbase/amdgpu-pro-installer/
119 stars 25 forks source link

Failed to connect to repo.radeon.com #90

Closed tetoNidan closed 1 year ago

tetoNidan commented 1 year ago

[general Question]

installing through git curl: (28) Failed to connect to repo.radeon.com port 443 after 129320 ms: Couldn't connect to server

Been trying for a few hours and was wondering if there is a change in deb file location?

Also tried following the directions on the code page, dpkg-deb and aptly is not in pacman. Doing a search for either provides no results in pacman. Aptly is in the AUR though but dpkg-deb is not. Will that cause issues when installing through PKGBUILD?

Thanks!

mesmerx commented 1 year ago

about dpkg you can use dpkg-git, its only to create the MAKEPKG file, if you use the Makepkg file already created (and git added) this will not matter

about the file downloads it seems a route problem, here the downloads is fine it seems 20230618_20h09m40s_grim

mesmerx commented 1 year ago

it happens a lot of times with resolv problems, try to use resolved https://wiki.archlinux.org/title/Systemd-resolved

tetoNidan commented 1 year ago

Thanks, I have been able to makepkg from git. However which file do I use for sudo pacman -U package_name? Guess I'm a little unclear. I see several files that have .pkg.tar.zst, I would assume I would install each individually? Sorry kind of a noob to arch and this is my first AUR-git build.

So please tell me if im wrong but since I have a 64 bit OS I would do the following:

sudo pacman -U amdgpu-pro-oglp-23.10_1595145-1-x86_64.pkg.tar.zst 
sudo pacman -U amf-amdgpu-pro-23.10_1595145-1-x86_64.pkg.tar.zst 
sudo pacman -U lib32-amdgpu-pro-oglp-23.10_1595145-1-x86_64.pkg.tar.zst
sudo pacman -U lib32-vulkan-amdgpu-pro-23.10_1595145-1-x86_64.pkg.tar.zst
sudo pacman -U vulkan-amdgpu-pro-23.10_1595145-1-x86_64.pkg.tar.zst

Or is there a single file to build them all at once? I think the former is the answer but I don't want to mess anything up. The reason I ask is when reading the PKGBUILD file I see calls to move files to locations. My bash programming is subpar though so I thought it best to ask.

Thanks.

tetoNidan commented 1 year ago

I figured it out. For the noobs out there reading this makepkg -i is the magic.

Thanks mesmerx!