私有 APT 软件源,多 Ubuntu 版本 × 多通道。
Private APT repository — multi-distro, multi-channel.
| Distribution | Distribution | 通道 | Channels | 适用 | Scope |
|---|---|---|---|---|---|
all | stable, devel | 通用(不挑版本) | Common (any distro) | ||
jammy, noble | stable, devel | Ubuntu 版本特定 | Distro-specific |
架构: amd64,arm64
Architectures: amd64,arm64
curl -fsSL http://apt.renesas.kaylordut.com/install.sh | sudo bash
自动检测 CPU 架构和 Ubuntu 版本,添加通用源 + 对应系统版本源。
Auto-detects CPU arch and Ubuntu version. Adds common + distro-specific sources.
# 1. 下载 GPG 公钥1. Download GPG key sudo curl -fsSL http://apt.renesas.kaylordut.com/renesas_pai-public-key.asc \ -o /usr/share/keyrings/renesas_pai-archive-keyring.asc # 2. 通用源 (不挑 Ubuntu 版本)2. Common sources (any Ubuntu version) echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/renesas_pai-archive-keyring.asc] \ http://apt.renesas.kaylordut.com/ all stable" | \ sudo tee /etc/apt/sources.list.d/renesas_pai.list # 3. 版本特定源 (自动检测系统版本)3. Distro-specific (auto-detect version) echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/renesas_pai-archive-keyring.asc] \ http://apt.renesas.kaylordut.com/ $(lsb_release -cs 2>/dev/null) stable" | \ sudo tee -a /etc/apt/sources.list.d/renesas_pai.list # 4. 更新4. Update sudo apt update
所有源都通过 signed-by 绑定专属公钥,不污染系统全局信任区。
All sources use signed-by for scoped trust — no global keyring pollution.