When I start my pc, (Nobara 43) Memory is up to 70% usage. I dual boot, but use Windows like 5% of the time. I have a Swap partition (64gb), but it shows 0b usage. Is it safe to kill the windows process? Can anyone shed some light into whats going on? I was starting to think this is sketchy lol
you dual boot, why would there be a ‘windows’ process running on linux side? this doesn’t make sense. unless there’s some program you use on linux that is named ‘windows’ i’m inclined to believe this is a malware of some sort, maybe a crypto miner if it uses that much resource.
yeah thats what i thought :/ how tf do i get rid of this?
Assuming this is malware, depending on the complexity it might be really hard to remove. The best course of action is much like on Windows; Backup your personal files, figure out how the malware got on your PC (so you can avoid it next time), then reinstall the operating system.
For backing up personal files, stick to documents, media, etc. Do not include executables (like installed games), and be very careful with config files (and system files), basically only back these up if you know what’s in them is legitimate.
You can find more about the process in the
/proc/4212/directory (this is the number on the left in top). By runningls -l, you should be able to see where theexesymlink points to, which tells you where the program is installed. This might give you a clue as to where it came from (or it might not, depending on how the malware is made). If you suspect it is not malware, due to information on your system, look it up online before trusting it. I have personally never seen a root-owned ““windows”” process, which is why I’m heavily leaning towards this being malware.If you feel like you know where the malware came from, or you’re stuck and are struggling to find out more, you should reinstall your operating system to get rid of the malware. Malware can have different levels of complexity, what you’re seeing on the surface might be the whole thing, or it could have more complex systems to reinstall itself after removal. Which is why reinstalling your operating system is the safer option.
Thanks, this is useful info. It doesnt appear to be restarting itself after I killed the process. Is this a good sign?
This doesn’t really say much; this could be legitimate software thinking it crashed, or it could be malware trying to hide itself.
Try seeing if
sudo find / -type f -name windowstells you anything about where it’s installed. This command searches through/(all files) to find a file (-type f) that is namedwindows(the same as the process name).weird

it’ll probably be back running once you reboot. better find out where on your storage it is, why is it starting and where did it come from.
Its not showing after reboot. I wanted to trace it back but theres no trace, hmm
find / -type f -name windowsas root? see where it nests?
Maybe reinstall OS and update bios? I’m not too sure myself.
I think I solved it? I ran
sudo kill -9 <PID>(PID being 4212 in my case)
Memory usage is back to normal afer a reboot, seems fine!
That command only killed the process, in other words, it “closed the program”. Rebooting the computer would have had the same exact effect. The application is still in your computer, unless it decided to self-destruct.
out of curiosity, which directory is this weird thing located in?
Seemed to be
/proc/4212but its gone after I killed the process./proc is a special directory that is populated by procfs, a special kind of filesystem. It contains information about running processes. Each sub-directory contains information for one process. When you launch an application, it’s assigned some process id. Every time you launch the application, it gets a different process id.
You can try and find the application by running
which windows. If the application is in your PATH, that tells where it is.
Maybe it’s fastboot and windows is actually running in the background?
nope, that’s not how things work




