Frequently Asked Questions

Find answers to commonly asked questions about the Pantavisor Linux container framework.

App Management

How do I delete apps from my device?

Unfortunately, Pantabox currently doesn’t have a UI command for uninstalling apps. To uninstall an app:

  1. Access edit mode

    pantabox

    Select “Edit” from the menu, then choose the app to uninstall.

  2. Remove app files

    rm -rf container_folder
    pvr add .
    pvr commit
    exit 0
  3. Remove config overlays

    Use the Pantabox Edit interface to remove any corresponding overlay directories from the _config directory.

How do I edit application configurations?

Pantavisor provides configuration editing through the Pantabox interface:

  • Pantabox Edit - Access via pantabox menu, select “Edit” option
  • Container metadata - Modify container .json files within the edit interface
  • Configuration overlays - Manage overlay configurations outside containers

The Pantabox interface provides an interactive shell that allows you to save revisions using PVR utilities when you exit with exit 0.

Connectivity Issues

My device is not connecting. How do I fix it?

Common connectivity troubleshooting steps:

  1. Check network connection

    • Verify ethernet cable connection
    • Ensure WiFi credentials are correct
    • Test network connectivity from another device
  2. Verify device boot

    • Check that the device boots properly
    • Look for the Pantavisor Linux logo
    • Confirm login prompt appears
  3. Network configuration

    • Use pvr device scan to discover device IP
    • Check router DHCP assignments
    • Try connecting via ethernet if WiFi fails

Technical Questions

How are Docker containers handled by Pantavisor Linux?

Pantavisor doesn’t run Docker containers natively. Instead:

  • Docker images serve as root file systems
  • Containers run using LXC (Linux Containers)
  • Images are converted automatically during installation
  • Configuration overlays provide customization outside the container

What is the _config directory?

The _config directory contains overlay configurations that:

  • Override container-internal configurations
  • Provide persistent customization across updates
  • Map directly to paths inside containers
  • Take precedence over internal container configs

What is the pvr command line interface?

PVR (Pantavisor Revision) is a git-like CLI tool for:

  • Managing device states and revisions
  • Committing configuration changes
  • Scanning and discovering devices
  • Synchronizing with remote repositories
  • Handling rollbacks and state management

For detailed PVR documentation, see the Official PVR Reference Guide.

Getting Help

Having issues not covered here? Join our community forum at Pantavisor Community Forum for additional support and discussion.