This guide describes how to get Kodi running on Debian Bookworm based Raspberry Pi OS Lite 64Bit without having to run the full LXDE GUI of the desktop version.
It is based on this guide.
First, install kodi as usual with
apt install kodi
This guide describes how to get Kodi running on Debian Bookworm based Raspberry Pi OS Lite 64Bit without having to run the full LXDE GUI of the desktop version.
It is based on this guide.
First, install kodi as usual with
apt install kodi
#!/bin/bash | |
# Vars | |
HEREAMI="$(dirname "$(readlink -f "${0}")")" | |
URL="https://www.internic.net/domain/named.root" | |
FILE="/usr/share/dns/root.hints" | |
# Check if file is the same, otherwise override | |
if ! diff -q <(curl -s "${URL}") "${FILE}" > /dev/null 2>&1; then | |
# Download root.hints file |
dd if=/dev/zero of=1GB.bin bs=1 count=0 seek=1GB |
find . -type f -exec grep -H 'example string' {} \; | |
#or | |
grep -Rnw '.' -e 'example string' |
Official guide for PulseAudio: https://docs.audiorelay.net/instructions/linux/use-your-phone-as-a-mic-for-a-linux-pc
From: https://audiorelay.net/downloads/linux
Deb on debian or ubuntu, archive for others.
find / -type f -size +500M -exec du -sh {} \; |
convert <image> -define icon:auto-resize=256,64,48,32,16 favicon.ico |
#!/bin/bash | |
echo "Install 64Gram" | |
cd /tmp | |
# Download 64Gram from GitHub Releases | |
ghfile=$(curl -s https://api.github.com/repos/TDesktop-x64/tdesktop/releases/latest \ | |
| grep "browser_download_url.*64Gram_.*_linux.zip" \ | |
| cut -d : -f 2,3 \ | |
| tr -d \",) |
#!/bin/bash | |
# | |
# Script by Razuuu | |
# | |
# Variables | |
CONFIGFILE=$1 | |
# Access to usershell via function |
#!/bin/bash | |
echo "$([ "$1" == "install" ] && echo "Install" || echo "Update") Discord" | |
# Download Discord | |
cd /tmp | |
curl -o discord.tar.gz -J --location-trusted --max-redirs 10 "https://discord.com/api/download/stable?platform=linux&format=tar.gz" | |
# Unzip | |
tar -xzf discord.tar.gz |