To install packages from the TCSH repository for Debian and Ubuntu, you should first download a trust anchor into your system using this command:
curl -o /usr/share/keyrings/tcsh-archive-keyring.gpg \
https://deb.tcsh.org/tcsh-archive-keyring.gpg
Then create the configuration that adds the repository to the sources
used by apt
:
echo 'deb [signed-by=/usr/share/keyrings/tcsh-archive-keyring.gpg]' \
https://deb.tcsh.org/`lsb_release -is | tr A-Z a-z`/ \
`lsb_release -cs` main > /etc/apt/sources.list.d/tcsh.list
Once this is done, you can update tcsh
to the latest available version.
Also install tcsh-archive-keyring
to make sure updates to the keyring
are received in a timely manner.
apt update && apt install tcsh tcsh-archive-keyring
Packages are available for the following operating system releases:
- Debian 13 (trixie)
- Debian 12 (bookworm)
- Debian 11 (bullseye)
- Ubuntu 24.04 (noble)
- Ubuntu 22.04 (jammy)
- Ubuntu 20.04 (focal)
- Ubuntu 18.04 (bionic)
Packages are available for the amd64
and arm64
architectures only.