When I ran to Nvidia's website to download their 64bit Linux drivers, it downloaded a file named "NVIDIA-Linux-x86_64-319.49.run". Since this wasn't a file extension I'd seen before, I assumed double clicking would do nothing (Incorrect; it actually tried opening it in a word processor which hilariously meets with a crashed word processor).
I installed new drivers through a terminal. For future reference, however, assuming this is an archive, and clearly Nvidia expects everyone to be able to crack it open on command, how would I go about making the .run file actually be useful? Was there a command to decompress it and install the drivers? Was it a script and I just have no idea how to execute it?
(Very new to Linux; Ubuntu's my first attempt at running a distro since ...oh, RedHat 6.something. Anyways, so much for context.)
chmod +x {filename}
GUI method: In Nautilus, right click on the file, click "Permissions", then check the box to "Allow executing this file as a program. After this, when double-clicking it will open as a program not a file. – TrailRider Sep 13 '13 at 00:45Why would I want to install NVidia drivers? As a Windows user, I'm used to having to make sure my drivers are updated to ensure compatibility and maximize performance, and I assumed this would be the case in Linux as well. Does Ubuntu magically do this without my permission or instruction?
– Commander Keen Sep 14 '13 at 00:28-x
to extract it. The first ~100 lines are bash script, the file was made with Makeself. Also, just as nice reminder, when you "double clicked" it probably did nothing because it would need root permissions to run. So my money is that you still use nouveau drivers. – Braiam Sep 14 '13 at 01:17