sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install xfce4-pulseaudio-plugin pavucontrol
systemctl --user enable --now pipewire pipewire-pulse wireplumber
sudo dnf config-manager setopt fedora-cisco-openh264.enabled=1
sudo dnf upgrade --refresh
sudo dnf swap ffmpeg-free ffmpeg --allowerasing
sudo dnf install gstreamer1-plugins-good gstreamer1-plugins-bad-freeworld gstreamer1-plugins-ugly gstreamer1-libav lame
sudo dnf install xfce4-pulseaudio-plugin pavucontrol
systemctl --user enable --now pipewire pipewire-pulse wireplumber
dnf install mesa-va-drivers-freeworld mesa-va-drivers-freeworld.i686
Do zarządzania slinux
sudo dnf install setroubleshoot setroubleshoot-server policycoreutils-python-utils setools-console
sudo dnf install policycoreutils-gui setroubleshoot
system-config-selinux
sealert -a /var/log/audit/audit.log
Legenda (oznaczenia używane w postach) czyli lets clean this burdel
piątek, 7 sierpnia 2026
Fedora 44 kodeki i dzwięk bez bólu głowy
niedziela, 2 sierpnia 2026
Kompilacja ikon blucurve na nowej fedorze 44
sudo dnf install cmake python3 gtk2-devel gtk3-devel gtk4-devel gcc gcc-c++
git clone https://github.com/neeeeow/Bluecurve.git
cd Bluecurve
mkdir build && cd build
cmake .. # jeżeli cmake wypluje błąd (cmake .. -DCOMPILE_GTK2_ENGINE=OFF)
make
sudo make install
Szybszy dnf na Fedorze
sudo dnf config-manager setopt max_parallel_downloads=10 fastestmirror=True
Sprawdzenie
dnf --dump-main-config | grep -E '^(fastestmirror|max_parallel_downloads) = '
Reset do wartości domyślnych
sudo dnf config-manager unsetopt max_parallel_downloads fastestmirror
czwartek, 30 lipca 2026
Imput remaper (konfiguracja myszy) nie startuje razem z systemem fedora systemd wayland.
sudo systemctl enable --now input-remapper
jeśli wisi
# 1. Ubijamy wszelkie pozostałości po input-remapperze działające na Twoim koncie użytkownika
sudo pkill -f input-remapper
# 2. Dla pewności sprawdzamy, czy żaden proces nie przetrwał (jeśli nic nie wyświetli, jest czysto)
ps aux | grep input-remapper | grep -v grep
#3. Omijamy rozwiązania specyficzne dla gnome / kde
mkdir -p ~/.config/autostart && nano ~/.config/autostart/input-remapper-autoload.desktop
#zawartość
[Desktop Entry]
Type=Application
Name=Input Remapper Autoload
Exec=input-remapper-control --command autoload
X-GNOME-Autostart-enabled=true
# zapisz
Ctrl o Ctrl x
# 3. Teraz, gdy magistrala D-Bus na pewno jest wolna, startujemy usługę systemd
sudo systemctl start input-remapper
sprawdzamy
systemctl status input-remapper
wtorek, 27 stycznia 2026
tworzenie nowego usera z wszystkimi grupami
sudo useradd -m username \
&& sudo passwd username \
&& sudo usermod -aG cdrom,floppy,sudo,audio,dip,video,plugdev,users,netdev,scanner,lpadmin username
środa, 21 stycznia 2026
niedziela, 11 stycznia 2026
mediainfo sprawdzamy dane o konstrukcji i jakości wszelakich plików wideo
mediainfo concy-naprawa-po-restarcie.mp4
General
Complete name : concy-naprawa-po-restarcie.mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom (isom/av01/iso2/mp41)
File size : 238 MiB
Duration : 23 min 17 s
Overall bit rate mode : Variable
Overall bit rate : 1 426 kb/s
Frame rate : 30.000 FPS
Writing application : Lavf62.3.100
Video
ID : 1
Format : AV1
Format/Info : AOMedia Video 1
Format profile : Main@L5.0
Codec ID : av01
Duration : 23 min 17 s
Bit rate : 1 172 kb/s
Width : 2 560 pixels
Height : 1 440 pixels
Display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 30.000 FPS
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Bits/(Pixel*Frame) : 0.011
Stream size : 195 MiB (82%)
Color range : Limited
Color primaries : BT.709
Transfer characteristics : BT.709
Matrix coefficients : BT.709
Codec configuration box : av1C
Audio
ID : 2
Format : AAC LC
Format/Info : Advanced Audio Codec Low Complexity
Codec ID : mp4a-40-2
Duration : 23 min 17 s
Source duration : 23 min 17 s
Bit rate mode : Variable
Bit rate : 247 kb/s
Maximum bit rate : 384 kb/s
Channel(s) : 2 channels
Channel layout : L R
Sampling rate : 48.0 kHz
Frame rate : 46.875 FPS (1024 SPF)
Compression mode : Lossy
Stream size : 41.1 MiB (17%)
Source stream size : 41.1 MiB (17%)
Default : Yes
Alternate group : 1
Smart dysku
sudo nvme smart-log /dev/nvme0n1
sudo smartctl -a /dev/nvme0n1
# 1. Install (Debian/Ubuntu)
sudo apt update && sudo apt install smartmontools
# 2. Scan for drives
sudo smartctl --scan
# 3. Check overall health (replace /dev/sdX with your drive, e.g., /dev/sda)
sudo smartctl -H /dev/sdX
# 4. Get all SMART data
sudo smartctl -a /dev/sdX
# 5. Run a short self-test (quick check)
sudo smartctl -t short /dev/sdX
# 6. Run a long self-test (thorough check)
sudo smartctl -t long /dev/sdX
# 7. View test results (after running a test)
sudo smartctl -l selftest /dev/sdX


