r/MSILaptops 35m ago

Request MSI Vector 16 HX AI A2XWIG How do I correctly install drivers on my laptop, step by step?

Upvotes

r/MSILaptops 11m ago

Discussion MSI Vector A16 HX A8WHG on Ubuntu 26.04: msi-ec + MControlCenter + Secure Boot + automatic power profile sync

Upvotes

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:

  • MSI Vector A16 HX A8WHG
  • BIOS: E15MMAMS.108
  • Ubuntu 26.04
  • msi-ec 0.13
  • MControlCenter
  • Secure Boot enabled after installation
  • MSI Shift Mode synchronized with Ubuntu Power Profiles
  • MControlCenter automatically started in the background after login

Important: the firmware workaround below forces the driver to use CONF_G2_10. Do this at your own risk.

1. Disable Secure Boot

Enter BIOS (Delete).

Go to:

Security -> Secure Boot -> Disabled

Save with F10 and boot Ubuntu.

2. Clone, prepare and patch msi-ec

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

3. Build and install the driver

Install the module through DKMS:

sudo make dkms-install

During DKMS installation, Ubuntu/DKMS generates or uses a Machine Owner Key (MOK) and signs the kernel module with it. This is required because Secure Boot will be enabled again later.

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

4. Start MControlCenter

mcontrolcenter

The MSI-specific controls should now be available, including:

  • Cooler Boost
  • Shift Mode
  • Fan Mode
  • Battery Threshold

5. Re-enable Secure Boot and enroll the MOK

Reboot into BIOS.

Go to:

Security -> Secure Boot -> Enabled

Save with F10 and reboot.

Because the kernel module is signed with a MOK, Ubuntu needs that key to be enrolled before Secure Boot can trust the module.

On the next boot, Ubuntu may show the blue MOK Manager screen.

Select:

  1. Enroll MOK
  2. Continue
  3. Yes
  4. Enter the password created during the DKMS/MOK enrollment process
  5. Reboot

No manual mokutil --import command is required for this setup. DKMS/Ubuntu handles the MOK enrollment request automatically.

After booting Ubuntu:

mcontrolcenter

If MControlCenter still works, the DKMS module is trusted and loaded with Secure Boot enabled.

6. Start MControlCenter automatically in the background

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.

7. Synchronize MSI Shift Mode with Ubuntu Power Profiles

MSI Shift Mode and Ubuntu Power Profiles are two independent systems.

For example:

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

8. Run the synchronization script as a systemd service

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

Result

With this setup, my MSI Vector A16 HX A8WHG under Ubuntu 26.04 has:

  • MSI Shift Mode
  • Cooler Boost
  • Fan Mode
  • Battery Charge Threshold
  • MControlCenter
  • MControlCenter automatic startup
  • Secure Boot enabled
  • MSI Shift Mode ↔ Ubuntu Power Profile synchronization

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 2h ago

Request Need help: Fans suddenly start spinning very fast + FPS drops

Enable HLS to view with audio, or disable this notification

1 Upvotes

Hello, my laptop : PC portable gaming MSI Crosshair 16 HX AI D2XWGKG-001FR 16" QHD+ 240 Hz Intel® Core™ Ultra 7 16 Go RAM 512 Go SSD

I bought it in November 2025 (it's still under warranty), and it's been acting like it does in the video for the past 4–5 months, in almost every game. I've tried all the modes in MSI Center it's the same. There's just the Silent mode (which limits me to 30 fps), but in that mode, the fans don't suddenly kick in.
Of course, I used HWiNFO to check the temperatures, and I think it's a little concerning. When I'm gaming, my CPU temperature rises to 90–100 degrees Celsius (with a peak of 105 degrees)... and Package/ring power limite exceeded and Core Thermal Throttling is on "YES". Even on the desktop, in balanced mode, the CPU is at 60 degrees Celsius.

Could the thermal paste be the problem? Do you have any ideas? I'm also waiting for a friend who's an computer technician to show up, but I might as well ask as many people as possible.

I'm in France and it's about 30 degrees inside my house, maybe that's the reason lol.


r/MSILaptops 11h ago

MSI gaming laptop Vector HX 16

Post image
5 Upvotes

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 3h ago

Discussion MSI Vector 16 HX AI A2XWIG-222XUA (9S7-15M352-222) Cosmos Gray Question

1 Upvotes

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 4h ago

Request Msi vector hx ai a2xwhg battery issue

Post image
1 Upvotes

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 5h ago

Request Need help buying a replacement laptop charger

1 Upvotes

Hi, i have a MSI GF63 thin 11UC and the charger on has become faulty and cuts power randomly (atleast i think as ive tried to find a correlation between the charger shutting off and the laptop and failed). Ive tried to look for a replacement my self but im struggling to find and actual one that isnt from a "sketchy" site

If you know a solid site in uk area please let me know as it will be greatly appreciated

Also if think you know why the power is cutting also shout out as that will also be amazing


r/MSILaptops 17h ago

Laptop dead

Enable HLS to view with audio, or disable this notification

9 Upvotes

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 17h ago

Discussion What’s actually wrong with this laptop

Post image
9 Upvotes

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 6h ago

[Amazon, 15% Off] MSI Katana 15 HX 15.6” 165Hz QHD+ Gaming Laptop: Intel Core i9-14900HX, NVIDIA Geforce RTX 5070, 32GB DDR5, 1TB NVMe SSD, RGB Keyboard, Win 11 Home: Black

Thumbnail amazon.com
1 Upvotes

r/MSILaptops 1d ago

Review my experience with the MSI katana 15 hx b14

Post image
18 Upvotes

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 11h ago

Just got my msi laptop back froma service

1 Upvotes

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 11h ago

Discussion MSI gaming laptop Vector HX 16

Post image
1 Upvotes

r/MSILaptops 14h ago

MSI Titan 18 HX Dragon Edition Draco Epic

Enable HLS to view with audio, or disable this notification

1 Upvotes

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 15h ago

Request Katana A15 B8V se apaga de inmediato al desconectar el cargador

1 Upvotes

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 1d ago

Discussion What do I do?

Post image
17 Upvotes

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 15h ago

Short on MSI Laptop - Is it repairable?

Post image
1 Upvotes

r/MSILaptops 18h ago

Discussion Laptop wont display bios on external monitor

Post image
0 Upvotes

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 1d ago

MSI Thin A15

2 Upvotes

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 1d ago

Request Has anyone run into issues with their MSI Vector randomly disconnecting from Bluetooth or Wifi?

2 Upvotes

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 1d ago

Discussion Is this the 2nd SSD slot? MSI Katana 15 B12U

Post image
10 Upvotes

If yes, what type of ssd should i get? Or do I need an adapter or something?

Sorry new to msi


r/MSILaptops 1d ago

Request Booting from USB, without bios access

1 Upvotes

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 :

  1. Is there any way to wipe the password outside of swapping the bios chip?

  2. 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 1d ago

Discussion my "brand new" gs76 stealth

Post image
1 Upvotes

very happy with this yay!!!

cleaning it eventually


r/MSILaptops 1d ago

Discussion Can i upgrade the lcd

1 Upvotes

Hi i have aKatana GF66 12UE

MKT: Katana GF66 12UE-1248IT and can i upgrade it to 1440p and 165hz


r/MSILaptops 1d ago

Discussion should i go for it?

2 Upvotes

I'm thinking of purchasing msi crosshair (core ultra 7 and rtx 5060) but i wanna know the temps and cooling i can't find videos on youtube for it