Skip to content

Instantly share code, notes, and snippets.

View Alecerzea's full-sized avatar
🎯
Focusing

Alecerzea Alecerzea

🎯
Focusing
View GitHub Profile
@Alecerzea
Alecerzea / Disabling Fedora-Linux Telemetry.sh
Last active July 7, 2024 17:36
Disabling Fedora-Linux Telemetry
#These telemetry is disabled by default, but if you wanna be more sure, give these a try
printf "%s" "
countme=false
" | sudo tee -a /etc/dnf/dnf.conf
@Alecerzea
Alecerzea / Fedora-Virt-OSX.sh
Last active July 7, 2024 17:27
Make OSX-KVM and ULTMOS work on Virt-Manager on Fedora-Linux
#OSX-KVM works if you launch it through the terminal, If you wanna use it inside Virt-Manager, as well as ULTMOS, you would need these commands
echo "Do you use OSX-KVM or ULTMOS? [O/U]"
read -r OSX
case "$OSX" in
o|O)
cd ~
chown -R qemu:qemu OSX-KVM
cd OSX-KVM
chcon -R -u system_u -r object_r -t svirt_image_t OVMF_CODE.fd
;;
@Alecerzea
Alecerzea / Getting-Rid-of-Ubuntu-Telemetry-and-giving-the-middle-finger-to-Canonical.sh
Last active July 7, 2024 17:29
Getting Rid of Ubuntu Telemetry and giving the middle finger to Canonical
echo "JUST USE DEBIAN OR LMDE"
@Alecerzea
Alecerzea / Debian-to-Kali.sh
Last active July 17, 2024 05:50
Converting Debian to Kali
sudo curl https://archive.kali.org/archive-key.asc -o /etc/apt/trusted.gpg.d/kali-archive-key.asc
sudo sh -c "deb http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware' >> /etc/apt/sources.list"
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo reboot
sudo apt autoremove --purge
sudo apt clean