2

I have created a libertine container and successfully installed x11 apps.

I have also installed git. How can I access this, or other command line applications from the terminal?

muru
  • 197,895
  • 55
  • 485
  • 740
Jack
  • 532

1 Answers1

1

I found a similar question which provides the answer How do I run a command using libertine-container-manager exec

libertine-container-manager exec -c "tool"

This works for apps installed in the default puritine container. If you want to use something you have installed in a container you created yourself you need to specify that:

libertine-container-manager exec -c "tool" -i your_container
Jack
  • 532