Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
en:services:storage_services:backup:tsm:repo [2018/05/24 16:36] – [Repositories for TSM 7 clients] bwegman1en:services:storage_services:backup:tsm:repo [2024/04/22 09:28] – [Repositories for TSM 7 clients] jbruene
Line 1: Line 1:
 +
 +
 +
 +
 +=== APT ===
 +
 +For Debian/Ubuntu servers the repositories can be installed with the following steps:
 +
 +<code>
 +wget -q http://packages.gwdg.de/gwdg-tsm-client/deb/gwdg-tsm-client.gpg -O- | apt-key add - 
 +echo "deb http://packages.gwdg.de/gwdg-tsm-client/deb/ main latest" > /etc/apt/sources.list.d/gwdg-tsm-client.list 
 +</code>\\
 +After updating the package repository cache the original TSM clients ("tivsm-ba") can be installed directly or via the package "gwdg-tsm-client" which installs the TSM clients and the SysVinit script for starting the DSMCA daemon:
 +
 +<code>
 +apt-get update
 +apt-get install gwdg-tsm-client
 +</code>\\
 +
 +=== RPM ===
 +
 +The RPM repository for Redhat/Fedora can be installed with the following steps:
 +
 +<code>
 +yum-config-manager --add-repo http://packages.gwdg.de/gwdg-tsm-client/rpm/
 +wget -q -O /tmp/gwdg-tsm.key "http://packages.gwdg.de/gwdg-tsm-client/rpm/repodata/repomd.xml.key"
 +rpmkeys --import /tmp/gwdg-tsm.key && rm -v /tmp/gwdg-tsm.key
 +</code>
 +
 +After refreshing the package repository cache the TSm clients can be installed directly:
 +<code>
 +yum update
 +yum install tivsm-ba
 +</code>