2022-03-19 03:07:19 -04:00
|
|
|
# Update
|
|
|
|
apt-get update -y && apt-get upgrade -y && apt-get dist-upgrade -y
|
|
|
|
|
|
|
|
# Install basic dependencies
|
|
|
|
apt-get -y install curl wget gpg
|
|
|
|
|
|
|
|
# Enable nonfree and contrib repos
|
|
|
|
sed -r -i 's/^deb(.*)$/deb\1 contrib non-free/g' /etc/apt/sources.list
|
|
|
|
|
|
|
|
# Get VSCode repo
|
|
|
|
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
|
|
|
|
install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/
|
|
|
|
sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'
|
|
|
|
rm -f packages.microsoft.gpg
|
|
|
|
|
|
|
|
# Librewolf repo
|
|
|
|
echo "deb [arch=amd64] http://deb.librewolf.net $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/librewolf.list
|
|
|
|
#echo "deb [arch=amd64] http://deb.librewolf.net bullseye main" | tee /etc/apt/sources.list.d/librewolf.list
|
|
|
|
wget https://deb.librewolf.net/keyring.gpg -O /etc/apt/trusted.gpg.d/librewolf.gpg
|
|
|
|
|
|
|
|
# Ungoogled-chromium repo
|
|
|
|
echo 'deb http://download.opensuse.org/repositories/home:/ungoogled_chromium/Debian_Bullseye/ /' | tee /etc/apt/sources.list.d/home-ungoogled_chromium.list > /dev/null
|
|
|
|
curl -s 'https://download.opensuse.org/repositories/home:/ungoogled_chromium/Debian_Bullseye/Release.key' | gpg --dearmor | tee /etc/apt/trusted.gpg.d/home-ungoogled_chromium.gpg > /dev/null
|
|
|
|
|
|
|
|
# Update again
|
|
|
|
apt-get update -y && apt-get upgrade -y
|
|
|
|
|
2022-03-23 18:24:02 -04:00
|
|
|
# Install my default apt stuff
|
2022-03-24 00:38:41 -04:00
|
|
|
apt-get install -y ungoogled-chromium librewolf code python3 python3-pip python3-wheel docker-compose docker.io zsh p7zip-full git iputils-* dnsutils net-tools htop nano vim neovim ncat ssh tree vlc snapd neofetch zip unzip
|
2022-03-19 03:07:19 -04:00
|
|
|
|
|
|
|
# Update python pip
|
|
|
|
python3 -m pip install -U pip
|
|
|
|
|
|
|
|
# Snap installs
|
|
|
|
snap install core discord
|
|
|
|
|
2022-03-20 00:53:09 -04:00
|
|
|
# Install Ghidra
|
|
|
|
git clone https://github.com/NationalSecurityAgency/ghidra.git /usr/bin/ghidra
|
|
|
|
ln -s /usr/bin/ghidra/ghidraRun /usr/bin/ghidraRun
|
|
|
|
|
2022-03-23 18:24:02 -04:00
|
|
|
|