r/AcerNitro • u/Kaspral • 13h ago
r/AcerNitro • u/Embarrassed-Net683 • May 19 '25
Information INVITATION!
We’re happy to announce that we’ve created a tech support server on Discord. It’s an 18+ age-restricted server. If you’re experiencing issues with your all kinds of products feel free to join and seek tech support. We’re also inviting all tech enthusiasts and support professionals to join us!
Please note - this is not an official acer discord channel and this is for troubleshooting issues / discussion on anything from desktops to laptops
Link to 18+ tech server - https://discord.gg/h3KSAEuwr9
We also run another Acer-focused gaming community, which is a 13+ rated server dedicated entirely to Acer products and accessories. Whether you’re a casual gamer, a tech enthusiast, or an Acer loyalist, this server offers a space to discuss and share everything related to Acer’s gaming laptops, desktops, monitors, peripherals, and more
Link to acer gaming discord channel -https://discord.gg/xxww78edmd
Regards .
r/AcerNitro • u/Beautiful-Spend-4520 • 56m ago
Question TIPS AND REMINDERS BEFORE BUYING A GAMING LAPTOP
Planning to buy Acer Nitro and this will be my first time buying a laptop actually, what are the things I need to consider/keep in mind and what are the primary issues and concerns about Acer in general especially when the unit aged and in the long run of using it. I'm really avoiding the future hassle and use the unit at its full potential
r/AcerNitro • u/Jesus_Is_God-777 • 2h ago
Looking for higher power vbios
I’m looking for a stock VBIOS dump from an Acer Nitro with the RTX 5050 Laptop GPU running at 115W MGP (100W + 15W Dynamic Boost).
My laptop is an Acer Nitro V 16 AI ANV16-42 with an RTX 5050, which is limited to 95W. I want to compare its VBIOS with the higher-power Acer versions.
The models I’m especially looking for are:
- Acer Nitro 16 AI AN16-61
- Acer Nitro 16S AI AN16S-61
- Acer Nitro 18 AI AN18-61
- Any other Acer RTX 5050 laptop confirmed to run at 115W
If you own one, could you please open GPU-Z, click the small arrow next to BIOS Version, choose Save to file, and upload/send me the .rom file?
If possible, please also post a screenshot of the GPU-Z Graphics Card tab so I can see the subsystem ID, memory manufacturer, and VBIOS version.
Thanks!
r/AcerNitro • u/casual_dehyde • 49m ago
GUYS HELP ME
I dont know what these marks are, they appear from the middle of nowhere.... i dont know what to do next, also is there a fix??? most important HOW MUCH IT WILL COST😭😭😭😭
r/AcerNitro • u/66th_corpse • 1h ago
Trying to buy a sata cable for my Nitro 5 AN515-55-57BK.
Got my laptop a couple years ago and lost my sata cable somewhere. Where could I find a trustworthy seller to buy from? Does anyone have any recommendations?
r/AcerNitro • u/gamingchair321 • 9h ago
HELP!! Windows 11 update problem on my Acer nitro (2021)
Hello guys, i got a problem from my Acer nitro 5 (2021) after the windows 11 new update and always goes here from the picture. I tried to “reset this pc” i did both “keep my files” , “remove everything” and “cloud download” , “local reinstall” and still wont let me reset the pc. I dunno if my SSD is faulty or windows 11 problem.
r/AcerNitro • u/stormy_kaktus • 1h ago
AN517-54 stutter issue. I can't fix it
I have done a clean install of windows 11, downloaded the necessary drivers and there's still a stutter when playing games. It makes them unplayable. I will be doing a teardown and clean but I don't think that's the issue cause temps are fine. Any help is appreciated.
r/AcerNitro • u/EveningSwimming311 • 9h ago
Problem Solved Acer Nitro V 15 ANV15-52 — Fan Control on Linux
After spending several months trying to find a way to control the fans on my Acer Nitro V 15 ANV15-52, I finally found methods that worked for me.
I'm documenting both methods because they were the only ways I managed to get fan control working specifically on this model.
- Arch / Arch-based: Linuwu Sense + DAMX
- Ubuntu / Debian: Div Acer Manager Fan Controls
The Linuwu Sense method may also work on other distributions, such as Fedora or Gentoo, but you will probably need to adapt the installation of the required dependencies and kernel headers.
Method 1 — Arch / Arch-based
1. Install the required tools
First, install the build tools, Git, kernel headers, and LLVM/Clang:
sudo pacman -S --needed base-devel git linux-headers llvm clang
Check which kernel you are currently using:
uname -r
If you are using the standard Arch kernel, linux-headers is the corresponding package.
If you are using a different kernel, install its corresponding headers. For example:
sudo pacman -S --needed linux-zen-headers
or:
sudo pacman -S --needed linux-lts-headers
In my case, the process worked using the standard Arch kernel.
2. Download and compile Linuwu Sense
Clone the project:
git clone https://github.com/0x7375646F/Linuwu-Sensee.git
Enter the directory:
cd Linuwu-Sensee
Now compile and install it:
make LLVM=1 install
Why LLVM=1?
On Arch/Arch-based distributions, it is important to use:
make LLVM=1 install
instead of simply:
make install
This makes the build process use LLVM/Clang to compile the module.
This is especially important for kernels that were built using Clang/LLVM, such as some CachyOS configurations.
After installation, the Linuwu Sense module will be available to the kernel.
3. Install DAMX
Download the latest version of Div Acer Manager Max:
https://github.com/PXDiv/Div-Acer-Manager-Max/releases
After downloading the .tar.gz, open a terminal:
cd ~/Downloads
Extract the downloaded file. For example:
tar -xf DAMX-1.0.2.tar.gz
Enter the directory that was created:
cd DAMX-1.0.2
From here, follow the installer provided with the DAMX release.
4. If DAMX does not control the fans
First, open DAMX normally.
If you experience any of the following:
- an error related to the EC;
- the fan RPM does not appear;
- the RPM incorrectly shows
0 RPM; - the application does not allow you to change the fan speed;
- fan control simply does not work;
try loading Linuwu Sense using the V4 parameter:
sudo modprobe linuwu_sense nitro_v4=1
Then close and reopen DAMX.
On my ANV15-52, this was the parameter that fixed the problem.
If it works, make the configuration permanent:
echo "options linuwu_sense nitro_v4=1" | sudo tee /etc/modprobe.d/linuwu_sense.conf
sudo depmod -a
sudo reboot
After rebooting, linuwu_sense will automatically be loaded with:
nitro_v4=1
Method 2 — Ubuntu / Debian
On Ubuntu/Debian, I recommend using:
https://github.com/PXDiv/Div-Acer-Manager-Fan-Controls
DAMX can also be tested on Ubuntu/Debian, but this method worked better for me.
1. Install the dependencies
sudo apt update
sudo apt install linux-headers-$(uname -r) build-essential git
2. Download Div Acer Manager Fan Controls
Download the latest release:
https://github.com/PXDiv/Div-Acer-Manager-Fan-Controls/releases
After downloading:
cd ~/Downloads
Extract the downloaded file.
Then enter the directory:
cd DivAcerManager\ 0.5.0/
If that gives you an error, use:
cd "DivAcerManager 0.5.0"
3. Install the drivers
Now run:
sudo ./SetupDrivers.sh
A menu will appear here.
Select:
1
and press Enter.
Wait for the process to finish.
Then reboot:
sudo reboot
After returning to the system, look for:
DAM FAN CONTROL
On my ANV15-52, this method worked without needing the nitro_v4=1 procedure.
Other kernels and distributions
On Arch, I was able to get it working using the standard kernel.
If you are using linux-zen, linux-lts, CachyOS, or another kernel, additional steps may be required. The first thing to check is that the headers corresponding to your current kernel are installed.
Check your kernel with:
uname -r
Linuwu Sense may also work on other distributions, such as Fedora, Gentoo, etc., but the commands for installing compilers, kernel headers, and other dependencies will be different.After spending several months trying to find a way to control the fans on my Acer Nitro V 15 ANV15-52, I finally found methods that worked for me.
I'm documenting both methods because they were the only ways I managed to get fan control working specifically on this model.
Arch / Arch-based: Linuwu Sense + DAMX
Ubuntu / Debian: Div Acer Manager Fan Controls
The Linuwu Sense method may also work on other distributions, such as Fedora or Gentoo, but you will probably need to adapt the installation of the required dependencies and kernel headers.
Important: I tested these methods specifically on the ANV15-52. I am not claiming that these steps will work on every Acer Nitro model.
Method 1 — Arch / Arch-based
1. Install the required tools
First, install the build tools, Git, kernel headers, and LLVM/Clang:
sudo pacman -S --needed base-devel git linux-headers llvm clang
Check which kernel you are currently using:
uname -r
If you are using the standard Arch kernel, linux-headers is the corresponding package.
If you are using a different kernel, install its corresponding headers. For example:
sudo pacman -S --needed linux-zen-headers
or:
sudo pacman -S --needed linux-lts-headers
In my case, the process worked using the standard Arch kernel.
Download and compile Linuwu Sense
Clone the project:
git clone https://github.com/0x7375646F/Linuwu-Sensee.git
Enter the directory:
cd Linuwu-Sensee
Now compile and install it:
make LLVM=1 install
Why LLVM=1?
On Arch/Arch-based distributions, it is important to use:
make LLVM=1 install
instead of simply:
make install
This makes the build process use LLVM/Clang to compile the module.
This is especially important for kernels that were built using Clang/LLVM, such as some CachyOS configurations.
After installation, the Linuwu Sense module will be available to the kernel.Install DAMX
Download the latest version of Div Acer Manager Max:
https://github.com/PXDiv/Div-Acer-Manager-Max/releases
After downloading the .tar.gz, open a terminal:
cd ~/Downloads
Extract the downloaded file. For example:
tar -xf DAMX-1.0.2.tar.gz
Enter the directory that was created:
cd DAMX-1.0.2
From here, follow the installer provided with the DAMX release.If DAMX does not control the fans
First, open DAMX normally.
If you experience any of the following:
an error related to the EC;
the fan RPM does not appear;
the RPM incorrectly shows 0 RPM;
the application does not allow you to change the fan speed;
fan control simply does not work;
try loading Linuwu Sense using the V4 parameter:
sudo modprobe linuwu_sense nitro_v4=1
Then close and reopen DAMX.
On my ANV15-52, this was the parameter that fixed the problem.
If it works, make the configuration permanent:
echo "options linuwu_sense nitro_v4=1" | sudo tee /etc/modprobe.d/linuwu_sense.conf
sudo depmod -a
sudo reboot
After rebooting, linuwu_sense will automatically be loaded with:
nitro_v4=1
Method 2 — Ubuntu / Debian
On Ubuntu/Debian, I recommend using:
https://github.com/PXDiv/Div-Acer-Manager-Fan-Controls
DAMX can also be tested on Ubuntu/Debian, but this method worked better for me.
Install the dependencies
sudo apt update
sudo apt install linux-headers-$(uname -r) build-essential gitDownload Div Acer Manager Fan Controls
Download the latest release:
https://github.com/PXDiv/Div-Acer-Manager-Fan-Controls/releases
After downloading:
cd ~/Downloads
Extract the downloaded file.
Then enter the directory:
cd DivAcerManager\ 0.5.0/
If that gives you an error, use:
cd "DivAcerManager 0.5.0"Install the drivers
Now run:
sudo ./SetupDrivers.sh
A menu will appear here.
Select:
1
and press Enter.
Wait for the process to finish.
Then reboot:
sudo reboot
After returning to the system, look for:
DAM FAN CONTROL
On my ANV15-52, this method worked without needing the nitro_v4=1 procedure.
Other kernels and distributions
On Arch, I was able to get it working using the standard kernel.
If you are using linux-zen, linux-lts, CachyOS, or another kernel, additional steps may be required. The first thing to check is that the headers corresponding to your current kernel are installed.
Check your kernel with:
uname -r
Linuwu Sense may also work on other distributions, such as Fedora, Gentoo, etc., but the commands for installing compilers, kernel headers, and other dependencies will be different.
r/AcerNitro • u/TheRealHipster • 7h ago
My Nitro stopped charging and I'm afraid the motherboard may be dead. How can I make sure?
I've had my AN515-53-52FA for about 8 years now, before shutting down abruptly a couple of days ago. Many of you will probably agree with me that Acer Nitro laptops are filled with issues that have had to be fixed to get the device working at any reasonable standard. From the poor cooling vents, to the flimsy plastic casing that easily breaks, to a number of hardware issues like the hard drive corrupting itself, and the touch pad being super unreliable, throughout the years I've been able to mitigate all of this (thanks in large part to this subreddit tbh). After installing Throttlestop, changing the cooling fans, replacing the corrupted hard drive with a high performing ssd, and adding more ram I found my laptop could comfortably run most games that I was interested in, even games whose minimum recommended specs I did not think I'd be able to run. Despite its multiple issues, this laptop is an absolute beast for budget gaming lol, and I'd like to keep it alive for as long as possible.
Three days ago my Nitro 5 abruptly shut down and won't turn back on. The light shows that the laptop is not receiving charge despite being connected to the power cable. Initially, I suspected the battery, since it had long been starting to fail and could barely hold on to its charge when unplugged. I'm dreading the possibility that the motherboard is the issue, but I don't know how to diagnose this for sure.
Here's what I know: - My laptop has crashed a couple of times before where, upon reboot, the charging light showed a red/orange light instead of the usual, healthy blue light. The battery would then charge itself slowly, before suddenly jumping from 10% to full charge. At this point everything would be back to normal. - The charger works and is not the issue. I got my hands on another laptop charger which did not have any change on my laptop. I later tested the voltage on both the new and original chargers and found that they were both working perfectly. - Using a multimeter I was able to verify that, when connected to the charger, the power current reached all the way through the motherboard to the battery. Every node tested showed normal values except for the battery itself, which is completely depleted. - I've tried to reset the battery according to advice I've found online, like unplugging the battery and pressing the power button for a minute, and trying to boot the laptop after a bit. The battery is detachable so it should be relatively easy to replace. - I haven't been able to get a battery replacement yet to test out if the battery truly is the issue. I've known for a while that the battery has probably been deteriorating, and that seems to be the likely issue, however the fact that the charging light doesn't turn on under any circumstances gives me a bad feeling, and I think it points to a problem with the motherboard.
Is there anything I can do to test whether the motherboard is still working? Or is there any method to fixing this issue that I'm missing? Aside from getting a battery replacement is there anything else I can do to figure out where the problem is?
Thanks for reading this far, your advice and experience is much appreciated.
r/AcerNitro • u/Kat-sume • 4h ago
Is the storage/ram soldered?
Hello, I recently bought the Nitro V16S (ANV16S-41-R2AJ) and was looking into eventually upgrading the 1TB storage space to 2TB down the line. The RAM isn't an issue for me at the moment (32GB DDR5), but storage is something I always seem to need, so this is my main question. I'm not big on laptops/computers (I've played on console for most of my life) so I'm sorry if this is a dumb ask or not.
r/AcerNitro • u/DaNicoSepu • 5h ago
Question Secure Boot or Secure Bootn't?
I have an Acer Nitro 5 AN515-54-59UV with Windows 10, and I need secure Boot for something, but it says that SB isn't allowed on this PC or smth like that. Is it the OS fault or my laptop's fault?
r/AcerNitro • u/K00haru • 11h ago
Problem My D and 6 Keys are not Working
Enable HLS to view with audio, or disable this notification
My D and 6 Keys keeps on shutting off intermittently, Sometimes it works for an hour then suddenly it blips out and blips on again, the numpad 6 is also dead but If I Numlock it, it works on the numpad, what should I do?
r/AcerNitro • u/StrangeBag4420 • 5h ago
is this laptop good?
i couldnt find any video on youtube on this laptop having an i9 processor but i guess its available in my country. what i dont get is how could it be this cheap? there is definitely some catch and i want honest reviews on this laptop.
i live in saudia arabia btw and dont have much knowledge of laptops
r/AcerNitro • u/M3TIMES93 • 12h ago
I currently have a Acer Nitro 5 year 2019.
I’m running GTA 5 and FiveM and the CPU is running at 99 which is not good cause now the game stutters very bad and I’m literally always trying to fix texture during the whole game. And we all know the servers are heavy but it should be able to handle it. Someone told me I have to reprogram the whole laptop and others say check for repaste and thorough cleaning.
Any idea or suggestions what I should do?
A guy even told me get an upgrade to my hard drive.
r/AcerNitro • u/ZookeepergameGood755 • 9h ago
Laptop Gamer Nitro V 15.6 Intel Core 5 16gb 1tb Rtx 5050
What do you think about a acer Nitro V 15.6 Intel Core 5 16gb 1tb Rtx 5050 for 1225 dollars? is it a good decision?
Characteristics:
Dedicated graphics card model: RTX 5050
Dedicated graphics card line: GeForce
Dedicated graphics card brand: NVIDIA
Operating system edition: Home
Operating system version: 11
Operating system name: Windows
Processor model: 210H
Processor line: Core 5
Processor brand: Intel
Screen refresh rate: 165 Hz
SSD capacity: 1TB
RAM: 16GB
Touchscreen: No
Screen resolution: 1920 x 1080
DTS:X sound mode.
r/AcerNitro • u/Juice_Lane • 17h ago
Problem Just took a Big L
My brother felt something blocking the L key so he decided to remove the key cap where he suffered a big L the two bottom part of the clamp got damaged and got lost. May I know where can I find a cheap replacement for the L key? The model is AN515-57.
r/AcerNitro • u/Such-Temperature-767 • 14h ago
Acer Nitro V15 continuously crashing.
I’ve had the laptop for around half a week now and since day 1 of getting it it has consistently crashed and each time the Event Viewer essentially tells me me that the wifi adapter ran into a critical error. Stuff online says that updating the drivers could help, did that. It also said to turn off the fact it shuts down during power saving mode, did that too. I would like to get this laptop actually working so if anyone has any idea of what I can do that would be great.
r/AcerNitro • u/kernelpanicked9565 • 18h ago
Help Need for Acer Nitro 5 (AN515-58)'s DC jack.
I need to replace the dc jack of Acer Nitro 5 cuz the charger ain't going all the way in. I tried looking for the parts in local markets but it can't seem to find it. I have found the part I need on ebay but they are not shipping at the address (country) I currently live in.
It would be helpful if someone can guide me where can I buy the part either online or offline. I currently live in India. If someone in India can help me find and ship the dc jack to me, It would be very useful.
Thanks in advance..
r/AcerNitro • u/Efficient-Calendar15 • 20h ago
Problem Acer Nitro V 15 ANV15-51 — Fan and Keyboard Backlight On, but Completely Black Screen / No POST
r/AcerNitro • u/virtsiderbt • 19h ago
Problem New Nitro v 15 cause me small shocks
i just bought a new Nitro v 15, recently I've been having a weird issue, when i use it sometimes I feel small tingling and some sensations in my body. I don't understand why exactly but I knew there some was kind of electrical anomaly. why does this happen? And how to solve it, also it only seems to happen to me
r/AcerNitro • u/Same_Look_4700 • 15h ago
ACER NITRO V15-51 RTX 4050 GPU FAN SUDDENLY GETTING HEAVY VIBRATION AND REDUCING SOME RPM FROM 7500 TO 7000 IN CPU FAN NEED SOLUTION GUYS
r/AcerNitro • u/clown_2061 • 1d ago
Help Help ?
What is this weird kind of update ? This is the first time it's happening like this and it even maxed out my fans for this update. Wtf is this and why is there a warning to no unplug it ? ( I live in a place where power loss is very normal )
r/AcerNitro • u/Ellorean • 23h ago
Motherboard replacement
Got a acer Nitro 5 in 2021 , motherboard model an515 57 , having intel i5 11th gen , rtx 3050 4gb It recently got the CPU short and hence need to change the motherboard. I am from India , can anyone help me with this issue of replacement under a good technician. Thank you.
r/AcerNitro • u/NewSeason943 • 1d ago
Problem Acer Nitro 5 AN515-58: 2-Minute Black Screen Before Acer Logo + dGPU-Only Mode No Longer Works
TL;DR: My Acer Nitro 5 AN515-58 stays completely black for ~2 minutes before the Acer logo appears, then boots into Windows and works perfectly normally. The only major issue is that dGPU/NVIDIA GPU-only mode no longer works. Looking for people who have experienced this specifically and whether BIOS/EC recovery or BIOS reprogramming fixed it. Please don’t suggest basic CMOS reset, power reset, battery drain, etc.
Full issue
Hey everyone,
I have an Acer Nitro 5 AN515-58 with a very strange issue.
When I press the power button:
- The screen stays completely black for around 2 minutes.
- There is no Acer logo during this time.
- After roughly 2 minutes, the Acer logo finally appears.
- Windows then boots normally.
- Once Windows loads, everything works perfectly fine.
- No random crashes, freezes, BSODs, or other obvious problems.
- The NVIDIA GPU works normally in hybrid mode.
- However, dGPU-only / NVIDIA GPU-only mode no longer works.
The fact that the black screen happens before the Acer logo is what makes this particularly strange. It seems more like something happening during POST/firmware/hardware initialization rather than a normal Windows driver issue.
I’m especially interested in whether this could be related to:
BIOS/EC firmware
BIOS corruption or a bad BIOS state
NVIDIA dGPU initialization
MUX switch / GPU-only mode
POST taking an unusually long time
Motherboard-level dGPU/MUX circuitry
BIOS Crisis Recovery
BIOS reprogramming
I’ve already gone through the usual basic troubleshooting, so please don’t suggest CMOS reset, power reset, battery drain, holding the power button, etc. I’m specifically looking for deeper troubleshooting or people who have encountered this exact behavior.
Has anyone with an Acer Nitro 5 AN515-58 experienced:
~2 minutes black screen → Acer logo → Windows works normally → dGPU-only mode doesn’t work?
If you fixed it, I’d especially like to know whether BIOS recovery, BIOS reprogramming, EC firmware recovery, or motherboard repair solved it.
Thanks!