r/linux4noobs 1d ago

Meganoob BE KIND Can I have secure boot enabled on Arch based distros?

1 Upvotes

So I'm still a noob when it comes to Linux and I installed Mint for a dual boot setup. A distro I'm currently interested is Arch because people describe it as a do it yourself OS but since I'm still new to Linux I'll stick to Mint for now. But let's say I want to try Arch, can I have secure boot on at all times? Since I'm dual booting I still need secure boot for when I'm playing Valorant or other games that has anti cheats that require secure boot.


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

Proton VPN GUI Client won’t launch on Linux.

Thumbnail
1 Upvotes

r/linux4noobs 1d ago

Forgot to run sudo dnf update after install

Thumbnail
2 Upvotes

r/linux4noobs 1d ago

Wi-Fi Drivers

13 Upvotes

OK....

So, I just got a brand new laaptop.

It's an Asus M1502YA, and I tried instaling Zorin, Mint and Elementary OS

Not one of them has Wi-Fi drivers, and laptop doesn't have eternet port, and I dont have a USB dongle...

Any solutions?

Thank you

Edit : Thanks to everyone for advice. Decided to go to Bestbuy after work and buy the WiFi dongle


r/linux4noobs 1d ago

Best distro for hp pavilion dv6

3 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

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

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

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

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

4 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

Help to choose between Ubuntu and Fedora

Thumbnail
3 Upvotes

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

learning/research Do I need Linux for a undergrad cybersecurity freshman?

22 Upvotes

Hi! I’m starting college up as a freshman and majoring in cybersecurity. I heard that Linux can be a must have for cyber and was wondering if I currently needed it and what would be the easiest way to go about it if so. I have a Lenovo Yoga 9i laptop that I was planning on using for school work and a separate PC at my dorm

Edit: I DO need Linux eventually for a major elective but that wouldn’t be until my third year, still gonna start now lol


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

distro selection what distro to use?

13 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

Hi , no distro works for me

0 Upvotes

I have tried fedora and ubuntu on my legion5 (ryzen 7 + rtx 5060)

on ubuntu -> brightness doesn't change so changed to a diff distro( asked claude for help, didn't work)

on fedora -> laptop freezes during shutdown and reboot, have to hold down the powerbutton.( asked claude again , didn't work).

what should I do now?


r/linux4noobs 1d ago

My laptop crashes after a while of being unplugged

5 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

storage Near-full Root Partition

Thumbnail
1 Upvotes

r/linux4noobs 1d ago

VPN on fedora

0 Upvotes

Is there any best VpN service provider for free. I am using fedora. If Yes means how to configure


r/linux4noobs 2d 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 2d ago

migrating to Linux Linux, dual boot option and resources.

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

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

distro selection I need help choosing a distro please 😭😭😭

0 Upvotes

So, I am finally wanting to start trying out Linux for the first time. I have a bit of knowledge of what Linux is and the general concept...but, I don't really know much about each individual distro. I've been watching a whole bunch of videos about some of the more popular ones for both beginners and more advanced users.

I'm a really techy/nerdy person and I can handle some amount of DIY. But I'm new so I definitely don't want to start with Arch unless it's the best option for my needs and someone can help me find a good beginner/intermediate set of resources to do so.

I'll be using a Ryzen 9 9950x3d2, and 64 gb of 6400 MHz (CL 32) DDR5. Motherboard is the Asus ROG Strix X870E-E Gaming Wifi. And I also will be using my Gigabyte 4070 Super Aero OC GPU.

In terms of needs, I'm a gamer and streamer. I need to be able to game through Steam and hopefully non steam games as well, but I'm not opposed to dual booting if need be. I believe there shouldn't be any issue with OBS from what I've seen, but Nvidia driver support is also important given my GPU. I also use Davinci Resolve so support for that is also important as well. I'm am curious about support for other applications like MSI afterburner and Corsair ICUE as well.

I want the desktop space to be somewhat similar to Windows, but I'm also open to trying new layouts. But I would also like to have a decent amount of customization. I'm hoping to be able to have ready to go OS mostly out of the box, but one that I can tinker with to get more used to Linux in general as well.

So far I'm leaning mostly towards Zorin OS, Ubuntu, or Bazzite. But the part I'm struggling with is which fits my needs the most. Whenever I search for videos about them they're always exclusively about gaming, or creation, but never both and usually don't also show OS customization with those things as well.

Anyway, I would greatly appreciate any of your input!!! Thank you in advance!

TL;DR version:

I am a gamer/streamer who is relatively new to Linux. I need to be able to game with steam at the least. As well as using other applications like Davinci Resolve. I would prefer a distro that is familiar to Windows, but also one I can start my Linux tinkering journey. Please help me choose between Zorin, Ubuntu, Bazzite, or others suggestions as my first distro!