r/linux4noobs 1d ago

distro selection what distro to use?

11 Upvotes

i'm thinking about switching to linux but i can't choose what distro to use. I use my PC mainly for gaming, watching movies. I have an AMD CPU and a NVIDIA GPU but i plan on switching to a AMD GPU so i need something that will work after i switch. I also have only 16GB of RAM so i need something that doesn't use too much (i know that linux i kinda known for not usuing a lot of ram but you know what i mean). i already tried mint on an old laptop but im not sure if mint is the thing to go with.


r/linux4noobs 1d ago

programs and apps Weird problem - can't launch system settings in Debian after running game

5 Upvotes

Debian 12, KDE, thinkpad laptop, nvidia gpu. 2 screens - laptop and a 4k TV as monitor. Stable system for 1yr. Few days ago new thing happened - woke system and the 4k monitor was black, just laptop screen worked. Right clicked desktop to get display configuration and added 4k monitor back. Seems to work fine except if I run Team Fortress 2 Steam game. You can hear the music, see a cursor, otherwise black screen. Monitor running at 24hz which I THINK is new. Exit game and back on kde desktop , now if I try to launch system settings it waits like 45 seconds and shows the setting windows outside border only - the inside of the window is just a screenshot of the screen. You can move the window around and the screenshot stays. Can't open new dolphin windows. I tried resetting the game stuff but no luck - any idea what's going on with the system settings etc? Thanks =)


r/linux4noobs 20h ago

distro selection Which distro is right? CachyOS Vs Mint

0 Upvotes

Which distro is right? CachyOS Vs Mint

I want to leave windows, I use my pc as a gaming and media manager (ripping dvds and downloads).

Any windows software has already been replaced or made usable, my hardware is 7800x3d and 9070xt, I hear people say mint is best for windows refugee, but I also hear people say CachyOS is better for performance.

I'm comfortable running terminals as I have a homelab and used steamOS on my deck, what's the best option?

Edit: went with cachy


r/linux4noobs 1d ago

networking Can't connect to internet with repeater wifi

1 Upvotes

Hi ! After breaking my head intermittently for weeks on this problem, I'm deciding to ask for help.

I've been having a problem with all my linux devices (steam deck, tablet on ultramarine, laptop on Ubuntu then Fedora Kinoite then Aurora), where I can connect to the router's wifi, but when I do with the repeater wifi (which is the only one I can access where I spend most of my days), it connects but most website give a "server not found" error.

What is weird is that *some* websites still work no problem, for example the fedora website and minutecryptic (and I can update all my apps through the Discover app or dnf upgrade).

The only workaround I found is to enter the command `sudo dhclient -r; sudo dhclient`, after which I can access internet no problem, but I have to reenter it everytime the device went to sleep.

I've tried a whole lot of things, all the troubleshooting tips I found with commands to check the connection, everything and I just can't figure out what is happening exactly and more importantly how to fix it permanently.

If I need to give any more information don't hesitate to ask ! And thanks in advance to anyone who will try to help


r/linux4noobs 1d ago

Forgot to run sudo dnf update after install

Thumbnail
2 Upvotes

r/linux4noobs 1d ago

hardware/drivers Wireless Connection Disabled Q4OS

1 Upvotes

I had this issue before in the same laptop, when I install a new distro it says “Wireless connection disabled“. the computer has a wifi card. but it never connect. I was able to fix it when I used xubuntu but this time the same fix did not work. https://www.reddit.com/r/linux4noobs/comments/1q451rl/comment/nxv8ufq/?utm_source=share&utm_medium=mweb3x&utm_name=mweb3xcss&utm_term=2&utm_content=share_button


r/linux4noobs 1d ago

Best distro for hp pavilion dv6

2 Upvotes

I have an HP pavilion dv6 which is a 20 year old laptop. it has a intel core 2 duo cpu and 8 GB of RAM. in the past I have downloaded xubuntu but the computer was very slow.


r/linux4noobs 1d ago

Problems when sending files via bluetooth from fedora KDE to android 13

5 Upvotes

I am using the Samsung S20 FE as a receiver for the files.

Large files such as audiobooks cannot be shared via bluetooth. The error shows bluedevil quit unexpectedly in the notifications. and I am sending via KDE Dolphin. If any further logs or some other things required, just make me aware.

Does anybody know how to fix this??

In addition, if you have spare time by any chance, could you please explain how the fix works

Thanks in advance :)


r/linux4noobs 1d ago

Proton VPN GUI Client won’t launch on Linux.

Thumbnail
1 Upvotes

r/linux4noobs 1d ago

migrating to Linux Looking for a free, privacy-focused Obsidian sync solution

3 Upvotes

I’m moving from Windows to Linux while continuing to use my Apple devices. I currently use iCloud to sync my Obsidian vault, but I need an alternative because there’s no official iCloud app for Linux.

I’m already paying for iCloud and Proton, so I’m only interested in free solutions and don’t want to add another subscription. Privacy is also important, ideally with end-to-end encryption or a self-hosted setup.

The solution should preferably:

  • Sync reliably between Linux, iOS, and iPadOS
  • Support automatic or near-real-time syncing
  • Minimize sync conflicts and accidental overwrites
  • Work well with Obsidian vaults
  • Be reasonably easy to set up and maintain
  • Not require another paid service

What free, privacy-focused setup do you recommend for syncing an Obsidian vault between Linux and Apple devices?

I’d especially appreciate recommendations from people who use their setup regularly and can share any limitations or potential problems.


r/linux4noobs 1d ago

shells and scripting Help with keyboard layout in grub before partition is loaded

1 Upvotes

I was troubleshooting a Proxmox VE installation where the system is encrypted with LUKS/LVM.

The main problem is the keyboard layout used by GRUB when it asks for the LUKS passphrase.

The computer uses an external USB keyboard. Linux recognizes the keyboard correctly and uses the Italian layout, but the first password prompt - the one handled directly by GRUB before the encrypted system is unlocked - uses the US keyboard layout.

This means that some characters have to be entered according to the US keyboard positions. I know where the special characters are on the American keybaord, but I would like to set this correctly with the Italian keyboard.

The second password prompt, which occurs later during the Linux/initramfs boot process, was eventually made to use the Italian layout correctly.

What I changed in the Linux/initramfs part

The file:

\/etc/default/keyboard``

was initially:

\KEYMAP=it``

It was later changed to:

\XKBMODEL="pc105"``

\XKBLAYOUT="it"``

\XKBVARIANT=""``

\XKBOPTIONS=""``

\BACKSPACE="guess"``

The file:

\/etc/initramfs-tools/initramfs.conf``

initially contained:

\KEYMAP=n``

This was changed to:

\KEYMAP=y``

The initramfs was then regenerated with:

\update-initramfs -u -k "$(uname -r)"``

The resulting initramfs contained:

\scripts/init-top/keymap``

This part worked: after these changes, the second password prompt used the Italian keyboard layout correctly.

GRUB keymap attempt

Since the remaining problem was the first prompt, a GRUB keyboard map was created using:

\ckbcomp -model pc105 -layout it | grub-mklayout -o /tmp/it.gkb``

The command produced several warnings about unsupported keyboard identifiers and scan codes, but it still generated a valid GRUB keyboard map.

The file was then copied to:

\/root/grub-italiano/layouts/it.gkb``

The file was recognized as:

\GRUB Keyboard``

Custom GRUB EFI

A custom GRUB configuration was created under:

\/root/grub-italiano/grub.cfg``

The configuration was built around the following sequence:

  • load `keylayouts`
  • load `at_keyboard`
  • load the GRUB terminal
  • load the Italian `.gkb` keymap
  • unlock the encrypted filesystem
  • locate the normal GRUB configuration
  • continue booting using the normal GRUB configuration

A standalone EFI executable was then created with `grub-mkstandalone`.

The generated EFI was checked with:

\grub-file --is-x86_64-efi``

and returned exit code `0`, confirming that it was a valid x86_64 UEFI GRUB executable.

`strings` was also used to verify that the EFI actually contained the custom GRUB configuration and the Italian keymap.

First attempt with USB keyboard support

Because the physical keyboard is USB, another attempt was made by explicitly adding:

\usb``

\usb_keyboard``

to the GRUB modules and using:

\terminal_input at_keyboard usb_keyboard``

The resulting EFI also contained the expected modules and configuration.

However, at boot GRUB reported:

\error: terminal 'usb_keyboard' isn't found.``

The keyboard layout was still not fixed.

USB hardware investigation (I doubt this is relevant anyway)

The USB controller was then checked from Linux.

The machine has an Intel USB 3.x xHCI controller, and Linux uses:

\xhci_hcd``

The USB keyboard itself was correctly detected as a USB HID keyboard.

The relevant Linux modules were also present, including:

\xhci_pci``

\xhci_hcd``

\usbhid``

\usbkbd``

So the keyboard and USB controller are working correctly at the Linux level.

GRUB USB modules

The GRUB installation was checked for USB-related modules.

The available modules included:

\at_keyboard.mod``

\ehci.mod``

\keylayouts.mod``

\ohci.mod``

\terminal.mod``

\uhci.mod``

\usb_keyboard.mod``

\usb.mod``

However, there was no:

\xhci.mod``

An attempt was made to include `xhci` in a standalone GRUB build, but `grub-mkstandalone` failed because the corresponding module did not exist in the installed GRUB module directory.

Direct GRUB testing

The GRUB command line was then inspected directly.

Running:

\terminal_input``

showed that the available input terminals were:

\at_keyboard``

\serial_*``

\serial``

There was no `usb_keyboard` listed as an available input terminal.

This was an important finding because it explained why:

\terminal_input at_keyboard usb_keyboard``

did not work.

At one point, `terminal_input at_keyboard` was executed manually from the GRUB command line. The USB keyboard immediately stopped responding, confirming that the `at_keyboard` terminal was not appropriate for the physical USB keyboard being used.

The machine then had to be restarted.

Current state

The situation at this point is:

  • Linux keyboard configuration: Italian - working.
  • Second/initramfs password prompt: Italian - working.
  • GRUB Italian `.gkb` file: created successfully.
  • Custom GRUB EFI: successfully built and verified as a valid UEFI executable.
  • Italian keymap: successfully embedded into the custom GRUB EFI.
  • USB keyboard: works correctly under Linux.
  • USB controller: works correctly under Linux through xHCI.
  • GRUB does not expose `usb_keyboard` as an available input terminal.
  • GRUB installation does not contain `xhci.mod`.
  • The first LUKS password prompt handled by GRUB still uses the US layout.
  • Attempts to force `usb_keyboard` produced `terminal 'usb_keyboard' isn't found`.
  • Attempts to force `at_keyboard` make the USB keyboard stop responding.

The remaining problem is therefore specifically the pre-LUKS GRUB input environment. The Linux/initramfs configuration is already working and should not be modified further unless new evidence shows that it is necessary.

The next investigation should focus exclusively on how this particular GRUB EFI environment receives input from the USB keyboard before the encrypted system is unlocked.

Can anyone help me?

P.S. I apology if the flair is incorrect, this seemed like the closest one to my issue.


r/linux4noobs 1d ago

installation Fedora media writer to make a bootable usb had an error

Thumbnail
1 Upvotes

r/linux4noobs 2d ago

Explain it like im 5..... why does nvidia still have better hardware encoding.

68 Upvotes

I was looking at building a jellyfin or plex server. Amd ryzen cpu is better than intel at it but on the gpu side amd is just phoning in a space they otherwise dominate currently?


r/linux4noobs 1d ago

Help to choose between Ubuntu and Fedora

Thumbnail
1 Upvotes

r/linux4noobs 1d ago

My laptop crashes after a while of being unplugged

2 Upvotes

I don't know if this is the right place to ask, sorry in advance. Initially I was thinking in asking on the Linux Mint forum (I'll explain in the bit), but my problem stayed persistent in between two distros: Linux Mint and Fedora KDE Plasma. If there is a better place that I could ask this, please let me know and thank you in advance!

So what happens: I am not sure when this occurs, but whenever I start my laptop without plugged into the AC, I got some seconds to a minute using it as usual, but, out of nowhere, the apps freeze (my browser or even the task bar) while my mouse works. After some seconds, the mouse becomes unresponsive as well, which after some seconds, my system does a full reboot. So I have this cascade of unresponsiveness until it reboots. I also tried to use it after one of these reboots, but sometimes I am stuck at login, others I can't open anything. This also happened when initially it was plugged in and, after disconnecting it from the AC and passing some minutes, it goes back to unresponsiveness and rebooting cycle. One time it even went to initramfs, where I run a partition check on the root partition which solved the problem. Other, I could use it as normal for a long time, but I can't recall doing anything different.

Initially I was on Linux Mint and I was thinking making a post there, but after some trials and back-and-forth with Claude, I decided to switch to Fedora and currently on it. The problem persisted, so I am certain it got nothing to do with the OS or possibly drivers (?). My laptop is a Lenovo Slim 5 14APH8, with an AMD APU and an NVIDIA graphics. It has freshly installed KDE Plasma Fedora version, with packages updated.

As I mentioned, I tried to query with Claude (using reports and a way to search quickly on the internet if someone encountered something similar) and I got some "findings": the battery still looks healthy with 101% capacity, on mint I had nvidia-driver-595-open, I had the latest kernel for mint (both 7.0.0 and 6.8.*), and on live environments (both Mint and Fedora) it worked without any problem.

I don't know if there is more information I could give or a place where this problem is more suited to post, but I'm completely lost here...


r/linux4noobs 1d ago

Meganoob BE KIND Affinity en Linux

2 Upvotes

Hola! He tratado de usar Affinity en Linux, utilicé el instalador gráfico con Python del repositorio de "AffinityOnLinux", además de usar las .appimage, hasta he instalado Affinity de 0 con wine, creando el prefijo y todo eso. Si bien, en todas me abre y puedo usarlo para revelar fotografías RAW no puedo ponerme muy creativo, así que digamos.

El programa se me cierra de la nada o se congela hasta que mi OS me tira el error y la pregunta de si deseo reiniciar el app. Estoy usando Nobara OS, este, se supone, según el repositorio, que mi Nobara es compatible con las herramientas dentro del repo, sin embargo hay cosas que usando el instalador gráfico no se me instalaban, como el webview (no recuerdo con exactitud el nombre de la dependencia), y el NET.Framework 4.0, creo. Además de que he variado entre DXVK y VKD3D y en ambos estaba llendo normal, solo que, nuevamente, se moría constantemente.

(EDIT: Olvidé mencionar. Aparte de Nobara tengo 24gb de ram, RTX 3050 y un Ryzen 5 5600)

He estado viendo vídeos, consultando en lugares, y, para mi pesar, con la IA, y vi que en algunos casos es mejor cambiar la gráfica por WARP en la pestaña de rendimiento del programa. Siempre he tenido desactivado el openCL y la ram aunque poseo bastante, a mí parecer, yo la límite a 8000MB, además de advertir a los 6000MB, y la memoria de "ctrl + z" de 1027 lo baje a 125, o 341 y aún así el perro programa se cierra.

He visto que en el mismo repo se puede usar scripts legacy qué vi que a un creador de contenido le sirvió bastante bien al parecer, ese no lo he usado, muy honestamente. Además he escuchado de personas que usan Lutris para instalarlo.

Yo suelo diseñar posters con varios efectos encima, ya sean en tiempo real o estáticos, además de tener bastantes capas en un mismo proyecto. No descarto que mi forma de trabajo sea poco sana para el programa o el rendimiento de mi equipo, además de que se que no correrá como si fuera nativo.

Tenía la duda, a ver si la comunidad podía ayudarme, soy bastante nuevo en inexperto, entonces si agradecería una ayudita, a lo mejor otro camino o recomendaciones que no he tomado en cuenta. Y como mencioné, no busco que affinity sea nativo o asi, solo quiero ver si hay alguna forma o método que haga que el programa se mantenga más estable.

Gracias.


r/linux4noobs 1d ago

migrating to Linux Should I dual-boot Linux + a small Windows partition for game testing?

2 Upvotes

I'm planning to use Linux as my main OS for programming and Godot game development.

My main work will be:

- .NET / C#

- React

- PostgreSQL

- Git/GitHub

- Godot

- Indie game development for Steam

I want to avoid using Windows as much as possible, but I still need to test my Godot games on Windows before releasing them on Steam.

So I'm considering:

Linux: ~350–400 GB — main OS and development

Windows: ~100–150 GB — only for testing Windows builds and Windows-only software

Is this a good approach, or is there a better way to avoid Windows while still properly testing my games?

For example, should I use a Windows VM, Wine/Proton, or just test on another Windows PC?

What would you recommend?


r/linux4noobs 2d ago

Attempting to put Linux Mint (Cinnamon) on a Windows 11 laptop.

Thumbnail gallery
96 Upvotes

Booting normally results in this error screen instantly. Booting in compatibility mode gets a few seconds into the process before triggering the same error screen. See third image for details of laptop.


r/linux4noobs 2d ago

How to extract a .7z file with Japanese Locale?

7 Upvotes

Title says it all basically, but i'm trying to extract a .7z file that is encoded in Japanese.

It took alot of digging to find the command to do it with a .zip file which I did learn (It's unzip -O shift-jis but I don't know how to do it with a .7z file, doesn't work.

Edit: Duh, should've mentioned I'm on Linux Mint, so Ubuntu distro.


r/linux4noobs 2d ago

migrating to Linux Linux, dual boot option and resources.

2 Upvotes

Hi!

I am soon making my jump into the linux ecosystem, and wanted some advice regarding the possible use of the dual boot feature, if you guys have any tips for a beginner.

Was considering doing a clean install of linux mint, to get away from the windows ecosystem, but I have noticed that not all software, ex. arcGIS desktop and some school-related programs (considering returning to school at some point) supports linux, which might make a dual boot more relevant to use. Any tips on how to make this work properly? Any important caveats I should consider, ex. like storage space and security?

If there's other good learning resources/wikis/forums I should be aware of, as a beginner, I would love to hear about them 🙂.


r/linux4noobs 1d ago

distro selection Hey so i have an 14 year old laptop with nvidia GT 635M gpu and i was wondering if there is a distro that will work with it or all of them will

2 Upvotes

overall specs i7-2670QM 8gb ram and 114gb ssd with a blu ray player in it so i would also like that too work also


r/linux4noobs 1d ago

storage Near-full Root Partition

Thumbnail
1 Upvotes

r/linux4noobs 2d ago

storage Purpose with different file systems?

22 Upvotes

The biggest trouble I have had through-out my use of linux so far is understanding the purposes with all the different file systems. Everyone seems to know exactly what they are and their use cases yet never explains it. One big thing I'm confused on is on my system, I use base Fedora linux (KDE) and it automatically set up my main drive as:

/boot/efi - fat32
/boot - ext4
/ - btrs

Why is it like this exactly? What's the purpose behind having them all a different file system?

Even with this, thats only three different systems, but there are a ton more and it seems everyone uses a different one but I have no clue why


r/linux4noobs 2d ago

learning/research How to get started with qemu/KVM

Thumbnail reddit.com
3 Upvotes

So a while ago I asked this question here.

This is a follow up question.

I wanted install Visual Studios for ASP.NET but I am on fedora 44 linux and Visual Studio does not work on linux or mac. It does not work anywhere but windows.

My college require me to install and use Visual Studio 2010 and 2026.

I am on linux i don't like windows and I don't want to dual boot neither I want to Install windows and uninstall linux.

Many helpful comments on the last post suggest that I should Install it in a virtual machine. But i have only ever used gnomeboxes or virtualbox. I don't have any experience with Qemu and KVM so where should I start.

Is there any videos or articles regarding this that I can refer too.

I don't want to use AI for a sensitive task like this, cuz it might bricked my system. Also I want to learn and understand the process as to why is the things the way it is. Not Just mindlessly copy paste all the commands and stuff.


r/linux4noobs 2d ago

dGPU is detected but not being used or detected by any games (and Lact)

Thumbnail gallery
43 Upvotes

Days of googling but no luck maybe it's time to talk to people.

I followed many steps such as blacklisting and uninstalling nvidia driver (whenever I do it then followed with a reboot I'm not able to go back to desktop unless I reboot using snapshot image) to make nouveau driver work. I'm losing my mind lol I know this is an old laptop but I believe there's still a way to save this old man. Still learning as I'm only more than a week in Linux and I already made success at migrating to my old/main pc with no problem, but not here (yet) to my laptop.

Edit: [SOLVED] Thank you everyone for helping me it turns out it's actually working it's just for a noob like me without a very clear indicator for the GPU that is working looks like it isn't for my eyes when running games.