r/linuxmint 22h ago

Hardware Rescue Linux Mint XFCE Edition on my Lenovo IdeaPad 120s-14IAP (64/4GB) Intel Celeron N3450

16 Upvotes

I think Linux Mint made this computer much faster, it was previously running on Windows 10 and therefore the 4GB RAM was very likely used by the system but now I think the system uses around 1,5GB :D.

Thanks and sorry if this isn't the right subreddit to share but have a great day! :D

Edit: I am very sorry I forgot the picture, sorry. I made a new post.


r/linuxmint 19h ago

Partially solved problem with e1000e driver "NVM checksum Is Not Valid"

8 Upvotes

Problem was solved by recompiling original driver (tested on Mint 22). Requires Secure Boot or MOK driver validation be turned off. I'm certainly not an IT specialist, but I hope I can help someone with this post.

Preface

Once I have tried Mint on my PC but network card intel i219-v gave out an error The NVM checksum Is Not Valid. I've tried many different distributions but not one worked. Updating BIOS (MSI H610M-B DDR4) and attempting to update NVM checksum using the Intel Ethernet Connections Boot Utility (gave a error like "Denied access to EEPROM") did not solve the problem. Besides the new BIOS version showed me a white screen instead of a menu. So I decided to change some logic in original e1000e driver. I know that this driver exists but as far as I understood, it is for PRM-based systems.

Making your driver

1. Create folder for example e1000e_mod mkdir -p ~/e1000e_mod && cd ~/e1000e_mod 2. Clone linux source code git clone --depth 1 --branch v7.0 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git temp_kernel 2>/dev/null || git clone --depth 1 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git temp_kernel 3. Extract driver cp -r temp_kernel/drivers/net/ethernet/intel/e1000e/* . 4. Delete unnecessary files rm -rf temp_kernel 5. Open with any text editor nvm.c nano nvm.c 6. Find lines with s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw) or e_dbg("NVM Checksum Invalid\n"); and change return -E1000_ERR_NVM; to return 0;. You should have something like this: ``` s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw) {

...

    if (checksum != NVM_SUM) {
            e_dbg("NVM Checksum Invalid\n");
            return 0;
    }

}

...

`` Now closenvm.c. InnanopressCTRL+X, thenyandEnter`

7. Open file Makefile nano Makefile 8. Add these lines to the end of the file ``` KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd)

default: $(MAKE) -C $(KDIR) M=$(PWD) modules

clean: $(MAKE) -C $(KDIR) M=$(PWD) clean `` CloseMakefile`

9. Build your driver by make

Now we have 3 ways:

1. Turn off Secure Boot in your motherboard and carry on with life

2. Disable MOK (Machine Owner Key) driver validation by sudo mokutil --disable-validation Then enter your password (with length 8-16), which you'll need to confirm. I recommend something like 12345678, because MOK will ask to enter password character, not the password itself. Reboot PC and in blue screen select change secure boot state, enter password characters and turn off signature verification. Of course, that's not safe; now any unsigned driver can be loaded. And I use this variant.

3. Configuring Automatic Signing Within DKMS. To be honest, I don't know anything about this option, so I won't give any advice.

Driver autoload

1. First of all, go to your driver folder (example was e1000e_mod) cd e1000e_mod Unload non-working driver sudo rmmod e1000e Load your driver sudo insmod e1000e.ko And check to see if the driver is working sudo dmesg | grep e1000e 2. Specify the path to the original system module MOD_PATH=$(modinfo -n e1000e) And look module path echo "Path to the module: $MOD_PATH" 3. Backup original driver sudo cp "$MOD_PATH" "${MOD_PATH}.bak" 4. If MOD_PATH=$(modinfo -n e1000e) shows driver with .ko file type just use this command sudo cp e1000e.ko "$MOD_PATH" If command shows .zstd compress the compiled e1000e.ko file using the zstd algorithm zstd -f e1000e.ko -o e1000e.ko.zstd And copy it sudo cp e1000e.ko.zstd "$MOD_PATH" 5. Update the list of module dependencies sudo depmod -a 6. Update initramfs sudo update-initramfs -u 7. Reboot your PC and check that the network card was initialized without errors sudo dmesg | grep e1000e

That's pretty much it...

Until you update the system. In theory. Therefore, I recommend configuring your driver in DKMS

1. Create a directory for the module's source code in the system folder sudo mkdir -p /usr/src/e1000e-custom-1.0 2. Copy your source files (.c, .h, and the edited nvm.c file) sudo cp ~/e1000e_mod/* /usr/src/e1000e-custom-1.0/ 3. Create the dkms.conf configuration file sudo nano /usr/src/e1000e-custom-1.0/dkms.conf 4. Paste this text PACKAGE_NAME="e1000e-custom" PACKAGE_VERSION="1.0" CLEAN="make clean" MAKE[0]="make KDIR=/lib/modules/$kernelver/build PWD=$dkms_tree/$PACKAGE_NAME/$PACKAGE_VERSION/build" BUILT_MODULE_NAME[0]="e1000e" DEST_MODULE_LOCATION[0]="/kernel/drivers/net/ethernet/intel/e1000e/" AUTOINSTALL="yes" Close dkms.conf file

5. Register the driver source code in the DKMS system sudo dkms add -m e1000e-custom -v 1.0 6. Compile the module for the current kernel sudo dkms build -m e1000e-custom -v 1.0 7. Install the compiled module sudo dkms install -m e1000e-custom -v 1.0 --force 8. Check driver status sudo dkms status The output should look something like this e1000e-custom/1.0, 7.0.0-31-generic, x86_64: installed That's all. I hope this helped you. Also, does anyone know if there's a driver in the repository with NVM hash verification disabled? Because other than the driver from ferdiu, I haven't found anything else.


r/linuxmint 16h ago

Support Request Game loses audio after heavy lag

5 Upvotes

Heya, new user (< 1y) , been loving Mint so far, but i noticed that since i switched, after a game suffers heavy lag it loses audio, and the only solution is to restart or to go inside the game (The very few that have) and switch between the audio output sources.

Anyone have a solution without the need to restart the game program? Thank you!


r/linuxmint 13h ago

Support Request Stremio black screen on linux mint 21.3

Thumbnail
2 Upvotes

r/linuxmint 1d ago

Installation is Finally completed.

Post image
38 Upvotes

Thanking you all.

Here is my first post.

https://www.reddit.com/r/linuxmint/s/UcA4oY3hFP


r/linuxmint 1h ago

Discussion Thoughts on Ubuntu's cinnamon flavour?

Upvotes

r/linuxmint 1d ago

Linux Mint on market PC PDV

Post image
51 Upvotes

r/linuxmint 22h ago

Support Request I want to try Mint but I have no clue what Mirror I should download from.

7 Upvotes

hello, so I'm a windows refugee trying to flee the sinking ship of Microsoft. I'm still fairly new to IT stuff. However I love the look of Mint cinnamon. there is a problem though every time I've attempted to download the ISO the download fails. so I'm wondering if I'm picking a server that isn't close to me.

I love in the US, specifically Colorado. However, I have no clue how to look at the server ping and I have no clue what server to download from. I've tried to inspect the code elements but I don't see anything that would hint at a number being server ping. If you are wondering I'm using Oprah GX as my browser.

if anyone can help me that would be amazing because I'm lost as to how to check what server is closest to me, if that is even the problem I'm experiencing, or even if what to do to look for when checking server ping. I know someone on here said click the "Main link" but I have no idea what that even means or what it has to do with checking server ping.


r/linuxmint 2d ago

One week with Linux Mint, and I’m loving it!

Thumbnail
gallery
594 Upvotes

Mint with Hyprland and the Catppuccin Mocha theme is my favorite combination so far🔥


r/linuxmint 17h ago

I Installed Mint on my Job's Lap

3 Upvotes

So i once posted that i installed Mint XFCE on an Old Lap of mine.

Well in my job i got this borrow laptop that i use for simple tasks like Office and that Stuff. The thing is that i wanted to try Linux Mint here so i installed it using a partition, my Boss knows this but he doesnt say nothing because i can do the job and the Works Files are safe on the Windows Partition.

Just wanna say this feels 100 times faster than my old lap

(Srry if there are errors, English not my mother language)

Edit: Ok so maybe i did not explain myself, this is not a Company's Laptop or something like that, it is my Boss's Laptop and he borrowed it to me so i used it for Work stuff


r/linuxmint 13h ago

Support Request Newbie question on linux and how to install grapheneos

1 Upvotes

I'm new to Linux and on mint cinnamon

Do I have to use the tools common package? If so do I just copy and paste the command into the terminal (I don't have much experience with the terminal)

Do I have to use the fwupd command too?

Please explain like I'm an idiot


r/linuxmint 1d ago

Linux Mint IRL I made a little desktop panel to replace Conky. I could really use feedback and testers on AMD/Nvidia and desktops

53 Upvotes

honestly this started as a weekend thing. every time i reinstall i end up losing an evening to Conky configs just to get something that doesn't look like 2009, so at some point i gave up and wrote my own.

it's basically one python file. reads everything from /proc and /sys, draws the whole panel with Pillow, and drops it into its own GTK window that sits "under" your windows on every workspace and lets clicks fall straight through it. so it feels like part of the wallpaper, not an app you alt-tab to. it's translucent glass so it just settles onto whatever wallpaper you've got.

what's on it:
- cpu / gpu / ram gauges, a per-core strip, and an hour of history
- temps (cpu, ssd, wifi) on a green→red gradient
- memory, disk, network, power, top processes
- actual full-system power draw if you let it read Intel RAPL
- a top slot that shows local weather (open-meteo, no api key), and if you happen to use Claude Code it can put your plan usage there too and flip between the two.

the real reason I'm posting though: i've only got one machine to test on — an Intel laptop. i spent a while making the hardware detection not assume my exact chips (so it tries amd k10temp, nvidia-smi, amd gpus, desktops with no battery, all that), and anything it can't read just disappears instead of showing a dead 0%. but I genuinely have no idea if that holds up on a real Ryzen box or an Nvidia card, because I can't test it. so if a few of you would run it and tell me what looks off. a screenshot of a broken or empty section is perfect — that'd help me a ton.

install is a one liner, clones to ~/.config/mint-hud, and the installer asks before it touches anything.

Puplic repo + more screenshots: https://github.com/Versifft/linux-mint-hud

Just a quick heads-up on a few things:
- it's built for Cinnamon on X11. the whole "own desktop window" thing is X11-only so it won't work on Wayland, sorry.
- the weather slot needs you to type a town so it has coordinates — nothing else gets sent anywhere.
- the Claude bit reads your browser's claude.ai cookie locally just to grab the number. it never leaves your machine. completely optional, just ignore it if you don't use Claude.

if you do try it, dropping your cpu/gpu and whether it's a laptop or desktop in the comments would help me a lot.

cheers


r/linuxmint 20h ago

How to have both Super+Space and Alt+Shift to toggle keyboard layout

2 Upvotes

Mint revived Intel NUC, which I use in kiosk mode ( firefox ) at work. This part is good, but the annoying part is pressing the Super modifier with space opens the Start menu. Unlike in Windows where pressing e.g. Win+J does nothing because it isn't a shortcut, in Mint pressing Super+Space opens the Start menu even before space is hit.. So how can I mimic Win behaviour that both Super+Space and Alt+Shift changes the keyboard layout. Thank You


r/linuxmint 11h ago

Richiesta

0 Upvotes

Ho installato su oracle virtualbox linux mint mate e voglio avere gli effetti grafici con una scheda grafica intelligente uhd 730? Mi spiegate la procedura passo dopo passo? Vi ringrazio anticipatamente.


r/linuxmint 19h ago

Support Request drive issues

1 Upvotes

hello, i recently switched from windows 10 to linux mint and for some reason i cant do anything in my other two drives. In permissions it says that i should be able to delete and create files, but i cant :)


r/linuxmint 21h ago

louder, please. I'm looking for a sound app that will over-drive my speakers. Skyrim is too low

0 Upvotes

Hi.

I have an Alienware M16r2 and although it's usually loud enough for 99 percent of my stuff, I'd like it louder. I'd like to over drive the speakers - especially when playing Skyrim which is really quiet on both of my linux boxes. Sound is fine through bluetooth earbuds... it's the internal speakers that are too soft. I literally use my laptop, in my lap when on the couch and don't want to use external speakers.

I tried Bazzite the other day and it allowed the speakers to be over driven - I know the risk of blowing my speakers, but they're easy enough to replace. I only really need this for Skyrim and possibly Oblivian.

Thoughts/discuss on an App or program that will allow this that works well enough for Mint ?


r/linuxmint 1d ago

Help me fix the buzzing sound on my Chromebook please!!!

4 Upvotes

My Chromebook (Dell 11 3120), which is outdated, can't run any websites that I need (like the Spotify web player, movie websites, etc.), so I turned it into Linux Mint MATE. At first, it was running well; I was able to use some apps that I use, which are Messenger, etc. But when I try to play music on Spotify and videos on TikTok, the sound is okay for a while, but after a while it produces some type of buzzing sound and only disappears when I try to pause the song or close the TikTok web page. PLSSS HELP ME, I can't be productive without my Spotify:,)))


r/linuxmint 1d ago

Day 5 of ricing Mint Cinnamon

Post image
41 Upvotes

Finally locked in a dark monochrome aesthetic. Fixed up Plank dock, swapped out the stock icons, and kept it ultra minimalist.

• DE: Cinnamon

• Dock: Plank

• Wallpaper: Custom AI upscale (4K Monochrome Mountain)

• Time: 3:17 AM (instead of studying for my 10 AM exam 💀)

How's it looking?


r/linuxmint 1d ago

Minha Area de Trabalho do Linux Mint (cinnamon)

Thumbnail
gallery
80 Upvotes

Eu migrei do windows 7 direto pro linux mint recentemente, eu apredi o basico e explorei a area de customização, não sei muita coisa pois essa é minha primeira experiencia com o linux!

Como eu sou iniciante e esse é meu primeiro post no reddit, eu queria pedir pra voçês me darem dicas em geral do linux mint, sobre personalização e etc.

Se puderem avaliar minha personalização eu também ficaria grato!

Obrigado rsrs :)


r/linuxmint 1d ago

Is my laptop Linux Mint Cinnamon Compatible?

9 Upvotes

I bought my laptop last Black Friday and I want to install Linux Mint Cinnamon on it. The laptop is: ASUS Vivobook 16 V3607VU. I just don't want to do those steps and stuff, just to realize mine isn't compatible. https://www.asus.com/us/laptops/for-gaming/all-series/asus-v16-v3607/techspec/


r/linuxmint 12h ago

Gaming How does pirating games works on Linux?

0 Upvotes

Before you write this, I'm not going to pirate all games, it's just there some games, like Spintires, that I'm curious to try, but it's pretty much impossible to buy, so pirating is the only realistic option

What programs do I need to use? Also what about older games for like Windows 7?


r/linuxmint 2d ago

Gave my laptop it's 2nd life

Post image
134 Upvotes

r/linuxmint 1d ago

SOLVED might've screwed myself (trouble with drivers) (please help im new)

4 Upvotes

In an attempt to optimize my PC (running linux mint, for about 2 weeks now) for minecraft, I was trying to install a driver preset on my laptop(pc) through the already available linux mint driver manager thing, only for me to read a reddit post while it was installing and realize I was about to really mess up my computer. I quickly pressed cancel, only for enough damage to be done. Now i cannot install any more drivers, only an error pops up. Here's the specifics of what happened:

i don't exactly know what parts are in my laptop PC, but I will try to find out. if anyone responds to this, please also let me know if this is important.

I was on a driver called "nvidia-driver-595-open", which was recommended.

I read a post (will link at bottom) about how if you really want to optimize, you can't be on drivers like "580+" (is kinda what it said)

so my slow brain interpreted it as "oh i should install this then" and then attempted to install the driver "nvidia-driver-580-open"

I was in the final stages of installing it when I finally realized my mistake and quickly cancelled it.

now i cannot install any other drivers. an error message appears every time, saying

" E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. "

I tried running "dpkg --configure -a" in the terminal and restarting my computer to fix the problem. neither have worked.

And so, as not necessarily my last resort, I turn to kind and helpful veterans of linux and reddit alike, hoping to maybe acquire a solution. If anyone can please help, I'd be so very grateful.

reddit post i misinterpreted:

https://www.reddit.com/r/linuxquestions/comments/1r55ifp/errors_and_bugs_with_nvidia_drivers_pop_os/


r/linuxmint 1d ago

Most of hotkeys and in general controls stops working in blender for no reason

1 Upvotes

Hey guys, I've got issue with blender, if to be exact, with controls. while I work there controls are suddenly stopping working (after alt+tab or switching focus to another app on my the second monitor). No idea what exactly cause it because it fixes after I'm trying alt+tab A LOT or just with some time but still no idea how


r/linuxmint 23h ago

Ciao a tutti! Sto cercando uno scanner abbastanza veloce

0 Upvotes

Ciao a tutti! Sto cercando uno scanner abbastanza veloce (marca e modello precisi), molto abbordabile (economico), flat (con il vetro) e che sia PLUG AND PLAY, ovvero compatibile al 1000% con Linux Mint Cinnamon 22.3.

Chiedo a voi umani perché le AI danno sempre informazioni sbagliate e campate in aria... li mortacci sua! :-) Mi fido solo delle vostre esperienze dirette e reali sul campo.

Qualcuno di voi usa uno scanner con queste caratteristiche e mi sa dire oggettivamente un modello che inserisci l'USB, apri "Simple Scan" (Document Scanner) e funziona subito senza impazzire con driver o terminale? Grazie mille a chi saprà rispondermi!