将文件转储到 lxc 容器外

Dump file outside the lxc container

我能够从容器外部查看我的 lxc 容器的系统日志...作者;

sudo lxc exec my-abc-container -- /root/tail  /usr/local/var/syslog

或者拖尾

sudo lxc exec my-abc-container -- /root/tail --follow=name /usr/local/var/syslog

但我不知道如何将此日志转储到文件中。厌倦了寻找类似的问题,但没有任何帮助。

使用文件拉取

lxc file pull my-abc-container/usr/local/var/syslog ./my-abc-container-syslog

或通过执行

lxc exec my-abc-container -- /bin/sh -c "cat /usr/local/var/syslog" > ./my-abc-container-syslog