Search found 47 matches

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

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: 261

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: 2384

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: 2546

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: 1646

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: 1646

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: 1685

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: 1705

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: 1706

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
by Mazzz79
Sat Jun 22, 2024 9:18 am
Forum: Useful tips
Topic: Find text inside files using grep
Replies: 0
Views: 1663

Find text inside files using grep

Code: Select all

grep -Rnw '/path/to/somewhere/' -e 'pattern'