mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-03-01 00:59:23 +01:00
* add amd64 image build with lean and fatpack option * use the pi user for setup * add notes to ci readme * add gnome desktop to fatpack image, reduce to 30GB * documentation updates * install gnome with --force-yes * install gnome desktop non-interactively * change links to rootzoll dev * pass user and branch to build_sdcard.sh from PR * add user and branch to Makefile * Add arm64 rpi image build (#74) ci: * add arm64-rpi image build * rename to raspiblitz-amd64-debian-11.5-lean/fatpack * use rm -f to not exit with error * place amd64 images under ci/amd64/builds/ * make /dev/shm world writable for fatpack * fix vlc remove and --var syntax * remove sudo-s * leave update and upgrade to the build_sdcard.sh * increase image size to 16GB, rename build dir build_sdcard.sh: * detect raspios_arm64 with raspi.list * switch ssmtp to msmtp related: https://github.com/rootzoll/raspiblitz/pull/2232 Co-authored-by: rootzoll <johndoe@example.com> * i2pd: unified install from repo, /usr/sbin to PATH related: #2413, fixes amd64 build * update CHANGES.md * fix amd64 path in Makefile * use only qemu image, run on ubuntu-22.04 * use file_checksum for the arm64-rpi base image * Fix the local arm64-rpi image generation (#75) * add selfrun script * ubuntu: add universe repo and qemu-user-static * test on ubuntu live (jammy) * build from branches: [ "dev", "v1.8", "v1.9" ] * correct Makefile paths for the local run * make the local run non-interactive * improve readme and Makefile * increase disk image sizes to 32GB * set image sizes to 30 GB for amd64 and arm64-rpi * add network-manager for amd64 * add to readme * skip Code&Compile for VM builds * add to readme * amd64 base image update to debian 11.6.0 * remove debian version from filenames * skip Code&Compile for amd64 builds * Merge branch 'dev' into add-amd64-image-build * amd64: increase cpu and RAM, compile mempool last * trigger workflows only on scripts used or called * Update ci/arm64-rpi/packer.build.arm64-rpi.sh Co-authored-by: Daniel Bast <2790401+dbast@users.noreply.github.com> * arm64 remove setup-qemu-action, leave npm last * set only manual trigger for fatpack, edit triggers Co-authored-by: rootzoll <johndoe@example.com> Co-authored-by: Daniel Bast <2790401+dbast@users.noreply.github.com>
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
#!/bin/sh -eux
|
|
|
|
echo "remove linux-headers"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep 'linux-headers' \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove specific Linux kernels, such as linux-image-4.9.0-13-amd64 but keeps the current kernel and does not touch the virtual packages"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep 'linux-image-[234].*' \
|
|
| grep -v `uname -r` \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove linux-source package"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep linux-source \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove obsolete networking packages"
|
|
apt-get -y purge ppp pppconfig pppoeconf;
|
|
|
|
echo "remove popularity-contest package"
|
|
apt-get -y purge popularity-contest;
|
|
|
|
echo "remove installation-report package"
|
|
apt-get -y purge installation-report;
|
|
|
|
echo "autoremoving packages and cleaning apt data"
|
|
apt-get -y autoremove;
|
|
apt-get -y clean;
|
|
|
|
echo "remove /var/cache"
|
|
find /var/cache -type f -exec rm -rf {} \;
|
|
|
|
echo "truncate any logs that have built up during the install"
|
|
find /var/log -type f -exec truncate --size=0 {} \;
|
|
|
|
echo "blank netplan machine-id (DUID) so machines get unique ID generated on boot"
|
|
truncate -s 0 /etc/machine-id
|
|
|
|
echo "remove the contents of /tmp and /var/tmp"
|
|
rm -rf /tmp/* /var/tmp/*
|
|
|
|
echo "force a new random seed to be generated"
|
|
rm -f /var/lib/systemd/random-seed
|
|
|
|
echo "delete the SSH keys (will be recreated on the first boot)"
|
|
rm -f /etc/ssh/ssh_host_*
|
|
|
|
echo "clear the history so our install isn't there"
|
|
rm -f /root/.wget-hsts
|
|
export HISTSIZE=0
|