anduin / Unlist all versions of a nuget package
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | # 示例:对多个包执行Unlist操作 |
2 | $packages = @( |
3 | "Aiursoft.Archon.SDK", |
4 | "Aiursoft.Developer.SDK", |
5 | "Aiursoft.Directory.SDK", |
6 | "Aiursoft.DocGenerator.Abstract", |
7 | "Aiursoft.DotDownload.Core", |
8 | "Aiursoft.Dotlang.Core", |
9 | "Aiursoft.Gateway.SDK", |
10 | "Aiursoft.Handler", |
anduin / Daily build anduinos
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | anduin@builder:~$ cat ./daily_build_v2.sh |
2 | #!/bin/bash |
3 | |
4 | # daily_build_v2.sh (refactored without tmux) |
5 | # Script Purpose: |
6 | # 1) For each branch in the list: |
7 | # a) Switch to the branch, ensure local code is up-to-date (clean -fdx, reset --hard, pull) |
8 | # b) Check if there are new commits in the past 24 hours |
9 | # - If yes, a build is required |
10 | # - If no but the last build was more than a week ago, a forced build is required |
anduin / Compare Debian distro packages
0 Kedvelések
0 forkok
3 fájlok
Utoljára aktív
1 | #!/usr/bin/env bash |
2 | # |
3 | # compare_packages.sh |
4 | # |
5 | # Compare package lists from two systems: |
6 | # anduinos-packages.txt |
7 | # ubuntu-24-packages.txt |
8 | |
9 | # Ensure both files exist |
10 | if [[ ! -f "anduinos-packages.txt" || ! -f "ubuntu-24-packages.txt" ]]; then |
anduin / 监控服务器实时IP流量
0 Kedvelések
0 forkok
3 fájlok
Utoljára aktív
1 | #!/bin/bash |
2 | |
3 | function monitor_traffic() { |
4 | if [ -z "$1" ]; then |
5 | echo "Usage: $0 <network_interface>" |
6 | echo "Available network interfaces:" |
7 | ip link show | awk -F': ' '/^[0-9]+: /{print $2}' |
8 | exit 1 |
9 | fi |
anduin / My Virtual Machine
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | <domain xmlns:qemu="http://libvirt.org/schemas/domain/qemu/1.0" type="kvm"> |
2 | <name>win11</name> |
3 | <uuid>756529ab-15aa-4223-bcee-df013e8bd3e4</uuid> |
4 | <metadata> |
5 | <libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0"> |
6 | <libosinfo:os id="http://microsoft.com/win/11"/> |
7 | </libosinfo:libosinfo> |
8 | </metadata> |
9 | <memory unit="KiB">67108864</memory> |
10 | <currentMemory unit="KiB">67108864</currentMemory> |
anduin / apt-mirror
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | #!/usr/bin/perl |
2 | |
3 | =pod |
4 | |
5 | =head1 NAME |
6 | |
7 | apt-mirror - apt sources mirroring tool |
8 | |
9 | =head1 SYNOPSIS |
anduin / Burn an ISO to usb
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | #!/bin/bash |
2 | |
3 | #========================== |
4 | # Set up the environment |
5 | #========================== |
6 | set -e # exit on error |
7 | set -o pipefail # exit on pipeline error |
8 | set -u # treat unset variable as error |
9 | |
10 | #========================== |
anduin / Server Init
0 Kedvelések
0 forkok
2 fájlok
Utoljára aktív
Init a server from cloud provider
1 | #!/bin/bash |
2 | |
3 | #========================== |
4 | # Set up the environment |
5 | #========================== |
6 | set -e # exit on error |
7 | set -o pipefail # exit on pipeline error |
8 | set -u # treat unset variable as error |
9 | |
10 | #========================== |
anduin / Seed AnduinOS
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | |
2 | |
3 | sudo apt update |
4 | sudo apt install aria2 -y |
5 | |
6 | wget https://download.anduinos.com/1.0.4/AnduinOS-1.0.4-en_US.torrent |
7 | |
8 | sudo ufw allow 6881 |
9 | |
10 | while true; do |
Újabb
Régebbi