...
This takes quite a bit of time (maybe 10-12 minutes)... So step away from your system after running this.
Code Block |
---|
yumapt install ubuntu-desktop -y |
...
Code Block |
---|
#get root access again
sudo bash
<password>
#this downloads the NVIDIA driver .run file to whatever directory you are currently in
#for example sake, this is the latest A6000 Linux Driver file at the time of publishing this article
wget https://us.download.nvidia.com/XFree86/Linux-x86_64/460.56/NVIDIA-Linux-x86_64-460.56.run
#makes the .run file executable
chmod +x /NVIDIA-Linux-x86_64-460.56.run
#disables all GUI/display
init 3
#executes the now executable .run file
./NVIDIA-Linux-x86_64-460.56.run |
...