0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

GSKit V8 のLinuxへのインストール

Posted at

なんだか必要になったのでメモ。

参考:

1 . GSKit V8 ファイルをダウンロード

Linux x86_64 platform from IBM Fix Centralにアクセス。

2 . とりあえず一番新しいバージョンをクリック

image.png

3 . ダウンロードオプションを1つ選択し、[次へ進む]をクリック

ここでは単純な「ブラウザー (HTTPS) を使用したダウンロード」を選択しています。
image.png

4. 表示されたファイルをダウンロード

image.png

5 . ダウンローしたファイルを導入するLinuxマシンに置き、ログインし、ダウンロードしたファイルが置いてあるDirにcdします。

ここでは/tmpに置いたとします。
またファイル名はバージョンによって異なりますが、ここでは
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026.tar.gz
とします。
適時、自分のダウンロードしたファイルに読み替えてください。
また実行はroot権限で行ってください。

# cd /tmp
# ls 8.0.55.26-ISS-GSKIT-LinuxX64-FP0026.tar.gz
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026.tar.gz
#

6 . ダウンロードしたファイルの解凍

# tar -zxvf 8.0.55.26-ISS-GSKIT-LinuxX64-FP0026.tar.gz
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/64/
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/64/gskssl64-8.0.55.26.linux.x86_64.rpm
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/64/gskcrypt64-8.0.55.26.linux.x86_64.rpm
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/32/
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/32/gskcrypt32-8.0.55.26.linux.x86.rpm
8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/32/gskssl32-8.0.55.26.linux.x86.rpm
#

7 . 64bit版か32bit版、適応する方を選んでcd

下記は64bit版を選択、以下64bit版 で記述

# cd 8.0.55.26-ISS-GSKIT-LinuxX64-FP0026/64

8 . rpmでインストール

# rpm -Uhv gskcrypt64-8*.rpm
警告: gskcrypt64-8.0.55.26.linux.x86_64.rpm: ヘッダー V3 RSA/SHA256 Signature、鍵 ID 33259e38: NOKEY
Verifying...                          ################################# [100%]
準備しています...              ################################# [100%]
更新中 / インストール中...
   1:gskcrypt64-8.0-55.26             ################################# [100%]
#
# rpm -Uhv gskssl64-8*.rpm
警告: gskssl64-8.0.55.26.linux.x86_64.rpm: ヘッダー V3 RSA/SHA256 Signature、鍵 ID 33259e38: NOKEY
Verifying...                          ################################# [100%]
準備しています...              ################################# [100%]
更新中 / インストール中...
   1:gskssl64-8.0-55.26               ################################# [100%]
#

9 . 確認

# rpm -qa | egrep "gskcrypt32|gskssl32|gskcrypt64|gskssl64"
gskssl64-8.0-55.26.x86_64
gskcrypt64-8.0-55.26.x86_64
#

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?