How Exosphere Works
Exosphere runs entirely from your own machine. There is no agent to install, no server to keep running, and nothing extra living on the remote hosts --- everything happens over plain SSH, driven by the Command Line Interface (CLI) or Text User Interface (TUI) on your workstation or laptop.
This page offers a quick overview of how the pieces fit together, so the commands in the Quickstart Guide (and everywhere else) make sense.
Overview
Everything runs from your machine.
Your machine connects to each host over SSH, runs a handful of ordinary, mostly read-only commands (the kind you could type yourself), and brings the results back home. The hosts need nothing installed beyond what they already ship with: an SSH server and a POSIX shell.
See Supported Remote Platforms for the specifics of what is required on each end, as well as the Connections and Authentication page for details on SSH access.
Concepts
Three concepts carry most of the weight:
- Host
One remote system Exosphere connects to.
- Inventory
The full collection of hosts, defined in your The Configuration File. Most commands operate on the whole inventory unless you name specific hosts.
- Provider
The platform-specific adapter (
apt,dnf/yum,pkg,pkg_add) that knows how to ask a given host about its updates. The right one is detected automatically during discovery --- you never pick one by hand.
The full vocabulary lives in the Glossary and Common Terms, but most of it should be fairly self-explanatory. Details about the providers are available in the Providers section.
Usage Lifecycle
Discover once, then refresh on demand. Reporting reads from the cache.
Working with your hosts follows a simple loop:
Discover: connect once and detect the operating system, version, flavor and package manager, then assign the right provider. You only repeat this if something fundamental changes on the host.
Refresh: ask the provider what updates are available, sort out which ones are security-related, and note whether a reboot is pending. This is entirely read-only.
Repository Sync (optional): refresh the host's own package metadata first, so the next Refresh sees the very latest. This is the one step that may require Sudo Policies and Privileges on some platforms.
View / Report: look at the results, via the Command Line Interface (CLI) status tables, the interactive Text User Interface (TUI), or generated reports.
Everything Discover and Refresh learn is saved to a local cache, so viewing status and generating reports never needs to touch the hosts again. This is handy for scheduled reports, or simply running from a context where your SSH agent is not available. See Managing Cache for more details.
What Exosphere Is Not
Exosphere reports --- it does not act. It will happily tell you what needs patching, where, and how urgently, but it will never apply an update or change a host's configuration on your behalf. Pushing those changes out is left to existing tooling built for the job, such as Ansible and similar automation frameworks, or unattended-upgrades and similar.
See the Frequently Asked Questions for more on this distinction, and why it is a deliberate one.