Skip to content

DoThatKarma/acer-nitro-v16-linux-fix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Acer Nitro V16 GPU & Fan Fix

Fix for fans running at full speed on Acer Nitro V16 (ANV16-41 / N24C4) especially with AMD Ryzen + NVIDIA GPU hybrid graphics on Linux and Windows. But probably usable for different models of Acer Nitro lineup.

πŸ”₯ Problem

After switching between desktop environments (Cinnamon/GNOME) or fresh OS install, the NVIDIA GPU stays active constantly, causing:

  • πŸŒͺ️ Fans running at maximum speed constantly
  • πŸ”₯ High temperatures even when idle
  • πŸ”‹ Poor battery life
  • 🐌 System feeling sluggish

This is also an issue for this laptop overall so i added a fix for Windows too, to make the Acer Nitro an affordable and powerful computer you can use in peace.

βœ… Solution

This script configures hybrid GPU mode properly, ensuring the AMD integrated GPU is used by default and NVIDIA GPU only activates when needed for gaming/intensive tasks.


🐧 Linux Installation

Quick Install (One Command)

wget https://raw.githubusercontent.com/DoThatKarma/acer-nitro-v16-linux-fix/main/fix-nitro-gpu.sh && chmod +x fix-nitro-gpu.sh && ./fix-nitro-gpu.sh

Manual Install

  1. Download the script:
git clone https://github.com/DoThatKarma/acer-nitro-v16-linux-fix.git
cd acer-nitro-v16-linux-fix
  1. Make it executable:
chmod +x fix-nitro-gpu.sh
  1. Run the script:
./fix-nitro-gpu.sh
  1. Reboot when prompted

What It Does (Linux)

  1. βœ… Installs GPU management tools (nvidia-prime, TLP)
  2. βœ… Sets GPU to on-demand (hybrid) mode
  3. βœ… Configures TLP for optimal laptop power management
  4. βœ… Fixes Cinnamon compositor GPU settings
  5. βœ… Configures system to use AMD iGPU by default
  6. βœ… Adds helper commands for running apps with NVIDIA GPU

After Installation (Linux)

Normal Usage (Quiet & Cool): Just use your laptop normally. The AMD integrated GPU handles everything, keeping fans quiet and temps low.

Gaming (Full Performance):

# For Steam games
nvidia-run steam

# For other games/apps
nvidia-run ./game-executable

# Alternative
nvidia-offload your-game-command

Check GPU Status:

# Check which GPU mode is active
prime-select query

# Check if NVIDIA GPU is currently in use
nvidia-smi

# Monitor temperatures
watch -n 1 sensors

πŸͺŸ Windows Installation

Option A: Easy Install (Recommended for Beginners)

  1. Download: fix-nitro-gpu.bat
    • Right-click the link > Save As > fix-nitro-gpu.bat
  2. Double-click fix-nitro-gpu.bat
  3. Click "Yes" when Windows asks for admin permission
  4. Follow on-screen instructions
  5. Restart your computer

Option B: PowerShell (Advanced Users)

  1. Download: fix-nitro-gpu.ps1
  2. Right-click fix-nitro-gpu.ps1 > "Run with PowerShell"
  3. If you get an error about execution policy:
    • Open PowerShell as Administrator
    • Run: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
    • Type Y and press Enter
    • Try step 2 again
  4. Follow on-screen instructions
  5. Restart your computer

Manual NVIDIA Control Panel Setup (Windows)

After running the script and restarting:

  1. Open NVIDIA Control Panel (shortcut on desktop or right-click desktop)
  2. Go to Manage 3D Settings > Global Settings
  3. Set "Preferred graphics processor" to "Auto-select"
  4. Click Apply

For Gaming (Windows)

Method 1: Per-game settings in NVIDIA Control Panel

  • Manage 3D Settings > Program Settings
  • Click "Add" and select your game
  • Set to "High-performance NVIDIA processor"
  • Click Apply

Method 2: Right-click method

  • Right-click game .exe file
  • Select "Run with graphics processor" > "High-performance NVIDIA processor"

Method 3: Use the desktop helper

  • Drag your game .exe onto Run-With-NVIDIA.bat (created on desktop)

πŸ–₯️ Compatibility

Tested on:

  • βœ… Acer Nitro V16 (ANV16-41 / N24C4)
  • βœ… AMD Ryzen 7 8845HS + NVIDIA RTX 4060
  • βœ… Linux Mint / Ubuntu / Debian-based distros
  • βœ… Cinnamon, GNOME, KDE, XFCE desktop environments
  • βœ… Windows 10 / Windows 11

Should work on:

  • Other Acer Nitro V series with AMD + NVIDIA
  • Similar hybrid GPU laptops from other brands

πŸ”§ Troubleshooting

Linux: Fans still running full speed?

# Check if NVIDIA GPU is active
nvidia-smi

# If it shows processes, something is using the GPU
# Kill unnecessary processes or reboot

Linux: Want to always use NVIDIA GPU?

sudo prime-select nvidia
sudo reboot

Linux: Want to disable NVIDIA GPU completely?

sudo prime-select intel  # Uses AMD iGPU only
sudo reboot

Linux: Revert all changes

sudo apt remove tlp tlp-rdw
sudo rm /etc/tlp.conf
sudo rm /etc/environment.d/50-nvidia-prime.conf
sudo prime-select on-demand
sudo reboot

Windows: Script won't run

Error: Execution policy restriction

# Open PowerShell as Administrator and run:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Windows: Fans still loud

  • Open Task Manager (Ctrl+Shift+Esc)
  • Go to Performance tab
  • Check GPU 1 (NVIDIA) usage
  • If it shows activity, check what's using it under Processes tab
  • Close unnecessary programs or reboot

Windows: Revert changes

  • Open NVIDIA Control Panel
  • Manage 3D Settings > Restore Defaults
  • Open Services (Win+R > type services.msc)
  • Find NVIDIA services and set back to Automatic
  • Restart computer

πŸ› οΈ Additional Fan Control (Optional)

For more granular fan control, try Div Acer Manager:

# Linux only
git clone https://github.com/PXDiv/Div-Acer-Manager-Fan-Controls
cd Div-Acer-Manager-Fan-Controls
sudo ./install.sh

🀝 Contributing

Found this helpful? Star the repo! ⭐

Have improvements or found this works on other models? Pull requests welcome!

If this works on other Acer models, please open an issue to let us know.


πŸ“ Credits

  • Solution discovered while troubleshooting Acer Nitro V16 ANV16-41 (N24C4)
  • Thanks to the Linux and Windows communities for GPU management tools
  • Created by @DoThatKarma

πŸ“œ License

MIT License - Feel free to use and modify

See LICENSE file for details.


⚠️ Disclaimer

  • Use at your own risk. Always backup your data before running system scripts.
  • This script modifies system power management settings.
  • Not affiliated with Acer or NVIDIA.

🌟 Support

If this helped you, give it a star! ⭐

Having issues? Open an issue

--

Hope you enjoy this fix as much as me, it made the computer friendly to use in a quiet enviroment! Please star and share if u liked it!
And let me know if u have some more fixes or comments! :)


Best regards
DoThat

About

Fix for Acer Nitro V16 GPU and fan issues on Linux and Windows

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors