Claws-mail rpm 패키지를 설치하는 방법은 무엇입니까?

Claws-mail rpm 패키지를 설치하는 방법은 무엇입니까?

세 가지 다른 방법을 사용하여 Centos7에 Claws-mail을 설치하려고 시도했지만 모두 실패했습니다.

방법 1: 직접 설치

[root@localhost ~]#  yum install claws-email
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: ftp.cuhk.edu.hk
 * extras: centos.ustc.edu.cn
 * updates: mirrors.pubyun.com
No package claws-email available.    

방법 2: rpm 패키지에서 설치합니다. 나는 공식 홈페이지에서claws-mail-3.12.0-1.fc24.x86_64.rpm을 다운로드했다.

[root@localhost ~]#  rpm  -ivh  /root/Downloads/claws-mail-3.12.0-1.fc24.x86_64.rpm    
 warning: /root/Downloads/claws-mail-3.12.0-1.fc24.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 81b46521: NOKEY
error: Failed dependencies:      
    libcompface.so.1()(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64   
    libetpan.so.17()(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64   
    libgnutls.so.30()(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64   
    libgnutls.so.30(GNUTLS_3_4)(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64   
    liblockfile.so.1()(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64   
    libpisock.so.9()(64bit) is needed by claws-mail-3.12.0-1.fc24.x86_64 

종속 패키지를 먼저 설치하고 싶습니다.

[root@localhost ~]# yum install -y libcompface.so.1
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: ftp.cuhk.edu.hk
 * extras: centos.ustc.edu.cn
 * updates: mirrors.pubyun.com
No package libcompface.so.1 available.
Error: Nothing to do
[root@localhost ~]# yum install -y libcompface.so
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: ftp.cuhk.edu.hk
 * extras: centos.ustc.edu.cn
 * updates: mirrors.pubyun.com
No package libcompface.so available.
Error: Nothing to do
[root@localhost ~]# yum install -y libcompface
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirrors.163.com
 * epel: ftp.cuhk.edu.hk
 * extras: centos.ustc.edu.cn
 * updates: mirrors.pubyun.com
No package libcompface available.
Error: Nothing to do

방법 3: 튜토리얼에 따라 설치합니다.

http://linuxpitstop.com/install-claws-mail-3-12-on-ubuntu-linux/

Fedora의 경우: 이러한 종속성을 설치한 후 다음 URL에서 Claws 메일의 새 버전을 다운로드하세요.

yum install -y libc6 libcairo2 libcompfaceg1 libdbus-glib-1-2 libenchant1c2a libgdk-pixbuf2.0-0 libglib2.0-0 libgtk2.0-0 libice6 libldap-2.4-2 libpango1.0-0 libpisock9 libsm6 xdg-utils
No package  available.
Error: Nothing to do

아마도 문제는 repo 파일일까요? 내 centos7에 repo를 추가하는 방법은 무엇입니까?

답변1

yum대신에 Claws-email을 설치해 보는 것은 어떨까요 ? 소프트웨어와 함께 제공되는 종속성을 다운로드합니다.

sudo yum install claws-email

올바른 프로그램 이름이 아닌 경우 다음을 시도해 보십시오.

sudo yum install claw*

관련 정보