Docs · Services

Compute Instances

KVM/Proxmox-backed Linux VMs with full root SSH, per-minute billing, NVMe-backed storage. ~30s from click to login.

Tutorial

1. Launch a VM

Pick a plan (Nano → 2XL), an image (Ubuntu 24.04 / Debian 12 / Rocky 9), and an SSH key.

cloudnx instance create \
  --name web-01 \
  --plan small \
  --image ubuntu-24.04 \
  --ssh-key my-key

2. Connect

The portal shows a one-line SSH command for the assigned SSH port. Default user is set by the image (e.g. ubuntu).

ssh -p <ssh_port> [email protected]

3. Stop / start / reboot

Stopped VMs pay only for attached storage; restart resumes the same private IP.

cloudnx instance stop  web-01
cloudnx instance start web-01

4. Snapshots

On-demand or scheduled (cron-style). Stored on the host's NVMe; nightly Proxmox snapshots also run via host cron.

cloudnx instance snapshot create web-01 --name pre-upgrade

Pricing

vCPU ₹2/hr · RAM ₹1.5/GB-hr · disk ₹3/GB-month · bandwidth fair-use included.

CLI

All operations have a cloudnx instance subcommand. Run cloudnx instance --help for the full surface.