Last active
May 5, 2026 16:46
-
-
Save tlhakhan/af509d12839735fb83406dbc987d7b40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # for apt cache | |
| mkdir -p /opt/local/apt-cache | |
| cat << 'EOF' > /etc/apt/sources.list.d/cache.list | |
| deb [trusted=yes] http://console-1.local:3142 noble/ | |
| EOF | |
| apt-get update | |
| apt-get install -y --install-recommends linux-generic-hwe-24.04 | |
| # nvidia package install instructions | |
| # https://ubuntu.com/server/docs/how-to/graphics/install-nvidia-drivers/ | |
| apt-get install -y dkms nvidia-dkms-595-server | |
| apt-get install -y nvidia-utils-595-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment