Search found 48 matches

by Mazzz79
Thu May 14, 2026 5:51 am
Forum: Useful tips
Topic: How to Set the CPU Governor to performance
Replies: 0
Views: 27

How to Set the CPU Governor to performance

List:

Code: Select all

cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
List Current:

Code: Select all

cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Set:

Code: Select all

echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor

Code: Select all

powerprofilesctl set performance
by Mazzz79
Fri May 02, 2025 3:03 pm
Forum: Useful tips
Topic: Create .ISO from folder
Replies: 0
Views: 565

Create .ISO from folder

Code: Select all

mkisofs -o cd.iso Folder/
by Mazzz79
Fri May 02, 2025 12:24 pm
Forum: Useful tips
Topic: Rip CD's
Replies: 0
Views: 316

Rip CD's

Rips CD's using cdrdao

Code: Select all

cdrdao read-cd --datafile image.bin --driver generic-mmc:0x20000 --device /dev/cdrom --read-raw image.toc
Create .cue from .toc file

Code: Select all

toc2cue image.toc image.cue
by Mazzz79
Mon Nov 18, 2024 5:31 pm
Forum: Useful tips
Topic: Set Nvidia fan speed linux
Replies: 0
Views: 2612

Set Nvidia fan speed linux

Code: Select all

sudo nvidia-settings -a "[gpu:0]/GPUFanControlState=1" -a "[fan:0]/GPUTargetFanSpeed=VALUE"
by Mazzz79
Mon Sep 02, 2024 1:55 pm
Forum: Gentoo
Topic: AC3 Encode/Pipewire/Pulseaudio
Replies: 0
Views: 2903

AC3 Encode/Pipewire/Pulseaudio

Dont forget to install:

Code: Select all

media-plugins/alsa-plugins
media-sound/dcaenc
by Mazzz79
Mon Sep 02, 2024 9:53 am
Forum: Useful tips
Topic: Add custom script to nautilus
Replies: 0
Views: 1859

Add custom script to nautilus

Goto or create:

Code: Select all

~/.local/share/nautilus/scripts/
Add your BASH-Script in this folder

Restart nautilus

Code: Select all

nautilus -q
by Mazzz79
Wed Aug 28, 2024 11:44 am
Forum: Gentoo
Topic: Add Gnome flatpak repository in Gentoo
Replies: 0
Views: 1830

Add Gnome flatpak repository in Gentoo

Code: Select all

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
by Mazzz79
Tue Aug 20, 2024 5:24 am
Forum: Gentoo
Topic: Use eix to find packages without useflag
Replies: 0
Views: 1788

Use eix to find packages without useflag

Just to check

Code: Select all

eix --only-names --installed-without-use "USE_FLAG"
To create list. (Change NAME and USE_FLAG)

Code: Select all

export INSTALLED_NAME_PACKAGES=$(eix --only-names --installed-without-use "USE_FLAG")
To preview

Code: Select all

emerge -pv ${INSTALLED_NAME_PACKAGES}
by Mazzz79
Thu Jul 11, 2024 4:31 am
Forum: Useful tips
Topic: Create bootable USB using DD
Replies: 0
Views: 1862

Create bootable USB using DD

Code: Select all

dd bs=4M if=path/to/image.iso of=/dev/disk/by-id/usb-My_flash_drive conv=fsync oflag=direct status=progress
by Mazzz79
Mon Jul 08, 2024 5:46 am
Forum: Useful tips
Topic: How to destroy zfs snaphots
Replies: 0
Views: 1799

How to destroy zfs snaphots

Destroy "All" snapshots!

Code: Select all

zfs list -H -o name -t snapshot | xargs -n1 zfs destroy
Destroy "Selected" snapshots!

Code: Select all

zfs list -t snapshot -o name | grep zfs-auto-snap_daily | xargs -n 1 zfs destroy -r