มี UI ที่สวยงาม และ มีภาษาไทยด้วยสำหรับ Zorin 18 เนียนมากๆ จะเรียกว่าเหมือน Windows 100% ก็ไม่ใช่เพราะมีกลิ่นอายของ macOS มาด้วย ใน version 18 มีคนดาวน์โหลดไปแล้วกว่า 1 ล้านครั้ง
Brought to you NINE-T Co.,ltd.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menukubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.30.2/manifests/operator-crds.yamlkubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.30.2/manifests/tigera-operator.yaml
curl https://raw.githubusercontent.com/projectcalico/calico/v3.30.2/manifests/custom-resources.yaml -O
sed -i 's/cidr: 192\.168\.0\.0\/16/cidr: 10.244.0.0\/16/g' custom-resources.yamlkubectl create -f custom-resources.yaml
sudo dnf install dnf-plugins-core -ysudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.reposudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -ysudo systemctl enable --now dockersudo sh -c "containerd config default > /etc/containerd/config.toml"sudo sed -i 's/ SystemdCgroup = false/ SystemdCgroup = true/' /etc/containerd/config.tomlsudo systemctl restart containerd.servicecat <<EOF | sudo tee /etc/yum.repos.d/kubernetes.repo
[kubernetes]
name=Kubernetes
baseurl=https://pkgs.k8s.io/core:/stable:/v1.33/rpm/
enabled=1
gpgcheck=1
gpgkey=https://pkgs.k8s.io/core:/stable:/v1.33/rpm/repodata/repomd.xml.key
EOFsudo dnf install curl ca-certificates -y
sudo apt install kubelet kubeadm kubectl -ysudo kubeadm init --pod-network-cidr=10.244.0.0/16mkdir -p $HOME/.kubesudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo hostnamectl set-hostname "k8s-master"sudo hostnamectl set-hostname "k8s-worker2"sudo hostnamectl set-hostname "k8s-worker3"sudo swapoff -asudo modprobe overlaysudo modprobe br_netfiltersudo tee /etc/modules-load.d/k8s.conf <<EOF
overlay
br_netfilter
EOF
pve8to9
sed -i 's/bookworm/trixie/g' /etc/apt/sources.list
sed -i 's/bookworm/trixie/g' /etc/apt/sources.list.d/pve-enterprise.list
cat > /etc/apt/sources.list.d/proxmox.sources << EOF
Types: deb
URIs: http://download.proxmox.com/debian/pve
Suites: trixie
Components: pve-test
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
EOF
cat > /etc/apt/sources.list.d/ceph.sources << EOF
Types: deb
URIs: http://download.proxmox.com/debian/ceph-squid
Suites: trixie
Components: test
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
EOF
apt update
apt dist-upgrade
reboot
apt modernize-sources