aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-02 18:03:14 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-02 18:03:14 +0100
commit1ecb2e8e4023f366b90fc62a1ab746d147a04b66 (patch)
tree26a2db7e9bdbeca88792ad6c84180818ec034ccd
parent82a14a3d5d2911d30cc5020dacbda31ced0f5c5e (diff)
parentb4b62b097365481b2d57f6e315d91a8b94a6c1f4 (diff)
Merge branch 'master' of git.sr.ht:~yulqen/bash-scripts
-rwxr-xr-xbackup-home-to-linux-storage_may243
-rwxr-xr-xcompile_python_debian.sh10
2 files changed, 8 insertions, 5 deletions
diff --git a/backup-home-to-linux-storage_may24 b/backup-home-to-linux-storage_may24
new file mode 100755
index 0000000..8107e3f
--- /dev/null
+++ b/backup-home-to-linux-storage_may24
@@ -0,0 +1,3 @@
+#!/usr/bin/sh
+
+rsync -av --exclude='seagate_mnt' --exclude='.cache' --exclude=.mozilla --exclude=annex --exclude='.fgfs' --exclude='vms' --exclude='.local/share/Steam' --delete /home/lemon/ /linuxstorage/home_backup_mar24/
diff --git a/compile_python_debian.sh b/compile_python_debian.sh
index be9696c..ecff285 100755
--- a/compile_python_debian.sh
+++ b/compile_python_debian.sh
@@ -5,11 +5,11 @@
PYTHON_VERSION=$1
#echo "Updating system...."
-#sudo apt update
-#sudo apt upgrade
-#sudo apt-get install -y make build-essential libssl-dev zlib1g-dev
-#sudo apt-get install -y libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm
-#sudo apt-get install -y libncurses5-dev libncursesw5-dev xz-utils tk-dev
+sudo apt update
+sudo apt upgrade
+sudo apt-get install -y make build-essential libssl-dev zlib1g-dev
+sudo apt-get install -y libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm
+sudo apt-get install -y libncurses5-dev libncursesw5-dev xz-utils tk-dev
cd $HOME/Downloads