Quick Note

Quick note, clipboard

Sometimes wsl2 and system time are inconsistent and need to be synchronized

sudo ntpdate pool.ntp.org

Use aws-cli remove folder, there remove a folder on cloudflare r2

aws s3 rm s3://bukt/ap1/v0.5/ --endpoint-url https://account_id.r2.cloudflarestorage.com --recursive

Updating the image of a running container

docker stop my_container && docker rm my_container && docker compose up -d my_container

Wsl2 use the proxy of windows

export http_proxy=http://192.168.3.57:10809 && export https_proxy=http://192.168.3.57:10809

Get ip of eth0

 ip addr show eth0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'