r/archlinux Jul 04 '18

FAQ - Read before posting

Upvotes

First read the Arch Linux FAQ from the wiki

Code of conduct

How do I ask a proper question?

Smart Questions
XYProblem
Please follow the standard list when giving a problem report.

What AUR helper should I use?

There are no recommended AUR helpers. Please read over the wiki entry on AUR helpers. If you have a question, please search the subreddit for previous questions.

If your AUR helper breaks know how to use makepkg manually.

I need help with $derivativeDistribution

Use the appropriate support channel for your distribution. Arch is DIY distribution and we expect you to guide us through your system when providing support. Using an installer defeats this expectation.

Why was the beginners guide removed?

It carried a lot of maintenance on the wiki admin as it duplicated a lot of information, and everyone wanted their addition included. It was scrapped for a compact model that largely referenced the main wiki pages.

Why Arch Linux?

Arch compared to other distributions

Follow the wiki. Random videos are unsupported.

<plug>Consider getting involved in Arch Linux!</plug>


r/archlinux 1h ago

QUESTION MSI FORGE GK600 TKL Wireless freezes on 2.4 GHz

Upvotes

Hi everyone,

Trying to diagnose a strange issue with my MSI FORGE GK600 TKL WIRELESS keyboard on Arch Linux.

The keyboard works perfectly over USB-C and Bluetooth, but when connected through its 2.4 GHz USB dongle, it occasionally completely stops responding while Steam Input / Xbox controller support is being used. At least I suspected this because during gameplay this happens.

Unplugging and reconnecting the keyboard dongle immediately restores functionality.

System

  • Arch Linux
  • Kernel: zen
  • Desktop: KDE Plasma
  • Motherboard: MSI MPG B550 GAMING PLUS
  • CPU: AMD Ryzen 7 5700X
  • GPU: AMD Radeon RX 9070 XT
  • Keyboard: MSI FORGE GK600 TKL WIRELESS
  • Keyboard USB VID:PID: 0db0:8a8f
  • Keyboard/receiver revision reported by udev: 0138
  • Steam with Steam Input / Xbox controller support (both disabled / enabled)

Behavior

The issue only happens when the keyboard is connected using its 2.4 GHz receiver. When it freezes, unplugging and reconnecting the receiver fixes the keyboard immediately. There are no obvious USB/xHCI errors in the kernel log at the moment of the freeze. The kernel still appears to know that the USB device exists.

When I physically reconnect the dongle, the kernel reports normal USB enumeration:

usb 1-5: New USB device found, idVendor=0db0, idProduct=8a8f
usb 1-5: Product: MSI FORGE GK600 TKL WIRELESS

The receiver is handled by usbhid / hid-generic.

HID layout

The receiver exposes several different HID/input devices rather than just a keyboard.

From /proc/bus/input/devices:

MSI FORGE GK600 TKL WIRELESS Keyboard
MSI FORGE GK600 TKL WIRELESS Mouse
MSI FORGE GK600 TKL WIRELESS Consumer Control
MSI FORGE GK600 TKL WIRELESS System Control
MSI FORGE GK600 TKL WIRELESS Keyboard
MSI FORGE GK600 TKL WIRELESS System Multi Axis
MSI FORGE GK600 TKL WIRELESS ABS input

The interesting one is:

N: Name="MSI FORGE GK600 TKL WIRELESS System Multi Axis"
H: Handlers=event9 js0

So the keyboard receiver exposes a joystick device:

/dev/input/js0

Its input capabilities are reported as:

ATTRS{capabilities/abs}=="3"
ATTRS{capabilities/ev}=="1f"
ATTRS{capabilities/key}=="1 0 0 0 0"
ATTRS{capabilities/rel}=="80"

and:

ATTRS{id/vendor}=="0db0"
ATTRS{id/product}=="8a8f"
ATTRS{name}=="MSI FORGE GK600 TKL WIRELESS System Multi Axis"

The corresponding USB interface is:

bInterfaceNumber = 02
bInterfaceClass  = 03
bInterfaceSubClass = 00
bInterfaceProtocol = 00

The receiver itself exposes five USB interfaces.

Second test: disable both js0 and the corresponding event device (by AI)

I temporarily disabled access to the joystick node and event device:

/dev/input/js0
/dev/input/event9

sudo chmod 000 /dev/input/js0
sudo chmod 000 /dev/input/event9

This is currently the most promising workaround.

Obviously event9 is not a stable device number, so I created a udev rule based on the actual input device identity instead.

udev workaround

/etc/udev/rules.d/99-msi-gk600-no-joystick.rules

# MSI FORGE GK600 TKL WIRELESS
# Prevent Steam Input from accessing the System Multi Axis input collection.

SUBSYSTEM=="input", KERNEL=="event*", \
ATTRS{name}=="MSI FORGE GK600 TKL WIRELESS System Multi Axis", \
ATTRS{id/vendor}=="0db0", \
ATTRS{id/product}=="8a8f", \
MODE:="0000"

SUBSYSTEM=="input", KERNEL=="js*", \
ATTRS{name}=="MSI FORGE GK600 TKL WIRELESS System Multi Axis", \
ATTRS{id/vendor}=="0db0", \
ATTRS{id/product}=="8a8f", \
MODE:="0000"

Reload:

sudo udevadm control --reload-rules

After triggering the rule:

stat -c '%a %n' /dev/input/event9 /dev/input/js0

returns:

0 /dev/input/event9
0 /dev/input/js0

So both the evdev and legacy joystick nodes belonging to the keyboard's System Multi Axis collection are now inaccessible from userspace.

hidraw investigation

The receiver also creates several hidraw devices:

hidraw3 - Keyboard
hidraw4 - Mouse
hidraw5 - composite HID interface
hidraw6 - generic HID
hidraw7 - generic HID

I checked them while Steam was running:

sudo fuser -v /dev/hidraw3 /dev/hidraw4 /dev/hidraw5 /dev/hidraw6 /dev/hidraw7

and:

sudo lsof /dev/hidraw3 /dev/hidraw4 /dev/hidraw5 /dev/hidraw6 /dev/hidraw7

Neither showed Steam keeping any of these devices continuously open. Of course, this does not rule out Steam opening them briefly during HID/controller enumeration.

Current hypothesis

My current theory is:

GK600 2.4 GHz receiver
       |
       +-- Keyboard
       +-- Mouse
       +-- Consumer Control
       +-- System Control
       +-- Keyboard
       |
       +-- System Multi Axis
               |
               +-- /dev/input/eventX
               +-- /dev/input/jsX
                        |
                        +-- Steam Input scans it
                                |
                                +-- receiver/HID state gets stuck

The fact that:

  1. USB-C works
  2. Bluetooth works
  3. only the 2.4 GHz dongle freezes
  4. the receiver exposes a fake/extra joystick-like device
  5. the problem correlates with Steam Input/Xbox controller support
  6. reconnecting the receiver immediately restores the keyboard

makes me suspect either:

  • a firmware bug in the GK600 2.4 GHz receiver,
  • an unusual/broken HID descriptor,
  • or an interaction between Steam Input's device enumeration and this System Multi Axis HID collection.

I do not currently think this is a general keyboard, RF, or basic USB/xHCI problem.

As a note, this keyboard is working perfectly on Windows 11 and situation is Linux spesific not only for Archlinux.

Questions

Has anyone seen something similar with:

  • MSI FORGE GK600 TKL WIRELESS,
  • another wireless keyboard exposing a System Multi Axis / joystick device,
  • Steam Input freezing a composite USB HID receiver,
  • or Steam probing a keyboard's fake joystick interface?
  • or anyone who faced problems like this?
  • or any other reason or solution for that matter?

PS : Powered by AI.


r/archlinux 2h ago

DISCUSSION Umbreil (Noctalia) vs NIRI WM

Upvotes
  • Have anybody here used both of these and have any opinions on them?
  • If NIRI is the better choice then, DMS or Noctalia v5 or manual configuration?

r/archlinux 13h ago

SUPPORT Firefox microphone has no echo cancellation on Arch

Upvotes

Hi,

I switched to Arch a little while ago and noticed an issue that I never experienced on Debian or Fedora, and I'm not quite sure how to troubleshoot it.

When I use my microphone in Firefox, there doesn't seem to be any echo cancellation. The other person can hear their own audio coming back through my microphone.

I found a few solutions that involve creating a second virtual input specifically for echo cancellation, but I would prefer not to do that if possible.

Since the exact same hardware worked without any additional configuration on both Debian and Fedora, I'm assuming Arch should be able to achieve the same thing without needing a separate virtual input. I'm just not sure what might be different in my current setup or where I should start looking.

Has anyone run into this on Arch before? Is there a PipeWire, PulseAudio, or WebRTC setting I should check?

[user@archlinux ~]$ pactl info | grep "Server Name"
Server Name: PulseAudio (on PipeWire 1.6.8)

r/archlinux 5h ago

QUESTION Help me To connect USB wifi 802.11N in arch Linux

Upvotes

Hay anyone help To connect a WiFi USB card, in arch Linux, whenever I scan use iwctl . I can't see a My Wi-Fi Chip name.

im using arch linux in that i start iwctl and then device list but it show nothing any device name in lsusb it show Bus 001 Device 053: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter, in my wifi adapter a name written something like 802.11N


r/archlinux 1d ago

QUESTION What's the optimal Linux setup & apps for kids?

Upvotes

Hey hello everyone, especially Linux parents

Our daughter turns 9 very soon. I'd like to ask you all for advice for the optimal setup and for children-friendly apps.

From my workplace I've got a free Windows Surface 7 Touchscreen Laptop for free. Wiped out Windows, installed Arch Linux, No way I'll let her start with Windoze first ;)

Then I've installed my root parent account with the basic apps and stuff. Including some of my ZSH scripts. I'm a Senior Developer btw.

So, now I'm about to set up a second user account for my daughter, but stuck. I have no idea where to start best. Here are a couple of thoughts:

  • What are the next best, ideal steps to create her account?
  • She will get her first email address, and I'll set up Thunderbird for her. So that she can email to us parents and to some of her school friends. Is that okay?
  • My wife and me, we are happy to grant her basic Internet access, and to block most non-children friendly pages on our home router firewall, such as Facebook or YouTube. Is that safe enough?
  • Now, a big question: what are great educational Linux-based apps for kids you highly recommend?
  • Games? Not sure about that. We do not want her to get too addicted as well.

Any other ideas & suggestions welcome.

Thanks, parents. It's a fun challenge :)


r/archlinux 17h ago

QUESTION 4K60 Issues on 7.2.3-arch1-3

Upvotes

Hey all,

I was wondering if anyone has had this issue or knows a temporary workaround

Last night I updated my kernel to 7.2.3 via pacman like normal
[2026-09-06T12:39:43-0500] [ALPM] upgraded cpupower (7.2.2-1 -> 7.2.3-1)
[2026-09-06T12:39:46-0500] [ALPM] upgraded linux (7.1.11.arch1-1 -> 7.2.3.arch1-3)
[2026-09-06T12:39:49-0500] [ALPM] upgraded linux-headers (7.1.11.arch1-1 -> 7.2.3.arch1-3)

After rebooting I couldn't seem to get my TV to display (it took me a while to get any display to turn on because I had to modify ~/.config/kwinoutputconfig.json to enable my other displays that are usually disabled)

Once I got my other displays working it looked like like my 4K60 resolution was broken. If I switched to 4K30 I had no problems.

I was able to find some discussions forums that seem to say that YCbCr 4:2:0 is broken in the new kernel. I did check on my TV and the 4K60 resolution does in fact use YCbCr 4:2:0 https://bbs.archlinux.org/viewtopic.php?pid=2309054
https://gitlab.freedesktop.org/drm/amd/-/work_items/5757
YCbCr 4:2:0 Video Data Block:
   VIC  96:  3840x2160   50.000000 Hz  16:9    112.500 kHz    594.000000 MHz
   VIC  97:  3840x2160   60.000000 Hz  16:9    135.000 kHz    594.000000 MHz
   VIC 101:  4096x2160   50.000000 Hz 256:135  112.500 kHz    594.000000 MHz
   VIC 102:  4096x2160   60.000000 Hz 256:135  135.000 kHz    594.000000 MHz

It seems like my experience matches the bug report exactly. I guess my question is what can I do about this in the meantime? Since this is a kernal bug there is likely no intermediate workaround other than revert the kernal, which might be a bad idea? This seems like a pretty major bug in the kernel so hopefully it gets fixed soon but I am guessing there is no guarantee.


r/archlinux 20h ago

SUPPORT Messy package management from multiple sources. Remove unneded packages or start from scratch?

Upvotes

As the title states, the state of my arch set up is a mess. I have packages installed from pacman, the AUR, homebrew, and even curl sh commands among others, making it sketchy to update my system as well as being worried about the machine's security.

Am I justified in completely nuking and reinstalling arch, assuming my data is saved, or should I spend the time going through the packages installed through various sources and cleaning up manually?

I may have also not encrypted the hard drive/ partition so that could be another big reason to reinstall


r/archlinux 16h ago

SHARE easy hotspot for arch

Upvotes

My uni dorms have ass wifi but they have very good wired connections, so i was using my pc as a router and connecting my other devices like my phone to get fast internet in all my devices. i was using nmcli but it was working very unreliably so i thought of making myself a hotspot helper as it would give experience to me as a beginner.

So i have made it and have been using it since many weeks with no issues but im afraid i might be doing something wrong and am blind to it so im asking for suggestions and other useful stuff i should keep in mind while making something like this.

it can be found here github : https://github.com/AjayyXD/hotspotctl

or aur : https://aur.archlinux.org/packages/hotspotctl-git


r/archlinux 5h ago

SUPPORT How to run adobe after effects on arch linux

Upvotes

I have already used aegunx but it didn't work and giving me some errors


r/archlinux 1d ago

SUPPORT Weird audio issue (update)

Upvotes

Idk but some how the rear audio port of my pc working kinda unstable, its stutter and the sound adjust bar keep poping up, volume turn up and down constantly, i tried to find someone with the same problem for weeks but cannot find any working solution. Anyone have idea about this ? I'm kinda desperate rn :")))

update:
here is my hardware detail:

**
Audio device: Intel Corporation Device f0c8 (rev 11)

DeviceName: Onboard - Sound

Subsystem: Device 1c6c:1220

Kernel driver in use: snd_hda_intel

**
/proc/asound/card0/codec#0:Codec: Realtek Generic

/proc/asound/card1/codec#0:Codec: Nvidia GPU 80 HDMI/DP

**
hyprwire

kpipewire

lib32-libpipewire

lib32-pipewire

libpipewire

libpulse

libwireplumber

linux-firmware

linux-firmware-amdgpu

linux-firmware-atheros

linux-firmware-broadcom

linux-firmware-cirrus

linux-firmware-intel

linux-firmware-mediatek

linux-firmware-nvidia

linux-firmware-other

linux-firmware-radeon

linux-firmware-realtek

linux-firmware-whence

pipewire

pipewire-alsa

pipewire-audio

pipewire-jack

pipewire-pulse

pipewire-session-manager

pulse-native-provider

pulseaudio-qt

sof-firmware

wireplumber

**
journalctl -b -p 4 does not show any noticable error relate to sound

**
Btw the issue only happen on linux, always since i installed arch
I dual boot, so i boot to window to make sure its not some kind of hardware issue and it works kinda flawless on windows.


r/archlinux 1d ago

QUESTION What Desktop Environment / Window Manager do you recommend? Leaving KDE Plasma and looking for something new

Thumbnail
Upvotes

r/archlinux 20h ago

SUPPORT | SOLVED CS2 on Arch Linux: In-game mouse "locks", view snaps back

Thumbnail
Upvotes

r/archlinux 1d ago

QUESTION New to Arch.

Upvotes

Hey all,
I just downloaded Arch, I switched from Mint, from which I switched to from Windows 11. I have been watching tutorials and reading the books I can find about linux. Plus I was in a tech school for IT in which I learned a little about linux.

This is so new to me. What do I need to know?


r/archlinux 1d ago

SUPPORT Black screen when logging into the system + cant switch into the other tty(black screen)

Upvotes

Hello, I have an arch with KDE plasma and Wayland, and recently this problem appeared, if I sit and wait with the black screen, it sometimes flashes and I see the KDE. When switching into another tty I'm just getting soft locked.

I have a GTX 1050 Ti as a gpu


r/archlinux 1d ago

SUPPORT | SOLVED Help with curved bezel corners

Upvotes

I have a laptop (Samsung Galaxy Book) that has curved bezel corners that make the visible screen not truly rectangular. This is particularly problematic in the console because the leftmost character of the top and bottom lines are cut off by the bezel, but it's also kind of annoying in wayland (except in hyprland where I can just match the windows' rounding to the bezel's, but I don't really like hyprland).

Question 1: is there a way to tell the VTY that the usable screen is actually smaller than it thinks it is so that it's not writing characters under the places the bezel covers?

Question 2: is there a way to tell my compositor the same thing, so that it gives me sharp corners that are placed so that no part of the drawn screen is covered by the bezel?

I know I can keep the windows themselves out of the corners with compositor rules, but I'm wondering if there's a way to have the "full screen" not fill up the physical screen but leave border strips on the sides, top, and bottom so that I get a sharp-cornered rectangle.

SOLVED thanks to u/Gazenka: force the mode and position with KMS which works both for the VTY and for Wayland on Xe (I didn't try with X11 or i915).


r/archlinux 15h ago

SUPPORT | SOLVED How do I get Bluetooth in KDE settings

Upvotes

I installed bluez and it can pair but how do I make it appear in system settings as an option without needing to use the terminal for it


r/archlinux 21h ago

DISCUSSION Daily driving pass as main password manager

Thumbnail
Upvotes

r/archlinux 18h ago

QUESTION How can I Install a package without one of its dependencies and keep it that way with updates?

Upvotes

I want to install plasma-meta without flatpak-kcm and okular without phonon-qt6.


r/archlinux 1d ago

QUESTION Arch Linux boot problem started after reseating RAM — system randomly resets and sometimes loses/changes boot entry

Upvotes

Hi everyone. I'm trying to diagnose a strange problem that has been happening for about one month.

My motherboard is a Gigabyte B250M-DS3H, and my system has been running Arch Linux from a ~2 TB HDD.

The problem started after I physically removed my RAM and reinstalled it one day. Before that, the computer was working normally.

Since then, I've had a recurring boot problem.

What happens

After the RAM was removed and reinstalled, the computer would sometimes fail to boot properly.

If I removed the RAM and reseated it again, the computer would work normally for some time. However, this was never a permanent fix.

After some time, the computer would sometimes suddenly reset/restart without warning.

After the restart, I would sometimes end up at the motherboard's boot-device selection screen and have to manually select the operating system.

Originally this computer was dual-booting Windows and Arch Linux. Later, I completely removed Windows and kept only Arch Linux.

Even after removing Windows, I continued seeing a Windows-related boot entry such as:

Windows Boot Manager (ST2000VX008-2E3164)

RAM testing

I initially suspected the RAM because the problem started after reseating it.

I tested the RAM sticks individually.

Each RAM stick appears to work by itself.

I tested the motherboard's RAM slots.

All 4 RAM slots appear to work.

Using only one RAM stick initially made the computer much more stable.

For some time, Arch worked normally with one RAM stick.

However, a few days ago, the exact same boot problem started happening even with a single RAM stick.

So at this point I'm not convinced that this is simply a dual-channel RAM problem.

Arch/UEFI investigation

I booted an Arch Linux installation USB and inspected the HDD.

lsblk showed:

/dev/sda 1.82 TiB ├─/dev/sda2 100M vfat EFI System └─/dev/sda6 1.8T ext4

/dev/sda6 is my Arch root filesystem.

I mounted it and verified that the Arch installation was still present.

The boot directory contained:

/mnt/arch/boot/vmlinuz-linux-lts /mnt/arch/boot/initramfs-linux-lts.img /mnt/arch/boot/grub/ /mnt/arch/boot/grub/grub.cfg

The EFI partition contained:

/mnt/efi/EFI/Boot/bootx64.efi /mnt/efi/EFI/GRUB/grubx64.efi

My /etc/fstab also correctly referenced the root and EFI partitions:

UUID=124c843c-4cd7-4256-b371-96c4bdc7e9ea / ext4 ... UUID=A22E-3E60 /boot/efi vfat ...

However, efibootmgr -v showed that there was no Arch Linux UEFI boot entry.

There was still an old:

Windows Boot Manager

entry.

I manually recreated the Arch entry:

efibootmgr -c -d /dev/sda -p 2 -L "Arch Linux" -l '\EFI\GRUB\grubx64.efi'

After doing that, efibootmgr showed:

BootOrder: 0000,0004,0001,0003 Boot0000* Arch Linux ... \EFI\GRUB\grubx64.efi

I rebooted and Arch successfully booted from the HDD.

So the Arch installation itself was definitely still there.

But the problem returned

This is what is confusing me.

Even after fixing the UEFI boot entry, the problem eventually returned.

And now it has happened with only one RAM stick installed.

I also noticed that when I initially had trouble booting the Arch USB with two RAM sticks, removing one stick allowed the Arch USB to boot successfully.

When the Arch USB booted, I checked:

free -h

and with one 4 GB stick it showed approximately:

Mem: 3.86Gi

I also checked the disks with:

lsblk -f fdisk -l /dev/sda

The HDD and partitions were detected correctly.

The Arch root partition was mountable, and the expected Arch files were present.

Another important symptom

At one point I received the Windows recovery screen:

Your PC/Device needs to be repaired A required device isn't connected or can't be accessed. Error code: 0xc0000225

This happened even though Windows had already been removed.

This made me suspect that the firmware was still trying to boot the old Windows Boot Manager entry.

Current situation

The timeline is basically:

Computer working normally → physically removed/reinstalled RAM → problems begin → reseating RAM temporarily fixes it → random unexpected resets occur → boot/UEFI problems appear → Windows was later removed completely → Arch remains → single RAM initially makes the system stable → eventually the problem also appears with single RAM.

I have tested:

Both RAM sticks individually.

All 4 motherboard RAM slots.

Dual/single RAM configurations.

Arch Linux installation USB.

HDD partition detection.

Arch filesystem mounting.

Existing Arch kernel/initramfs.

Existing GRUB files.

EFI files.

/etc/fstab.

UEFI boot entries with efibootmgr.

The Arch installation itself has not been reinstalled or formatted.

I am currently trying to determine whether this is:

RAM instability/failure

RAM contact/socket issue

motherboard problem

CPU memory-controller issue

CMOS/BIOS issue

failing CMOS battery

HDD/EFI partition problem

UEFI/NVRAM problem

unexpected power/reset problem

or some combination of these

What would you recommend testing next?

Especially:

How can I distinguish a RAM problem from a motherboard/CPU memory-controller problem?

Could physically reseating RAM have exposed a motherboard/slot/contact problem?

Could a weak CMOS battery cause the UEFI boot entry/order to disappear or change?

Could unexpected resets corrupt the EFI/GRUB configuration?

What SMART/drive tests should I run on the HDD?

What BIOS settings should I check/reset on a Gigabyte B250M-DS3H?

What hardware tests would you perform before considering an Arch reinstall?

I don't want to reinstall Arch because the existing installation and data are still present.

I would really appreciate a systematic way to identify the actual failing component rather than continuing to reseat RAM and hope it works.


r/archlinux 1d ago

SUPPORT having trouble updating Arch

Thumbnail
Upvotes

r/archlinux 19h ago

QUESTION Ayuda pls

Upvotes

Instale arch + xfce en una tostadora con un intel celeron y 8gb de ram. Aveces se cuelga, alguien sabe como puedo hacerlo mas eficiente? Se cuelga al usar chromium(suelo usar firefox pero me dijeron que chromium para drive mejor) es para el baxi.


r/archlinux 19h ago

QUESTION Getting Minecraft on Arch

Upvotes

I recently switched to arch, and id like to be able to play minecraft, but in the reseqrch I have done, I have been told to use the AUR, but with the recent attacks and the fact that I switched to arch because I got hacked I would like to not use the AUR. Is there another way alternative method, and if so, can I get a detailed instruction set to get it?


r/archlinux 2d ago

SUPPORT | SOLVED ttf-liberation installed, but the Serif variant is missing from fc-list

Upvotes

I have installed ttf-liberation on my system. when i do fc-list I only get the mono and sans variant.

fc-list | grep liberation 
/usr/share/fonts/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold
/usr/share/fonts/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold
/usr/share/fonts/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic
/usr/share/fonts/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic
/usr/share/fonts/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular
/usr/share/fonts/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic
/usr/share/fonts/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic
/usr/share/fonts/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular

the files is located in /usr/share/fonts/liberation and the serif version is found but no in fc-list

ls -la /usr/share/fonts/liberation 
total 4288
drwxr-xr-x 1 root root    626 Sep  6 08:13 .
drwxr-xr-x 1 root root     64 Sep  6 08:13 ..
-rw-r--r-- 1 root root 284184 Jul 13  2024 LiberationMono-BoldItalic.ttf
-rw-r--r-- 1 root root 308068 Jul 13  2024 LiberationMono-Bold.ttf
-rw-r--r-- 1 root root 281608 Jul 13  2024 LiberationMono-Italic.ttf
-rw-r--r-- 1 root root 319624 Jul 13  2024 LiberationMono-Regular.ttf
-rw-r--r-- 1 root root 409108 Jul 13  2024 LiberationSans-BoldItalic.ttf
-rw-r--r-- 1 root root 414568 Jul 13  2024 LiberationSans-Bold.ttf
-rw-r--r-- 1 root root 415920 Jul 13  2024 LiberationSans-Italic.ttf
-rw-r--r-- 1 root root 410820 Jul 13  2024 LiberationSans-Regular.ttf
-rw-r--r-- 1 root root 376892 Jul 13  2024 LiberationSerif-BoldItalic.ttf
-rw-r--r-- 1 root root 370196 Jul 13  2024 LiberationSerif-Bold.ttf
-rw-r--r-- 1 root root 375760 Jul 13  2024 LiberationSerif-Italic.ttf
-rw-r--r-- 1 root root 393692 Jul 13  2024 LiberationSerif-Regular.ttf

. why is that?.

note:I have reinstalled the package and updated the cache several times

solution :

the files where really installed

fc-cache -fv

was not enough

I also need to remove /var/cache/fontconfig and ~/.cache/fontconfig

thanks for everyone's help


r/archlinux 1d ago

FLUFF Funny Story

Upvotes

tl;dr

So I've been using arch for 22 days now, i jus wanted to share my install journey

So i had been using fedora for a very long time, on my potato laptop, i thought thats enough basic stuff, lets go for a challenge, so i decided to install arch manually, went through the wiki found out cfdisk is much better way than fdisk and all that, after 30 mins of being in the cursed black screen, i decided to install cosmic as my DE but turns out my BIOS didnt support GPT tables so i had to do everything over this time with MBR, but then COSMIC, it was very buggy for my laptop, nothing was working so i decided to install kde through tty, then i couldnt remove cosmic completely so guess what i did, I decided to install arch fresh again 😭.

Then i installed the bloated KDE and i was like hell nah whats the point of having arch if its bloated, so guess what i did... a fresh install again 😭, this time the less bloated kde, then after a few days of KDE-ing i finally decided to install hyprland BUT this time i was able to remove kde completely so yeah no new install hehe

just thought I'd share my experience