# packages **Repository Path**: iamsjy/packages ## Basic Information - **Project Name**: packages - **Description**: Tony's personal Debian package repository - **Primary Language**: CSS - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-23 - **Last Updated**: 2021-03-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Tony's personal Debian package repository ## Introduction The repository is used to collect some Debian packages whinch are not in the official repo. ## Usage Add the public GPG key to the apt sources keyring. ``` wget -qO - https://blog.iamsjy.com/packages/public.key | sudo apt-key add - ``` Edit `/etc/apt/sources.list` ``` sudo nano /etc/apt/sources.list ``` Then, add the following line. ``` deb https://blog.iamsjy.com/packages buster main ``` Save this file, then refresh the apt configuration. ``` sudo apt update ``` Now you can use `sudo apt install PACKAGE_NAME` to install packages from the repo. (Replace `PACKAGE_NAME` with the name of the package you want to install) If the speed is too slow, you can try the [mirror addresses](#mirrors). ## Mirrors * Coding (Recommended for Chinese users) ``` https://iamsjy.coding.net/p/packages/d/packages/git/raw/main/ ``` * Vercel ``` https://apt.now.sh/ ```