コンテナ作成時に追加
lxc launch -c security.privileged=true ubuntu:20.04 CONTAINER_NAME
コンテナ作成後に追加
lxc config set CONTAINER_NAME security.privileged true
lxc launch -c security.privileged=true ubuntu:20.04 CONTAINER_NAME
lxc config set CONTAINER_NAME security.privileged true
python3 -m http.server 8000
npm npm install markdown-it --save
npx markdown-it README.md -o REAMDE.html
ssh -L 8000:localhost:8000 remoteこれにより、http://localhost:8000でHTMLを表示できる
Unable to negotiate with 192.168.1.10 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1以下のようにすればよい
$ ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 192.168.1.10