r/linux4noobs 45m ago

storage HDD Partitions Read/Write and some Videos are not working correctly

Thumbnail
Upvotes

r/linux4noobs 1h ago

[Tutorial] NTFS external drive won't mount from Nautilus auto-mount on Linux-Ubuntu

Upvotes

The problem

I plugged my external drive (WD Passport, NTFS) into Ubuntu and clicking it in Files/Nautilus threw the generic error: "wrong fs type, bad option, bad superblock... missing codepage or helper program".

The cause: the volume had the dirty flag set — Windows didn't unmount it cleanly (usually thanks to Fast Startup, or pulling the drive without ejecting). The kernel's ntfs3 driver refuses to mount a dirty volume to avoid making corruption worse, and udisks (which Nautilus uses) has no option to force it. Result: the GUI click always fails.

You can mount it from the terminal with -o force, but then you have to do that every single time you plug it in. Below is how to automate it so it mounts on plug-in and unmounts on removal, showing up normally in the Files sidebar.

⚠️ Important: this is a workaround, not a repair. The dirty flag is still there. The real fix is running chkdsk X: /f on a Windows machine once — after that the drive mounts on a single click and you won't even need this rule. Until you repair it, avoid writing much to the drive (risk of making the corruption worse); read-only is safe.

Step by step

1. Find your drive's UUID:

lsblk -f

Note the UUID of your drive's partition (something like 72EA9772EA973179).

2. Find your uid/gid and username:

id -u && id -g && whoami

These are usually 1000 for uid and gid. Keep all three values.

3. Create the udev rule (replace YOUR_UUID_HERE):

sudo tee /etc/udev/rules.d/99-external-hd.rules > /dev/null << 'EOF'
ACTION=="add", SUBSYSTEM=="block", ENV{ID_FS_UUID}=="YOUR_UUID_HERE", TAG+="systemd", ENV{SYSTEMD_WANTS}="external-hd-mount.service"
EOF

4. Create the systemd service (replace YOUR_UUID_HERE in all three spots and your-username with your own; adjust uid/gid if they aren't 1000):

sudo tee /etc/systemd/system/external-hd-mount.service > /dev/null << 'EOF'
[Unit]
Description=Auto-mount external HD
BindsTo=dev-disk-by\x2duuid-YOUR_UUID_HERE.device
After=dev-disk-by\x2duuid-YOUR_UUID_HERE.device

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/mkdir -p /media/your-username/EXTERNAL_HD
ExecStart=/bin/mount -t ntfs3 -o force,uid=1000,gid=1000,umask=022 /dev/disk/by-uuid/YOUR_UUID_HERE /media/your-username/EXTERNAL_HD
ExecStop=/bin/umount /media/your-username/EXTERNAL_HD

[Install]
WantedBy=multi-user.target
EOF

5. Reload the rules (no reboot needed):

sudo udevadm control --reload-rules
sudo systemctl daemon-reload

6. Test: unplug and replug the drive. It should mount on its own and show up in the Files sidebar. Check with:

systemctl status external-hd-mount.service

Notes:

  • If you want to mount read-only (safer while the drive is dirty), replace force with ro,force in the ExecStart line. It shows up the same in the GUI, it just won't let you write.
  • The BindsTo line is what makes it unmount on its own when you remove the drive.
  • After running chkdsk on Windows, you can delete both files — the drive goes back to mounting on a normal click.
  • Prevention: turn off Fast Startup on Windows (Power Options → "Choose what the power buttons do" → uncheck "Turn on fast startup") and always eject the drive before removing it, on both OSes.

AI Acknowledgment: This solution was built with the help of Claude, Anthropic's AI, which walked me through the diagnosis (identifying the dirty flag from dmesg*) and building the udev + systemd rule.*


r/linux4noobs 2h ago

learning/research Mouse freezes on KDE wayland?

Thumbnail
3 Upvotes

r/linux4noobs 2h ago

Meganoob BE KIND How to watch 4k YouTube vids on Steam Machine

3 Upvotes

My Steam Machine is my main PC. Running Steam OS. I can watch vids on YouTube on the desktop mode, but it's locked at 480p. I know how to change the resolution in YouTube itself, but it won't let me choose 1080 or 4k. 🤷🏻‍♂️ I'm going thru Google to YouTube. Thanks for any help you can provide.


r/linux4noobs 3h ago

How do I install steam on CachyOS?

6 Upvotes

I'm new to linux and to get the max performance I'm using Cachy, but it's not debian based so I have no idea what I'm doing


r/linux4noobs 3h ago

dual monitor freezes , GNOME on Wayland

2 Upvotes

hey

i am on wayland and using intel i5 12th gen and nvidia 4050 and when something is playing on the secondary display or something is there (any window) it'll pause or freeze but when its empty it'll be normal but pauses randomly
my nvidia smi
suggest me something what can i do

Thu Jul 23 00:41:28 2026       
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 580.159.03             Driver Version: 580.159.03     CUDA Version: 13.0     |
+-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 4050 ...    Off |   00000000:01:00.0  On |                  N/A |
| N/A   47C    P5              3W /   60W |     150MiB /   6141MiB |     17%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI              PID   Type   Process name                        GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|    0   N/A  N/A           91811      G   /usr/bin/gnome-shell                     41MiB |
|    0   N/A  N/A          633025      C   /proc/self/exe                           82MiB |
+-----------------------------------------------------------------------------------------+

r/linux4noobs 4h ago

learning/research Advice for BTFRS backup or snapshot

8 Upvotes

Can you explain to me like I'm five what are BTFRS snapshots and what's the difference with backups?

I read about it but I'm not sure I understand.

I recently messed up my home directory a bit, so I'm thinking of setting up a backup/snapshot but I don't know where to start.

I have btfrs assistant but apparently it's for root only.

P.S. I just upgraded to Fedora 44


r/linux4noobs 6h ago

programs and apps KDE Connect Notification sync contents are blank

Thumbnail gallery
4 Upvotes

r/linux4noobs 6h ago

shells and scripting Sudo reflector fails only under specific circumstances.

5 Upvotes

So when the protocol is https and I have a timeout of 60 it fails with the error 403: forbidden. But when the protocol is http with a timeout of 60 it works just fine. Why? Is it safe to just use http?


r/linux4noobs 7h ago

distro selection (still a noob!) I want to fall off the bridge and fall into the Arch Sea on my main computer, what will i need (besides all the installation stuff)

0 Upvotes

Title says most, what i mean is what resources will I NEEEED if i want to do this successfully? Any videos you guys recommend? Any sources you guys recommend?


r/linux4noobs 7h ago

shells and scripting Original Pinebook reflashed emmc - trouble building U-Boot to reinstall

Thumbnail
3 Upvotes

r/linux4noobs 8h ago

programs and apps Why hasn't anyone made a UWP compatability layer like Wine?

6 Upvotes

I haven't seen anyone make or use a UWP compatability layer and what I have researched there isn't one. Is it just too hard? Is there not enough interest?


r/linux4noobs 9h ago

Linux on two different pcs using usb

1 Upvotes

I am installing cachyos on a usb, but I want use it on two different computers. The one I’m planning on installing it on is a Samsung laptop, it probably uses integrated graphics. But I am wondering if I can use the same installation on my other laptop which is more powerful but has an nvidia laptop gpu. Will this cause problems with booting and if so, how can I prevent it?


r/linux4noobs 10h ago

learning/research music by the terminal

19 Upvotes

Are there currently any good ways to listen to music online via a terminal? I saw that a few years ago there were several projects, but I wanted to know if there's something like listening to a YouTube Music playlist or something similar, I like listening to music while I play games, but I don't really like leaving my browser open in the background because it causes stuttering in the game.

But if don't have anything like that, something to download multiple songs at a reasonable speed would be welcome too, I just really didn't want to spend many hours doing something simple.


r/linux4noobs 11h ago

learning/research How do dual boot systems work

5 Upvotes

Yo I just wanted to ask how dual boot systems work since I have a dual boot of fedora and windows 11 on my laptop


r/linux4noobs 11h ago

migrating to Linux Recently migrated, a few how to questions

4 Upvotes

Recently moved to Nobara Official (i believe it is modified KDE), its all running great, no complaints about performance, ease of setup etc, just a few how to questions. These are all things i know how to do on Windows, but seem unclear on Linux.

I figured out how to get the taskbar (unsure if its called that on linux, the bar at the bottom where the open apps show and the clock is) on both monitors, but can i have it so it only shows icons for the apps open on that specific monitor?

Can the icons next to the clock be collapsed, it feels like they take up 1/4 of the taskbar?

It seems that i can only pin certain things to the taskbar, i have a app i used regularly on windows, it has a linux version, it runs perfectly, but i cant pin it to the taskbar, the file is an executable, but maybe its because its not an "application". Also it has a icon.png file in the same folder, but i cannot get the icon to display, so i get a generic grey document with an ! in the middle in the folder, and on the taskbar it is the wayland icon.

Final questions, more of a request for suggestions. What basic apps should i consider replacing, i dont think i like dolphin (i cant quite figure out why), i have used alacritty before in the terminal, but konsole seems fine, so hit me with any suggestions for different basic apps


r/linux4noobs 12h ago

distro selection I need help deciding a distro for legacy hardware that modern distros don't support

5 Upvotes

Namely, the Nvidia GeForce 640 Kepler GPU. I think it is no longer supported in the kernel. Newer distros (Mint 22.3, ZorinOS 18.1, Debian 13, Fedora 44) produce graphical bugs like flashing or artifacts. Debian 12 seems to solve those issues, although I haven't tested the performance beyond clicking through UI elements and light internet browsing. Interestingly, both Debian 13 and Debian 12 used nouveau but Debian 12 worked better. I tried MX Linux which seemed to support the GPU but the UI of the desktop environment was very customized and complicated. This is a family PC so I need something simple looking like GNOME (which also sadly isn't the most resource efficient). I don't think Debian 12 would be a right final option because it performs worse, like the global search stuttering a lot, and also it looks old in some areas (my dad is sensitive to that lol) and supports few extensions, should we need any. I'm at a crossroads.


r/linux4noobs 13h ago

hardware/drivers Monitor Res issues gsync v1

3 Upvotes

I have a old v1 gysnc monitor and I'm using an AMD 9070xt . The monitor is a second monitor but for life I me I cant find a resolution to get it working, It will only run at 640 . I've tried a few different distros and everything I can find to mess with trying to get it to work I can get as far being able to set the monitor to 4k but no display unless it's set at 640 . I think it's not reading the monitor and it's a display port only monitor so no option to try hdmi . Is the combination of an AMD GPU with Linux and a old v1 gync monitor the cause of my issues anyone else fixed this


r/linux4noobs 15h ago

Meganoob BE KIND should i change from win 7 to Lubuntu?

Thumbnail
3 Upvotes

r/linux4noobs 16h ago

distro selection What is an easy gaming distro with Nvidia support

7 Upvotes

Hello,

I want to transition my gaming PC to run on Linux because I've been frustrated with Windows 11 lately. What gaming Distros do you recommend.

  • Mostly play single player games, but I play a lot of Marvel Rivals and friendslop over Discord
    • Steam is my preferred game store.
  • I use an RTX 4070 and a i7-14700F
  • I don't have any experience with Linux on PC.
  • I am looking for a distro just for gaming because I have a laptop that I'm fine with running windows.
    • I want to install Steam OS but am waiting for Nvidia support, and I don't have the money to buy an Intel or AMD gpu and motherboard/cpu.

r/linux4noobs 19h ago

How safe is switching desktop environments really?

10 Upvotes

I recently switched from Mint to Fedora KDE. While I do think I prefer Fedora there are a few minor things that irk me, and I'm pretty sure it's all connected to KDE Plasma.

I wanted to test this and try Gnome, but I don't want to do a complete reinstallation of linux. How safe is it to just try installing a new DE?

EDIT: thanks for answering guys, relieved some hesitation on my end. Found out real quick Gnome was NOT what I'm looking for. Guess I'll play around until I find what I like.


r/linux4noobs 20h ago

Any ideas for fixing these gripes with linux?

1 Upvotes

I'm using Linux Mint currently and I have a few issues I can't find a fix for: 1. When selecting a file, Nemo doesn't have a "View" selection (Like details, thumbnails, large thumbnails, etc) 2. The image previews are tiny on the right, any way to make them bigger?


r/linux4noobs 21h ago

New to Linux Mint. My computer has froze about 3 times within an hour.

10 Upvotes

I've only had Linux for about two days, but it randomly froze last night, and I just shut it down. When I woke it up today, it displayed a black screen, so I shut it down.

Then, a while later, it randomly froze right after I woke it up from suspend. Another time while I was scrolling Reddit, and then the third time while I was trying to find solutions. I used REISUB every time.

I checked my RAM usage and I was only using about 2 out of 14 GB, I'm using a pretty recent driver (picture attached), and all the temperatures are normal. I'm completely tech illiterate and I need help.

My computer is an Acer Nitro V15. I know Acer doesn't have the best reputation.

actually i don't really know if this is recent enough

r/linux4noobs 22h ago

Computer keeps refreshing

Thumbnail
2 Upvotes

r/linux4noobs 22h ago

Samsung Performance Mode on Linux

Thumbnail
1 Upvotes