Posts

Showing posts with the label NVIDIA Driver

Changing the Default Terminal to Terminator on Ubuntu

Image
Terminator is a powerful tool for developers, allowing you to manage multiple terminal sessions in a single window. Features like splitting panes, tabs, and simultaneous input can significantly boost your productivity. Step 1: Install Terminator First, install Terminator using the apt package manager. sudo apt update sudo apt install terminator -y The -y option automatically answers 'yes' to any prompts during the installation process, streamlining the setup. Step 2: Set as the System Default Ubuntu uses a utility called update-alternatives to manage default applications. We'll use this tool to change the default terminal emulator ( x-terminal-emulator ) to Terminator. Run the Configuration Command Enter the following command in your terminal. A list of available terminals will appear. sudo update-alternatives --config x-terminal-emulator Select Terminator From the resulting list, enter the selection number corresponding to terminator and press Enter. ...

Install NVIDIA Driver for GeForce GTX 1660 Ti on Ubuntu 24.04

Image
If you have an NVIDIA GeForce GTX 1660 Ti installed on your laptop and want to enable GPU support (e.g., for CUDA-enabled libraries like PyTorch), here's how to install the appropriate NVIDIA driver on Ubuntu 24.04. Step 1: Check if your NVIDIA GPU is detected stt@GU502DU:~$ lspci | grep -i nvidia 01:00.0 VGA compatible controller: NVIDIA Corporation TU116M [GeForce GTX 1660 Ti Mobile] (rev a1) 01:00.1 Audio device: NVIDIA Corporation TU116 High Definition Audio Controller (rev a1) 01:00.2 USB controller: NVIDIA Corporation TU116 USB 3.1 Host Controller (rev a1) 01:00.3 Serial bus controller: NVIDIA Corporation TU116 USB Type-C UCSI Controller (rev a1) Step 2: Check current driver status If you see something like this when you run nvidia-smi , it means the driver is not installed yet. root@GU502DU:~# nvidia-smi Command 'nvidia-smi' not found, but can be installed with: apt install nvidia-utils-470 apt install nvidia-utils-535 apt install nvidia-utils...