Slackware 14.2에 TCP 래퍼 설치

Slackware 14.2에 TCP 래퍼 설치

적절한 패키지 관리자를 사용하여 TCP Wrappers를 설치하는 방법은 무엇입니까? pkgtool을 실행하면 목록에 tcp_wrappers가 포함되어 있는 것을 볼 수 있습니다 tcp_wrappers-7.6-x86_64-1. 나는 그것을 설치하고 싶다.

나는 성공하지 않고 다음 명령을 시도했습니다.

 installpkg tcp_wrappers-7.6-x86_64-1.tgz

위의 명령을 실행할 때마다 다음과 같이 나타납니다.

 Cannot install, file not found.

/var/log/packages그래서 Slackware 패키지 목록 으로 이동하여 tcp_wrappers-7.6-x86_64-1파일을 찾았습니다. 그래서 내가 한 일은 다음과 같습니다.

mv tcp_wrappers-7.6-x86_64-1 tcp_wrappers-7.6-x86_64-1.tgz
installpkg tcp_wrappers-7.6-x86_64-1.tgz

프롬프트 메시지는 다음과 같습니다.

Verifying package tcp_wrappers-7.6-x86_64-1.tgz
gzip : stdin : not in gzip format
Installing package tcp_wrappers-7.6-x86_64-1.tgz:
PACKAGE DESCRIPTION:
WARNING: Package has not been created with 'makepkg'
Package tcp_wrappers-7.6-x86_64-1.tgz installed.

그 후 다음 명령을 사용하여 tcp_wrappers가 성공적으로 설치되었는지 확인했습니다.

rpm -q tcp_wrappers
rpm -q tcp_wrappers-7.6-x86_64-1
rpm -q tcp_wrappers-7.6-x86_64-1.tgz

그것은 단지 말한다 :

package tcp_wrappers is not installed 
package tcp_wrappers-7.6-x86_64-1 is not installed
package tcp_wrappers-7.6-x86_64-1.tgz is not installed

나는 무엇을 해야 합니까?

관련 정보