Available Tools

Complete list of 50+ cloud tools available in NubiferOS

NubiferOS offers 50+ cloud tools that you can select during installation. This page lists all available tools organized by category.

Installation Options

During installation, you choose which tools to install:

Installation TypeSizeWhat's Included
Minimal~2GBCore CLIs, VS Code, essential utilities
Standard~4-5GBPopular cloud tools, 2-3 IDEs
Full~7-8GBEverything available
CustomVariesPick exactly what you need

Quick Navigation


Cloud CLI Tools

AWS Tools (11 tools)

ToolDescriptionUse Case
AWS CLI v2Primary AWS command-line interfaceAll AWS operations
SAM CLIServerless Application ModelLambda development
eksctlAmazon EKS cluster managementKubernetes on AWS
AWS CDKCloud Development KitInfrastructure as code
Session Manager PluginSecure shell accessEC2 access without SSH keys
AWS CopilotContainer deploymentECS/Fargate deployments
AWS Amplify CLIFull-stack app developmentWeb/mobile apps
EB CLIElastic Beanstalk deploymentPaaS deployments
AWS NoSQL WorkbenchDynamoDB GUI toolDatabase design
AWS VaultSecure credential storageCredential management
Lightsail CLILightsail managementSimple cloud hosting

Azure Tools (3 tools)

ToolDescriptionUse Case
Azure CLIPrimary Azure command-line interfaceAll Azure operations
Azure Functions Core ToolsServerless function developmentAzure Functions
BicepAzure infrastructure as codeARM template alternative

Google Cloud Tools

ToolDescriptionUse Case
gcloud SDKGoogle Cloud CLI (includes gcloud, gsutil, bq)All GCP operations

Infrastructure as Code

ToolDescriptionUse Case
TerraformMulti-cloud infrastructure provisioningInfrastructure automation
PulumiModern infrastructure as codeTypeScript/Python IaC
AnsibleConfiguration managementServer configuration

Container & Kubernetes Tools

ToolDescriptionUse Case
DockerContainer runtime and CLIContainer development
PodmanDaemonless container engineRootless containers
kubectlKubernetes command-line toolCluster management
HelmKubernetes package managerApplication deployment
k9sTerminal UI for KubernetesCluster monitoring
DiveDocker image layer explorerImage optimization
LazydockerDocker terminal UIContainer management
SternKubernetes log tailingLog aggregation

Monitoring & Observability

ToolDescriptionUse Case
GrafanaVisualization and dashboardsMetrics visualization
Prometheus (promtool)Metrics collectionAlerting rules
Loki (logcli)Log aggregationLog querying
TrivySecurity scannerContainer/IaC scanning

CI/CD & GitOps Tools

ToolDescriptionUse Case
GitHub CLI (gh)GitHub command-line interfaceGitHub workflows
GitLab CLI (glab)GitLab command-line interfaceGitLab workflows
ArgoCDGitOps continuous deliveryKubernetes deployments
FluxGitOps toolkitKubernetes GitOps
Tekton CLI (tkn)Cloud-native CI/CDPipeline management
Jenkins CLIJenkins server connectionCI/CD automation
KustomizeKubernetes configurationYAML management
SkaffoldKubernetes developmentDev workflow

Database Clients

ToolDescriptionUse Case
psqlPostgreSQL clientPostgreSQL databases
mysqlMySQL/MariaDB clientMySQL databases
mongoshMongoDB shellMongoDB databases
redis-cliRedis clientRedis caching

Testing Frameworks

Load & Performance Testing

ToolDescriptionUse Case
k6Modern load testingPerformance testing
LocustPython-based load testingDistributed load tests
NewmanPostman CLIAPI testing

Browser & E2E Testing

ToolDescriptionUse Case
SeleniumBrowser automationWeb testing
PlaywrightModern browser testingCross-browser testing

Unit & Integration Testing

ToolDescriptionUse Case
PytestPython testing frameworkPython tests
Robot FrameworkKeyword-driven testingAcceptance testing
BehaveBDD testing for PythonBehavior-driven tests

Security Testing

ToolDescriptionUse Case
SonarQube ScannerCode quality and securityCode analysis
OWASP ZAPSecurity testingVulnerability scanning
TrivyContainer/IaC securitySecurity scanning

Secrets Management

These tools are available for managing secrets in your cloud infrastructure. For how NubiferOS manages your local credentials, see Credential Security.

ToolDescriptionUse Case
HashiCorp VaultSecrets managementEnterprise secrets
SOPSEncrypted secrets in GitGitOps secrets
ageModern file encryptionSimple encryption

Development Tools

Languages & Runtimes

ToolDescription
Python 3With pip and venv
Node.jsWith npm
GoAvailable via apt
JavaAvailable via apt

Utilities

ToolDescription
GitVersion control
curl/wgetData transfer
jqJSON processor
yqYAML processor
httpieUser-friendly HTTP client

IDEs

Default (Pre-installed)

IDESizeBest For
Visual Studio Code~200MBGeneral development, best cloud extensions
Vim/Neovim~10MBTerminal-based editing, always available

Optional (Selectable during installation)

IDESizeBest For
VSCodium~200MBVS Code without telemetry
IntelliJ IDEA CE~800MBJava, Kotlin, Scala
PyCharm CE~600MBPython, data science
Emacs~50MBHighly extensible editing
Kate~30MBLightweight KDE editor
Eclipse~500MBJava enterprise

Automatic IDE Plugin Installation

NubiferOS automatically installs cloud-related IDE plugins:

# Run after installation to configure plugins
/usr/local/bin/install-ide-plugins

Pre-configured extensions: AWS Toolkit, Azure Tools, Cloud Code (GCP), Terraform, Docker, Kubernetes, Python, Go


Required Security Tools

These tools are always installed and form the security foundation of NubiferOS. They cannot be disabled.

ToolPurposeLearn More
GPG + passCredential encryptionCredential Security
FirejailWorkspace isolationWorkspace Isolation
AppArmorMandatory access controlSecurity Architecture
WaylandDisplay isolation (prevents keylogging)Security Architecture
UFWFirewallSecurity Architecture
fail2banIntrusion preventionSecurity Architecture
auditdSecurity audit loggingSecurity Architecture
LUKSFull disk encryptionSecurity Architecture

Post-Installation Management

# List available tools
nubifer-tools list-available

# Install additional tool
nubifer-tools install aws-copilot
nubifer-tools install pycharm

# Remove tool
nubifer-tools remove eclipse

# Update all tools
nubifer-tools update-all

# Verify installations
verify-cloud-tools

Tool Updates

Automatic Updates

  • Security updates via unattended-upgrades
  • System packages updated automatically

Manual Updates

# Update cloud CLIs
nubifer-tools update-cloud-tools

# Update IDEs
nubifer-tools update-ides

# Update everything
nubifer-tools update-all

Source Code