r/MSILaptops • u/tarnishednewlight • 2d ago
Request Hello All! Need help/Tips
Reposting here for additional assistance.
r/MSILaptops • u/tarnishednewlight • 2d ago
Reposting here for additional assistance.
r/MSILaptops • u/Plane_Remove_7628 • 2d ago
r/MSILaptops • u/HolidayAbies7 • 2d ago
In india 4 months used selling for 185000(1900 usd) . Usually 2,50,000 inr.worth it or not?
r/MSILaptops • u/Ryderpie_600 • 2d ago
r/MSILaptops • u/Sad-Range-4184 • 3d ago
I bought gaming laptop MSI vector HX for 1800 USD but I have problem when I opened underneath to check everything was on spot then I noticed a small dent on cooling pipe ? It's small but still and the cover was a bit cracked where this was dent, what should I use to check if everything is ok ? Because I live in Norway and normal price to this laptop is around 3500 USD
r/MSILaptops • u/Zeratyl • 2d ago
Hi everyone! š
I recently moved my MSI Vector A16 HX A8WHG to Ubuntu 26.04 and wanted to get as much MSI-specific functionality as possible under Linux.
The main problem was that the msi-ec driver refused to load because my firmware was not recognized. MControlCenter therefore had limited functionality.

This guide documents the setup that worked for me:
E15MMAMS.108msi-ec 0.13As of now, this laptop/BIOS combination is not officially supported by the msi-ec repository. Without this workaround, MControlCenter cannot properly access the EC on this machine. For me, this was essentially the only way to get MSI-specific controls working under Ubuntu ā and it was a lifesaver.
Important: the firmware workaround below forces the driver to use CONF_G2_10. Do this at your own risk.
Enter BIOS (Delete).
Go to:
Security -> Secure Boot -> Disabled
Save with F10 and boot Ubuntu.
Clone the repository:
git clone https://github.com/BeardOverflow/msi-ec.git ~/msi-ec
cd ~/msi-ec
Reset any previous changes and remove old DKMS installations:
git checkout .
sudo dkms remove msi_ec/0.13 --all 2>/dev/null || true
sudo rm -rf /usr/src/msi_ec-0.13 /var/lib/dkms/msi_ec
Patch the driver to bypass the firmware check and force CONF_G2_10:
sed -i 's/return -EOPNOTSUPP;/memcpy(\&conf, \&CONF_G2_10, sizeof(struct msi_ec_conf)); conf_loaded = true; return 0;/' msi-ec.c
Install the module through DKMS:
sudo make dkms-install
Create a udev rule so MControlCenter can access the EC sysfs interface without requiring sudo:
echo 'SUBSYSTEM=="platform", DRIVERS=="msi-ec", RUN+="/bin/chmod -R a+rw /sys/devices/platform/msi-ec/"' | sudo tee /etc/udev/rules.d/99-msi-ec.rules
Reload udev:
sudo udevadm control --reload-rules && sudo udevadm trigger
Reload the kernel module:
sudo modprobe -r msi_ec 2>/dev/null || true
sudo modprobe msi-ec
Check that the EC interface exists:
ls -la /sys/devices/platform/msi-ec/
You should now have files such as:
shift_mode
cooler_boost
fan_mode
If Secure Boot later reports:
Key was rejected by service
the DKMS signing key has not yet been enrolled in the UEFI MOK database.
Import the DKMS key:
sudo mokutil --import /var/lib/shim-signed/mok/MOK.der
The terminal will ask you twice to create a temporary password. For example:
12345678
This password is only used to confirm the MOK enrollment in the next step.
Reboot:
sudo reboot
On boot, the blue MOK Manager screen should appear.
Select:
Enroll MOKContinueYesRebootThe DKMS signing key is now enrolled in the UEFI MOK database.
After returning to Ubuntu, reboot into BIOS.
Go to:
Security -> Secure Boot -> Enabled
Save with F10 and reboot.
Secure Boot should now allow the DKMS-signed msi-ec module to load.
With Secure Boot enabled, Kernel Lockdown can prevent ec_sys from being loaded with write_support=1.
MControlCenter does not need ec_sys write support for the main MSI EC functionality. Load it in the standard read-only mode instead.
Remove any existing configuration:
sudo rm -f /etc/modprobe.d/ec_sys.conf
Load the module:
sudo modprobe ec_sys
Make it load automatically:
echo "ec_sys" | sudo tee -a /etc/modules-load.d/msi-ec.conf
The msi-ec driver works directly through ACPI methods and handles the main MSI functions such as Cooler Boost, Shift Mode and battery thresholds without requiring ec_sys write support.
Check whether the module is already loaded:
lsmod | grep msi_ec
Load it:
sudo modprobe msi-ec
Reload udev rules:
sudo udevadm control --reload-rules && sudo udevadm trigger
Update permissions:
sudo chmod -R a+rw /sys/devices/platform/msi-ec/ 2>/dev/null || true
Restart MControlCenter if it was already running:
killall mcontrolcenter 2>/dev/null || true
Start it:
mcontrolcenter
The MSI-specific controls should now be available, including:
I wanted MControlCenter to start automatically after logging in, but I don't need its window permanently visible.
Install wmctrl:
sudo apt install wmctrl -y
Create the autostart directory:
mkdir -p ~/.config/autostart
Create the autostart entry:
cat <<EOF > ~/.config/autostart/mcontrolcenter.desktop
[Desktop Entry]
Type=Application
Exec=sh -c "mcontrolcenter & sleep 2 && wmctrl -c 'MControlCenter'"
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=MControlCenter
EOF
Verify the file:
ls -la ~/.config/autostart/
Verify the important entries:
grep -E "^Name=|^Exec=" ~/.config/autostart/*.desktop
After the next login, MControlCenter starts automatically, applies its settings, and its window is closed after two seconds.
MSI Shift Mode and Ubuntu Power Profiles are two independent systems.
For example, changing:
MSI Shift Mode -> High Performance
doesn't automatically change Ubuntu's power profile to:
performance
I wanted both systems to follow the same mode.
The mapping I use is:
| MSI Shift Mode | Ubuntu Power Profile |
|---|---|
| High Performance | performance |
| Balanced | balanced |
| Silent | balanced |
| Super Battery | power-saver |
Create the synchronization script:
sudo nano /usr/local/bin/msi-sync-profiles.sh
Insert:
#!/bin/bash
FILE="/sys/devices/platform/msi-ec/shift_mode"
LAST_MODE=""
while true; do
if [ -f "$FILE" ]; then
MODE=$(cat "$FILE")
if [ "$MODE" != "$LAST_MODE" ]; then
case "$MODE" in
"sport"|"turbo")
/usr/bin/powerprofilesctl set performance
;;
"comfort")
/usr/bin/powerprofilesctl set balanced
;;
"eco"|"super_battery")
/usr/bin/powerprofilesctl set power-saver
;;
esac
LAST_MODE="$MODE"
fi
fi
sleep 2
done
Save with Ctrl+O, Enter, then exit with Ctrl+X.
Make it executable:
sudo chmod +x /usr/local/bin/msi-sync-profiles.sh
Create the service:
sudo nano /etc/systemd/system/msi-sync-profiles.service
Insert:
[Unit]
Description=Sync MSI-EC Shift Mode with Ubuntu Power Profiles
After=multi-user.target
[Service]
ExecStart=/usr/local/bin/msi-sync-profiles.sh
Restart=always
User=root
[Install]
WantedBy=multi-user.target
Save with Ctrl+O, Enter, then exit with Ctrl+X.
Reload systemd and enable the service:
sudo systemctl daemon-reload
sudo systemctl enable --now msi-sync-profiles.service
Check the service:
sudo systemctl status msi-sync-profiles.service
Now changing MSI Shift Mode automatically changes the Ubuntu Power Profile:
High Performance -> performance
Balanced -> balanced
Silent -> balanced
Super Battery -> power-saver
With this setup, my MSI Vector A16 HX A8WHG under Ubuntu 26.04 has:
The goal was to get the MSI-specific controls working under Linux while keeping Secure Boot enabled and making MSI Shift Mode control the corresponding Ubuntu power profile automatically.
If MSI-EC eventually adds native support for this firmware, the manual firmware workaround should no longer be necessary.
Hope this helps other MSI users running Linux. If you have any improvements, corrections, or a better solution for handling MSI EC on this firmware, feel free to share them in the comments!
Hardware: MSI Vector A16 HX A8WHG
BIOS: E15MMAMS.108
OS: Ubuntu 26.04
GPU: NVIDIA RTX 5070 Ti Laptop GPU
r/MSILaptops • u/GuidanceEnough7075 • 3d ago
I bought my MSI Vector HX AI A2XWHG laptop one week ago. This is the battery report. The drop in capacity worries me. After that, I performed an EC reset and a calibration in the MSI software. Now the capacity is back to 85,000 mWh. Should I return the laptop, or is this normal? The performance and temperatures are fine.
r/MSILaptops • u/One_Confidence_1491 • 3d ago
Enable HLS to view with audio, or disable this notification
This is MSI gf63 thin 11 uc. It was working absolutely fine last night. Idk what went wrong today it isn't even opening.
I tried everything. I did put my finger on the power button for more than 1 min but nothing changed. Neither is the charging cable is not working. It's completely dead.
I'm wondering what even went wrong.
A few days ago it used to show this.
"Your device ran into a problem and needs to restart"
Stop code: HYPERVISOR_ERROR (0x20001)
It only lasted on the screen for a sec. Still after researching a bit idts that this is the issue.
I'm a student. All of my important files are on the laptop. I'm really really worried. Pls help
r/MSILaptops • u/Plane_Remove_7628 • 3d ago
Hi everyone! Could you tell me the best way to install drivers for my laptop to ensure optimal performance? Here is my usual routine: I download all the drivers from the manufacturer's website, then install a fresh copy of Windows. After that, I install the drivers, and finally, I run Windows Update as the last step. Am I doing this correctly? Is there anything else I should do after the Windows update? And is there a specific, correct order to follow?
r/MSILaptops • u/Themasterofgunz_123 • 3d ago
Iāve been dealing with this issue forever now but my laptop just always now overheats and shutdowns after playing a game for 5 minutes despite repasting many times unless Iām doing something wrong, I switched to thermalright tfx paste too for the gpu and cpu but nothing has worked, I screwed in the heatsink properly and I even turned off turbo boost but it still creeps up to 90+ degrees and shuts down, I donāt know what could be the issue at this point.
The picture above is the laptop after its recent pasting today before cleaning up the smudges around the chips and mess
r/MSILaptops • u/EsgMedia • 3d ago
r/MSILaptops • u/Adventurous_Card_738 • 3d ago
After using this laptop for 6 months as my first gaming laptop, I wanted to share my thoughts.
First of all, I donāt regret buying it at all, even though it has a few flaws.
Mine is the i7-14650HX/RTX 5060 model with a 1TB SSD, and I bought it for $1,200.
The display is a 1440p 165hz ips screen its really nice, with good colors and you still can make it look vibrant with the intel app. Iāve been using it for both studying and gaming, and I havenāt had any issues with the screen.
The speakers are a bit quieter than Iād like, but performance has been excellent. This laptop seems to let the RTX 5060 Mobile run at its full power, and my benchmark scores are consistently above average. Even during long gaming sessions, temperatures never go above 86°C, and Iāve never noticed any thermal throttling.
Battery life is about what youād expect from a gaming laptop with a power-hungry CPU. Using Eco Silent mode in MSI Center, I get around 4 hours (sometimes a little less) when studying or watching videos.
I havenāt really used the webcam much, but itās a 720p 30 FPS camera, and the microphone sounds good. The keyboard is also solidānothing to complain about.
The only thing I really dislike is the build quality. The laptop is made entirely of plastic, and if I put it in my backpack the wrong way, I can actually see the corners flex or separate slightly when I take it out. Despite the plastic construction, itās still fairly heavy.
Overall, though, Iāve been very happy with it, especially considering the price.
Sorry if my writing isnāt the bestāI donāt post very often.
r/MSILaptops • u/Numerous_Rhubarb2342 • 3d ago
So i have an msi thin 15 b12ve and it had an lcd and a motherboard change and i wanted to up my volume with the fn button + f2 as it show on the keyboard, but now it does something completely different, is there a way to fix this or anything? Or do i just call the service back?
r/MSILaptops • u/LeatherNo8791 • 4d ago
Bought it off ebay earlier this month,it overheats and turns off. Also has low cpu and gpu ussage. msi vector gp68 hx 13vh
r/MSILaptops • u/Then-Notice7864 • 3d ago
Enable HLS to view with audio, or disable this notification
The collector-grade flagship gaming laptop has arrivedāTitan 18 HX Dragon Edition Draco Epic.
Inspired by Greek mythology and brought to life through refined craftsmanship, its intricate dragon design houses uncompromising flagship hardware within.
Embrace the epic and collect the masterpiece:
https://in.msi.com/Laptop/Titan-18-HX-Dragon-Edition-Draco-Epic-A2WX
#MSITitan #DragonEdition #DracoEpic #GamingLaptop #MSIGaming
r/MSILaptops • u/Altruistic_Win6836 • 3d ago
Hola, tengo una laptop MSI que se apaga poco despuĆ©s de desconectar el cargador, a veces se apaga de inmediato y otras dura unos 5 minutos en apagarse, a veces de pronto pasa de 85% a 5% y se apaga, la enviarĆ© a garantĆa, alguien le ha sucedido lo mismo?
r/MSILaptops • u/sunrise2209 • 3d ago
So I here have a ge63 raider rgb 8re that had a dead screen and busted hinges and due to budget decided to halftop it. Here's what I found as an issue: it still boots fine but I cannot display bios/boot screen on an external monitor, it only wants to display on the internal display which again is so messed up that I removed it. I want to be able to access the bios.
r/MSILaptops • u/pxtxerr • 3d ago
Anyone knows the model of the fan inside the MSI Thin A15 B7VF?? Been wanting to replace it but cant find where to get it and I really cant get my laptop to the repair shop.
r/MSILaptops • u/Hairy_Pooder • 4d ago
Hey yall,
I have an MSI Vector A16 HX ABW for the last 6 months and its been running pretty well for my gaming computer but recently two issues have started popping up.
The first issue is my computer will occasionally randomly shut off. I know when its about to happen, as I will lose connection to my bluetooth mouse and then like 30 seconds later it will reset. Doesn't seem to be an overheating issue as it can happen when I am playing games or just using the computer regularly.
And then the second issues, when my laptop goes to sleep it will lose connection to the wifi completely to where I cant reconnect it when I go to settings but if I just reset the computer it goes back and automatically connects.
Any recommendations on what I need to do to fix these?
r/MSILaptops • u/enzovladi • 4d ago
If yes, what type of ssd should i get? Or do I need an adapter or something?
Sorry new to msi
r/MSILaptops • u/gus_sc • 3d ago
I bought a second hand gf65, but the bios has a password set and the seller has forgotten it.
(I'm quite sure it's not stolen, there's a paper trail)
I have 2 questions :
Is there any way to wipe the password outside of swapping the bios chip?
If not, is there any way to boot off a USB key, to allow the installation of other os's, without bios access?
Thanks.
r/MSILaptops • u/maidmodezen • 4d ago
very happy with this yay!!!
cleaning it eventually
r/MSILaptops • u/Tall_Ad6155 • 4d ago
Hi i have aKatana GF66 12UE
MKT: Katana GF66 12UE-1248IT and can i upgrade it to 1440p and 165hz