Pre-installation Acquire an installation image Arch is a “rolling release” distribution, download the .iso file from its offical site.
Create VM Create a vm in virtualbox, make sure enable EFI in the motherboard. We will use use UEFI instead of the older BIOS spec to boot the VM.
Verify the boot mode To verify the boot mode, list the efivars directory:
1 # ls /sys/firmware/efi/efivars If the command shows the directory without error, then the system is booted in UEFI mode.
微服务架构的特性 围绕业务构建团队 Conway’s Law Any organization that designs a system (defined broadly) will produce a design whose structure is a copy of the organization’s communication structure. 去中心化的数据管理 Fallacies of distributed computing The network is reliable; Latency is zero; Bandwidth is infinite; The network is secure; Topology doesn’t change;
Intro kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.
Setup Golang development Install Go tools. Follow docs. Config $GOROOT and $GOPATH $GOROOT is for compiler/tools that comes from go installation. This should be configured to the go directory that was installed. $GOPATH is for your own go projects / 3rd party libraries (downloaded with “go get”).