Search found 52 matches

by Mazzz79
Sat Aug 01, 2026 5:25 pm
Forum: Gentoo
Topic: Create custom package emerge option
Replies: 0
Views: 33

Create custom package emerge option

Create: mkdir -p /etc/portage/package.env Make file: nano your-file Edit file: Add your package that need custom settings ex. dev-qt/qtwebengine your-file.conf Then: mkdir -p /etc/portage/env Make file: nano your-file.conf Edit file: Add your custom settings ex. MAKEOPTS="-j4 -l4"
by Mazzz79
Sat Aug 01, 2026 12:01 pm
Forum: Gentoo
Topic: How to custom UEFI Kernel
Replies: 0
Views: 23

How to custom UEFI Kernel

Dont forget to add this: (Built-in kernel command line)

Code: Select all

CONFIG_CMDLINE="root=\"PARTUUID=5b7c0476-85a5-407a-aa03-d5e4bbeccc8c\" rw splash quiet"
Change PARTUUID to your ID
by Mazzz79
Fri Jul 31, 2026 11:42 am
Forum: Useful tips
Topic: Login via ssh with key
Replies: 0
Views: 34

Login via ssh with key

On the local side: (User home folder)

Code: Select all

ssh-keygen -t ed25519
Then export key to server:

Code: Select all

ssh-copy-id -i ~/.ssh/id_ed25519.pub <username>@<server>
Now you can login to server:

Code: Select all

ssh <server>
by Mazzz79
Fri Jul 31, 2026 9:15 am
Forum: Useful tips
Topic: Fix keyboard layout when remote steam
Replies: 0
Views: 23

Fix keyboard layout when remote steam

Create file:

Code: Select all

~/.xprofile
Add to file: (change se to your layout)

Code: Select all

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

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

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

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

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

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

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