diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-22 12:17:07 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-22 12:17:07 +0200 |
| commit | 3c7ce68314526ad1faf319c4c8d62ae8ccc727cd (patch) | |
| tree | 00e70a82ae8d83b8238966b9cb5600dfb7e822ce /content/it/repository/index.md | |
| parent | 44bfb1ebf01815936c658a8fc6424c1a351f1069 (diff) | |
| download | danixxyz-3c7ce68314526ad1faf319c4c8d62ae8ccc727cd.tar.gz danixxyz-3c7ce68314526ad1faf319c4c8d62ae8ccc727cd.zip | |
refactor: convert repository from section (_index.md) to plain page (index.md)
Repository is a simple page, not a section. Renamed _index.md to index.md in both EN and IT, removed type = "repository" front matter (Hugo resolves layouts/repository/single.html automatically by section name), and renamed list.html to single.html. Visual output unchanged.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'content/it/repository/index.md')
| -rw-r--r-- | content/it/repository/index.md | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/content/it/repository/index.md b/content/it/repository/index.md new file mode 100644 index 0000000..1b2e835 --- /dev/null +++ b/content/it/repository/index.md @@ -0,0 +1,62 @@ ++++ +title = "Repository Slackware" +date = 2026-04-17T00:00:00Z +draft = false ++++ + +## Inizio Rapido + +Aggiungi il repository al tuo sistema Slackware: + +```bash +# Aggiungi configurazione repository (comando di esempio) +wget -O - https://danix.xyz/packages/slackware.asc | gpg --import +echo "deb https://danix.xyz/packages/slackware/ stable main" >> /etc/apt/sources.list.d/danix.list +apt-get update +``` + +## Installazione + +### Prerequisiti + +- Slackware 15.0 o successivi +- Accesso root o sudo +- wget o curl + +### Passaggi + +1. Scarica e importa la chiave GPG del repository +2. Aggiungi il repository alla configurazione del gestore di pacchetti +3. Aggiorna gli elenchi dei pacchetti +4. Installa i pacchetti come necessario + +### URL Repository + +``` +https://danix.xyz/packages/slackware/ +``` + +## Utilizzo + +### Installazione di un Pacchetto + +```bash +apt-get install nome-pacchetto +``` + +### Aggiornamento dei Pacchetti + +```bash +apt-get update +apt-get upgrade +``` + +### Ricerca di Pacchetti + +```bash +apt-cache search parola-chiave +``` + +## Pacchetti Disponibili + +Controlla il repository per i pacchetti disponibili più recenti. Consulta i repository GitHub SlackBuild di seguito per informazioni sulla compilazione e file di origine. |
