mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-01 16:53:44 +02:00
orb: add page (#17739)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
parent
f71f43317e
commit
90d32d8c20
1 changed files with 37 additions and 0 deletions
37
pages/osx/orb.md
Normal file
37
pages/osx/orb.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# orb
|
||||
|
||||
> Interface for OrbStack, a fast and lightweight container and virtual machine runtime for macOS.
|
||||
> Provides Docker-compatible commands and Linux VM management.
|
||||
> More information: <https://docs.orbstack.dev/>.
|
||||
|
||||
- List all containers and VMs:
|
||||
|
||||
`orb list`
|
||||
|
||||
- Create and start a Linux virtual machine:
|
||||
|
||||
`orb create {{vm_name}}`
|
||||
|
||||
- Create a VM with a specific Linux distribution:
|
||||
|
||||
`orb create {{vm_name}} {{ubuntu|fedora|arch|debian}}`
|
||||
|
||||
- Start or stop a virtual machine:
|
||||
|
||||
`orb {{start|stop}} {{vm_name}}`
|
||||
|
||||
- Connect to a VM via SSH:
|
||||
|
||||
`orb ssh {{vm_name}}`
|
||||
|
||||
- Execute a command in a VM:
|
||||
|
||||
`orb exec {{vm_name}} {{command}}`
|
||||
|
||||
- Delete a virtual machine:
|
||||
|
||||
`orb delete {{vm_name}}`
|
||||
|
||||
- Show system status and resource usage:
|
||||
|
||||
`orb status`
|
Loading…
Add table
Reference in a new issue