diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-17 10:42:44 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-17 10:42:44 +0200 |
| commit | 95191be2b63157400712fc48e3ff02fd9cee9e27 (patch) | |
| tree | 95a8fb32c120d4fd0dc1209fc293c5ca8d1fbcce /content | |
| parent | 280ea3d44e9de187c36dbd81bed8076d4b2001e0 (diff) | |
| download | danixxyz-95191be2b63157400712fc48e3ff02fd9cee9e27.tar.gz danixxyz-95191be2b63157400712fc48e3ff02fd9cee9e27.zip | |
feat: create English repository page content
Diffstat (limited to 'content')
| -rw-r--r-- | content/en/repository/_index.md | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/content/en/repository/_index.md b/content/en/repository/_index.md new file mode 100644 index 0000000..8622464 --- /dev/null +++ b/content/en/repository/_index.md @@ -0,0 +1,62 @@ ++++ +title = "Slackware Repository" +date = 2026-04-17T00:00:00Z +draft = false ++++ + +## {{ i18n "quickStartTitle" }} + +Add the repository to your Slackware system: + +```bash +# Add repository configuration (example command) +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 +``` + +## {{ i18n "installationTitle" }} + +### Prerequisites + +- Slackware 15.0 or later +- Root or sudo access +- wget or curl + +### Steps + +1. Download and import the repository GPG key +2. Add the repository to your package manager configuration +3. Update your package lists +4. Install packages as needed + +### Repository URL + +``` +https://danix.xyz/packages/slackware/ +``` + +## {{ i18n "usageTitle" }} + +### Installing a Package + +```bash +apt-get install package-name +``` + +### Updating Packages + +```bash +apt-get update +apt-get upgrade +``` + +### Searching for Packages + +```bash +apt-cache search keyword +``` + +## {{ i18n "availablePackagesTitle" }} + +Check the repository for the latest available packages. See the GitHub SlackBuild repositories below for build information and source files. |
