cc_staff
247
edits
No edit summary |
No edit summary |
||
Line 141: | Line 141: | ||
== Preparation of a VM running Debian10 == <!--T:7--> | == Preparation of a VM running Debian10 == <!--T:7--> | ||
Ensure that the latest packagesare installed and the system has been booted the latest stable kernel, as dkms will request the latest one available from the debian repositories. | |||
<pre> | |||
root@debian10:~# apt-get update && apt-get -y dist-upgrade && reboot | |||
</pre> | |||
After a successful reboot, the system should have the latest avaible kernel running and the repository can be installed, by installing the repo package. | |||
This package does also contain the gpg key all packages are signed with. | |||
<pre> | |||
root@debian10:~# apt-get -y install gnupg2 | |||
root@debian10:~# wget http://repo.arbutus.cloud.computecanada.ca/pulp/deb/debian/pool/main/arbutus-cloud-repo_0.1_all.deb | |||
root@debian10:~# dpkg -i arbutus-cloud-repo_0.1_all.deb | |||
</pre> | |||
The installation of the package will display a warning, since the key is directly imported (for convenience) via the packages post installation procedure. | |||
<pre> | |||
Setting up arbutus-cloud-repo (0.1) ... | |||
Warning: apt-key should not be used in scripts (called from postinst maintainerscript of the package arbutus-cloud-repo) | |||
OK | |||
</pre> | |||
Update the local apt cache and installation of the vGPU packages. | |||
<pre> | |||
root@debian10:~# apt-get -y install nvidia-vgpu-kmod nvidia-vgpu-tools nvidia-vgpu-gridd | |||
</pre> | |||
After the successful installation, the same commands can be used to test the installation and see the license status. | |||
== Preparation of a VM running Ubuntu20 == <!--T:8--> | == Preparation of a VM running Ubuntu20 == <!--T:8--> |