HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

lxc-start — Start a container. More information: <https://linuxcontainers.org/lxc/getting-started/>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
httpscommandstartclimorelxc-startinformationcontainer
linux

Problem

How to use the lxc-start command: Start a container. More information: <https://linuxcontainers.org/lxc/getting-started/>.

Solution

lxc-start — Start a container. More information: <https://linuxcontainers.org/lxc/getting-started/>.

Start the lxc service:
systemctl start lxc-net


Start a container:
sudo lxc-start {{container_name}}


Start a container in the foreground:
sudo lxc-start {{container_name}} {{[-F|--foreground]}}


Exit out of a foreground container (run this in a separate terminal):
sudo lxc-stop {{container_name}}


Write debug logs to a file:
sudo lxc-start {{container_name}} {{[-l|--logpriority]}} DEBUG {{[-o|--logfile]}} {{path/to/logfile}}


Display help:
lxc-start {{[-?|--help]}}

Code Snippets

Start the lxc service

systemctl start lxc-net

Start a container

sudo lxc-start {{container_name}}

Start a container in the foreground

sudo lxc-start {{container_name}} {{[-F|--foreground]}}

Exit out of a foreground container (run this in a separate terminal)

sudo lxc-stop {{container_name}}

Write debug logs to a file

sudo lxc-start {{container_name}} {{[-l|--logpriority]}} DEBUG {{[-o|--logfile]}} {{path/to/logfile}}

Context

tldr-pages: linux/lxc-start

Revisions (0)

No revisions yet.