systemctl start containerd
#[ERROR FileContent--proc-sys-net-bridge-bridge-nf-call-iptables]: /proc/sys/net/bridge/bridge-nf-call-iptables does not exist
#[ERROR FileContent--proc-sys-net-ipv4-ip_forward]: /proc/sys/net/ipv4/ip_forward contents are not set to 1
lsmod | grep -i netfilter
modprobe br_netfilter
echo 1 > /proc/sys/net/ipv4/ip_forward
echo 'net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1' > /etc/sysctl.d/k8s.conf
Remove CNI binary form /opt/cni/bin/*
rm -rf /opt/cni/bin/*
For Ubuntu 22.04 need to install containernetworking-plugins:
failed to load CNI config list file /etc/cni/net.d/10-calico.conflist: error parsing configuration list: unexpected end of JSON input: invalid cni config: failed to load
[home@home Downloads]$ time rsync -parvP ubuntu-20.04.4-live-server-amd64.iso root@192.168.0.183:/tmp
sending incremental file list
ubuntu-20.04.4-live-server-amd64.iso
646,053,888 48% 11.15MB/s 0:01:00 ^C
rsync error: unexplained error (code 255) at rsync.c(703) [sender=3.2.3]
real 0m56.958s
user 0m6.159s
sys 0m2.564s
[home@home Downloads]$ time rsync -parvP ubuntu-20.04.4-live-server-amd64.iso root@192.168.0.183:/tmp
sending incremental file list
ubuntu-20.04.4-live-server-amd64.iso
1,331,691,520 100% 20.02MB/s 0:01:03 (xfr#1, to-chk=0/1)
sent 658,982,006 bytes received 178,830 bytes 9,765,345.72 bytes/sec
total size is 1,331,691,520 speedup is 2.02
real 1m6.846s
user 0m27.066s
sys 0m1.862s
[home@home Downloads]$ time rsync -parv ubuntu-20.04.4-live-server-amd64.iso root@192.168.0.183:/tmp
sending incremental file list
ubuntu-20.04.4-live-server-amd64.iso
sent 1,332,016,766 bytes received 35 bytes 11,633,334.51 bytes/sec
total size is 1,331,691,520 speedup is 1.00
real 1m54.871s
user 0m6.400s
sys 0m3.748s