singlefabric
AI DevelopmentContainer Instances

View and Adapt the Container Environment

A guide on how to view and adapt the container environment after deployment, including installing necessary tools and using relevant commands.

Introduction

This document describes how to view and adapt the container environment after deployment, including installing necessary tools and using relevant commands.

Prerequisites

The container instance has been successfully created, and its status is running (Running).

Procedure

  1. Log in to the container instance backend and refer to the relevant content of accessing the instance.

  2. Users can execute the following command to view the system default source:

    cat /etc/apt/sources.list
  3. You can use apt to install the corresponding tools needed for adapting the software environment for training tasks. For example, to install network tools, execute the following commands:

    apt install net-tools
    apt install iproute2
  4. After the tool is successfully installed, you can use related commands. For example, to view the network interface information of the container instance (for the network tool installed earlier), execute:

    ip a

On this page