Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:services:storage_services:backup:tsm:repo [2017/11/08 16:37] bnachtwen:services:storage_services:backup:tsm:repo [2018/05/24 16:36] (current) – [Repositories for TSM 7 clients] bwegman1
Line 1: Line 1:
 +
 +
 +
 +===== Repositories for TSM 7 clients =====
 +
 +<WRAP center round important 60%>
 +The repositories are no longer maintained and will be **discontinued after June 2018**. Please see [[en:services:storage_services:backup:tsm|alternative installation options]].
 +</WRAP>
 +
 +There are [[https://packages.gwdg.de/gwdg-tsm-client/deb/|APT]] and [[https://packages.gwdg.de/gwdg-tsm-client/rpm/|RPM]] repositories available for TSM 7 clients. Due to licensing constraints by IBM the repositories are only available within the GÖNET.
 +
 +For instructions on how to configure backup with the TSM clients, please see the respective documentation.
 +
 +<WRAP center round important 60%>
 +Because these repositories need to be maintained manually, they aren't always up to date. New versions implement as well new functions as bug fixes, so please look at the [[https://info.gwdg.de/faq/index.php?action=artikel&cat=50&id=49&artlang=de| FTP]] servers if a newer one is available.
 +
 +since early 2017 the current version is ISP 8.
 +</WRAP>
 +=== 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>