Skip to content

Instantly share code, notes, and snippets.

View ilhan-athn7's full-sized avatar
🪟
Windows is only operating system that would give you blue screen of death

İlhan Atahan ilhan-athn7

🪟
Windows is only operating system that would give you blue screen of death
View GitHub Profile
@ilhan-athn7
ilhan-athn7 / archinstall_ubuntu_jammy.sh
Created March 3, 2024 11:22
Minimal ubuntu setup with kde-plasma desktop.
#!/bin/bash
#mkfs.ext4 /dev/nvme0n1p4
#mount /dev/nvme0n1p4 /mnt
debootstrap --variant=minbase \
--exclude="snapd,cloud-init,landscape-common,popularity-contest,ubuntu-advantage-tools,unattended-upgrades,netplan,networkd" \
jammy /mnt http://archive.ubuntu.com/ubuntu
echo ubuntu >/mnt/etc/hostname
echo 127.0.0.1 >>/mnt/etc/hosts
@ilhan-athn7
ilhan-athn7 / win10_ltsc.txt
Last active February 2, 2024 14:57
My Win LTSC setup and Notes
ISO download link : https://files.rg-adguard.net/file/19a36b7b-269b-ebf8-105b-a375f70b7ae2
ISO file name : en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso
ISO file MD5 : b5a7be560dbd73619945129e52be1b5f
### Installing drivers (driverpack.io)
### Activating windows (massgravel)
### Disabling visual effects (personalization)
@ilhan-athn7
ilhan-athn7 / pacman_packages.txt
Last active January 4, 2024 20:39
simple arch setup
base
base-devel
linux-zen
linux-zen-headers
linux-firware
sof-firware
git
nano
python
plasma-meta
@ilhan-athn7
ilhan-athn7 / chroot.sh
Created August 12, 2023 03:09
Single script to login chroot on android
#!/usr/bin/sh
# Execute from Termux app, running as root results no sound.
# Must have pulseaudio and termux-x11.
# Must have root access.
if [ "$(id -u)" -eq "$TERMUX_APP__UID" ]; then
### Start pulseaudio
pulseaudio --start --load=" \
module-native-protocol-tcp auth-ip-acl=127.0.0.1 \
auth-anonymous=1" --exit-idle-time=-1