Skip to content

Commit 41566cc

Browse files
committed
Initial commit
0 parents  commit 41566cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+706
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Jason Colburne
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 15 additions & 0 deletions

assets/switch/adapter-installed.jpg

1010 KB

assets/switch/all-ram-detected.jpg

1.25 MB

assets/switch/all-ram-perspective.jpg

810 KB

assets/switch/all-ram-top-down.jpg

1.19 MB

assets/switch/bad-ram.jpg

1.11 MB

assets/switch/bios-disable-pxe.jpg

1.18 MB

assets/switch/bios-iommu.jpg

1.31 MB

assets/switch/bracket-replacement.jpg

687 KB

assets/switch/brackets-and-guides.jpg

1.15 MB

assets/switch/cleaned-cpu.jpg

598 KB

assets/switch/cpu-installed.jpg

861 KB
1.07 MB
1.1 MB

assets/switch/dr-debug-0x16.jpg

741 KB

assets/switch/faceplate-removed.jpg

1.02 MB
1.15 MB

assets/switch/fans-replaced.jpg

1.11 MB
589 KB

assets/switch/ground-yourself.jpg

864 KB

assets/switch/handles.jpg

1.27 MB
1.4 MB

assets/switch/heatsink-installed.jpg

742 KB
1.07 MB

assets/switch/kingston-installed.jpg

619 KB

assets/switch/low-profile-slots.jpg

907 KB
887 KB

assets/switch/motherboard-leds.jpg

953 KB

assets/switch/motherboard-mounts.jpg

846 KB
1.07 MB

assets/switch/networking-detected.jpg

1.48 MB

assets/switch/networking-rear.jpg

637 KB

assets/switch/networking-top.jpg

718 KB

assets/switch/nvme-installed.jpg

774 KB
954 KB

assets/switch/outlet-tester.jpg

799 KB

assets/switch/power-supply.jpg

1.02 MB

assets/switch/psu-testing-cap.jpg

864 KB
715 KB

assets/switch/ram-installed.jpg

795 KB

assets/switch/shor-running.jpg

1.32 MB
1.06 MB

assets/switch/ssd-adapter-tray.jpg

1010 KB

assets/switch/wrist-strap.jpg

980 KB

nas.md

Lines changed: 25 additions & 0 deletions

src/provision.sh

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/usr/bin/sh
2+
3+
# this removes the cd-rom source so the cd doesn't need to be inserted
4+
sudo cp ~/install/sources.list /etc/apt/
5+
sudo apt update
6+
sudo apt upgrade
7+
# required packages
8+
sudo apt -y install unzip net-tools bridge-utils clevis-tpm2 clevis-luks clevis-dracut
9+
# optional packages
10+
sudo apt -y install zsh git ripgrep && chsh -s $(which zsh) || true
11+
12+
# user config
13+
cd ~
14+
unzip install/ssh.zip
15+
16+
# system config
17+
cd /
18+
sudo systemctl stop networking
19+
sudo unzip ~/install/amd.zip
20+
sudo unzip -o ~/install/networking.zip
21+
sudo unzip -o ~/install/sshd.zip
22+
sudo unzip -o ~/install/grub.zip
23+
sudo systemctl start networking
24+
sudo update-initramfs -c -k all
25+
sudo update-grub
26+
27+
cd ~
28+
unzip install/kernel.zip
29+
cd 5.10.0-14-sme-amd64
30+
sudo apt install ./linux-image-sme-amd64_5.10.113-1_amd64.deb ./linux-image-5.10.0-14-sme-amd64_5.10.113-1_amd64.deb
31+
32+
cd ~
33+
rm -rf 5.10.0-14-sme-amd64
34+
35+
sudo reboot

switch.md

Lines changed: 610 additions & 0 deletions

0 commit comments

Comments
 (0)