> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ldi.paname-75.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# Usage

> How to use LDI (Linux Dependencies Installer) after installation

import { Card, Columns, CodeBlock, CopyButton } from 'your-mdx-components'

## Using LDI

Once installed, LDI helps you quickly set up essential Linux dependencies without requiring root or sudo.

<Card>
  Execute <code>./ldi.sh</code> from the LDI directory to start installing packages automatically.

  <CodeBlock>
    ./ldi.sh
  </CodeBlock>

  <CopyButton content="./ldi.sh" />
</Card>

## Verify Installation

<Columns cols={2}>
  <Card>
    <CodeBlock>
      curl --version
    </CodeBlock>

    <CopyButton content="curl --version" />
  </Card>

  <Card>
    <CodeBlock>
      wget --version
    </CodeBlock>

    <CopyButton content="wget --version" />
  </Card>

  <Card>
    <CodeBlock>
      git --version
    </CodeBlock>

    <CopyButton content="git --version" />
  </Card>

  <Card>
    <CodeBlock>
      tar --version
      zip -v
      unzip -v
    </CodeBlock>

    <CopyButton content="tar --version\nzip -v\nunzip -v" />
  </Card>
</Columns>

## Best Practices

<Columns cols={2}>
  <Card title="Run as a normal user" icon="shield">
    Do not use sudo or root—LDI installs everything safely.
  </Card>

  <Card title="Repeatable setups" icon="repeat">
    You can rerun LDI anytime; already installed packages will be skipped.
  </Card>

  <Card title="Integrate with scripts" icon="code">
    Include LDI in automation or CI/CD pipelines for consistent setups.
  </Card>

  <Card title="Stay updated" icon="sync">
    Pull the latest version from GitHub to keep your installer up to date.
  </Card>
</Columns>
