mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
121 lines
7.0 KiB
Bash
121 lines
7.0 KiB
Bash
if [ "$(uname -m)" != "x86_64" ]
|
|
then
|
|
echo "Intel graphics will not be installed on this architecture."
|
|
exit 0
|
|
fi
|
|
|
|
|
|
UBUNTU_22_04=$(lsb_release -r | grep "22.04")
|
|
UBUNTU_24_04=$(lsb_release -r | grep "24.04")
|
|
|
|
# needs either ubuntu 22.0.4 or 24.04
|
|
if [ -z "$UBUNTU_22_04" ] && [ -z "$UBUNTU_24_04" ]
|
|
then
|
|
echo "Intel graphics package can not be installed. Ubuntu version could not be detected when checking lsb-release and /etc/os-release."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -n "$UBUNTU_22_04" ]
|
|
then
|
|
distro="jammy"
|
|
|
|
else
|
|
distro="noble"
|
|
fi
|
|
|
|
# no errors beyond this point
|
|
set -e
|
|
|
|
# the intel provided script is disabled since it does not work with the 6.8 kernel in Ubuntu 24.04 or Proxmox 8.2.
|
|
# manual installation of the Intel graphics stuff is required.
|
|
|
|
# echo "Installing Intel graphics packages."
|
|
# apt-get update && apt-get install -y gpg-agent &&
|
|
# rm -f /usr/share/keyrings/intel-graphics.gpg &&
|
|
# curl -L https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor --yes --output /usr/share/keyrings/intel-graphics.gpg &&
|
|
# echo 'deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc' | tee /etc/apt/sources.list.d/intel.gpu.jammy.list &&
|
|
# apt-get -y update &&
|
|
# apt-get -y install intel-opencl-icd &&
|
|
# apt-get -y dist-upgrade;
|
|
|
|
# need intel-media-va-driver-non-free, but all the other intel packages are installed from Intel github.
|
|
echo "Installing Intel graphics packages."
|
|
|
|
if [ "$distro" == "jammy" ]
|
|
then
|
|
apt-get update && apt-get install -y gpg-agent &&
|
|
rm -f /usr/share/keyrings/intel-graphics.gpg &&
|
|
curl -L https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor --yes --output /usr/share/keyrings/intel-graphics.gpg &&
|
|
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu $distro arc" | tee /etc/apt/sources.list.d/intel.gpu.$distro.list &&
|
|
apt-get -y update &&
|
|
apt-get -y install intel-media-va-driver-non-free &&
|
|
apt-get -y dist-upgrade;
|
|
else
|
|
apt-get update && apt-get install -y gpg-agent &&
|
|
rm -f /usr/share/keyrings/intel-graphics.gpg &&
|
|
curl -L https://repositories.intel.com/gpu/intel-graphics.key | gpg --dearmor --yes --output /usr/share/keyrings/intel-graphics.gpg &&
|
|
echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/gpu/ubuntu $distro unified" | tee /etc/apt/sources.list.d/intel-gpu-$distro.list &&
|
|
apt-get -y update &&
|
|
apt-get -y install intel-media-va-driver-non-free &&
|
|
apt-get -y dist-upgrade;
|
|
fi
|
|
|
|
|
|
rm -rf /tmp/gpu && mkdir -p /tmp/gpu && cd /tmp/gpu
|
|
|
|
apt-get install -y ocl-icd-libopencl1
|
|
|
|
# very stupid legacy + current install process conflict.
|
|
# install 24.35.30872.22 for legacy support. Then install latest.
|
|
# https://github.com/intel/compute-runtime/issues/770#issuecomment-2515166915
|
|
|
|
# original legacy packages
|
|
# # https://github.com/intel/compute-runtime/releases/tag/24.35.30872.22
|
|
# curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17537.20/intel-igc-core_1.0.17537.20_amd64.deb
|
|
# curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17537.20/intel-igc-opencl_1.0.17537.20_amd64.deb
|
|
# # curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-level-zero-gpu-dbgsym_1.3.30872.22_amd64.ddeb
|
|
# # curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-level-zero-gpu-legacy1-dbgsym_1.3.30872.22_amd64.ddeb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-level-zero-gpu-legacy1_1.3.30872.22_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-level-zero-gpu_1.3.30872.22_amd64.deb
|
|
# # curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-opencl-icd-dbgsym_24.35.30872.22_amd64.ddeb
|
|
# # curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-opencl-icd-legacy1-dbgsym_24.35.30872.22_amd64.ddeb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-opencl-icd-legacy1_24.35.30872.22_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/intel-opencl-icd_24.35.30872.22_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.22/libigdgmm12_22.5.0_amd64.deb
|
|
|
|
# new legacy packages
|
|
# https://github.com/intel/compute-runtime/releases/tag/24.35.30872.36
|
|
curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17537.24/intel-igc-core_1.0.17537.24_amd64.deb
|
|
curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17537.24/intel-igc-opencl_1.0.17537.24_amd64.deb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.36/intel-level-zero-gpu-legacy1-dbgsym_1.5.30872.36_amd64.ddeb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.36/intel-level-zero-gpu-legacy1_1.5.30872.36_amd64.deb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.36/intel-opencl-icd-legacy1-dbgsym_24.35.30872.36_amd64.ddeb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.36/intel-opencl-icd-legacy1_24.35.30872.36_amd64.deb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/24.35.30872.36/libigdgmm12_22.5.0_amd64.deb
|
|
|
|
dpkg -i *.deb
|
|
rm -f *.deb
|
|
|
|
# https://github.com/intel/compute-runtime/releases
|
|
# note that at time of commit, IGC supports ubuntu 24.04 only possibly due to their builder being on 24.04.
|
|
curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/v2.18.5/intel-igc-core-2_2.18.5+19820_amd64.deb
|
|
curl -O -L https://github.com/intel/intel-graphics-compiler/releases/download/v2.18.5/intel-igc-opencl-2_2.18.5+19820_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/intel-ocloc-dbgsym_25.35.35096.9-0_amd64.ddeb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/intel-ocloc_25.35.35096.9-0_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/intel-opencl-icd-dbgsym_25.35.35096.9-0_amd64.ddeb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/intel-opencl-icd_25.35.35096.9-0_amd64.deb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/libigdgmm12_22.8.1_amd64.deb
|
|
# curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/libze-intel-gpu1-dbgsym_25.35.35096.9-0_amd64.ddeb
|
|
curl -O -L https://github.com/intel/compute-runtime/releases/download/25.35.35096.9/libze-intel-gpu1_25.35.35096.9-0_amd64.deb
|
|
|
|
set +e
|
|
dpkg -i *.deb
|
|
set -e
|
|
# the legacy + latest process says this may be necessary but it does not seem to be in a clean environment.
|
|
apt-get -y install --fix-broken
|
|
|
|
|
|
cd /tmp && rm -rf /tmp/gpu
|
|
|
|
apt-get -y dist-upgrade
|