Skip to content

Instantly share code, notes, and snippets.

View humaita-github's full-sized avatar

humaita-github

View GitHub Profile
@mattisz
mattisz / xrdp-intel-setup.sh
Last active March 21, 2025 15:01 — forked from Nexarian/xrdp-intel-setup.sh
Setup for Intel acceleration and XRDP
#!/usr/bin/env bash
set -e
sudo -v
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
@Nexarian
Nexarian / xrdp-intel-setup.sh
Last active March 17, 2025 15:43
Setup for Intel acceleration and XRDP
#!/usr/bin/env bash
set -e
sudo -v
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
@Michcioperz
Michcioperz / Dockerfile
Created September 2, 2020 16:27
librespot for openwrt netgear r6220
FROM debian:buster
RUN dpkg --add-architecture mipsel && apt-get update && apt-get install -y wget xz-utils
RUN wget https://downloads.openwrt.org/releases/19.07.2/targets/ramips/mt7621/openwrt-sdk-19.07.2-ramips-mt7621_gcc-7.5.0_musl.Linux-x86_64.tar.xz && tar xf openwrt-sdk-*.tar.* && rm openwrt-sdk-*.tar.*
ENV STAGING_DIR=/openwrt-sdk-19.07.2-ramips-mt7621_gcc-7.5.0_musl.Linux-x86_64/staging_dir
ENV PATH=/openwrt-sdk-19.07.2-ramips-mt7621_gcc-7.5.0_musl.Linux-x86_64/staging_dir/toolchain-mipsel_24kc_gcc-7.5.0_musl/bin:/root/.cargo/bin:$PATH:/usr/bin:/bin:/usr/sbin:/sbin
RUN wget https://sh.rustup.rs -O rustup-init && chmod +x rustup-init && ./rustup-init --profile minimal -y
RUN rustup target add mipsel-unknown-linux-musl
RUN apt-get install git --no-install-recommends -y
RUN git clone https://github.com/librespot-org/librespot
WORKDIR librespot