You should have “lxc” command line utility installed and setup on your system. It allows you to perform various operations on LXC containers. Here are the commands to start, stop and restart an LXC container:
or
you can use `lxc-shutdown` and then start it:
```
lxc-shutdown -n container-name && lxc-start -n container-name
```
Remember to replace “container-name” with the actual name of your container.
Running these commands would likely require root privileges, so you may need to use “sudo” on Ubuntu or Debian based systems.
If LXC commands are not working, you may need to install LXC Utilities using `sudo apt install lxc-utils` on Ubuntu or Debian based system.