Skip to content

Instantly share code, notes, and snippets.

@xcnix
xcnix / 分布式系统学习资料.md
Last active June 1, 2022 06:27 — forked from ascrutae/分布式系统学习资料.md
分布式系统学习资料

分布式系统(Distributed System)资料

转载一定要保留原文链接,因为这个项目还在继续也在不定期更新.希望看到文章的朋友能够学到更多.

@xcnix
xcnix / virt-install-centos
Last active July 27, 2020 12:38 — forked from jnaulty/virt-install-centos
Install CentOS cloud images on KVM using cloud-init
#!/bin/bash
## **Updates to this file are now at https://github.com/giovtorres/kvm-install-vm.**
## **This updated version has more options and less hardcoded variables.**
# Take one argument from the commandline: VM name
if ! [ $# -eq 1 ]; then
echo "Usage: $0 <node-name>"
exit 1
fi