UUENCODE를 작동시키는 방법은 무엇입니까?

UUENCODE를 작동시키는 방법은 무엇입니까?

서버를 상속받았고 소프트웨어 요구 사항으로 인해 이전 버전의 Redhat이 설치되어 있었으며 이제 이메일 첨부를 허용하려면 UUENCODE를 사용해야 합니다. uuencode파일이 거기 uudecode에 없습니다 /usr/bin. 다른 서버에서 복사하려고 시도했지만 오류가 발생했습니다.

/lib64/tls/libc.so.6: 실행하려고 할 때 'GLIBC_2.4' 버전을 찾을 수 없습니다.

sharutils.rpm을 설치해야 할 것 같지만 어떤 것을 다운로드해야 할지 잘 모르겠습니다. 누구든지 다운로드할 올바른 rpm이나 uuencode를 처리하는 다른 방법을 알려줄 수 있습니까?

서버 세부정보:

$ cat /proc/version
Linux version 2.6.9-42.ELsmp ([email protected]) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-2)) #1 SMP Wed Jul 12 23:32:02 EDT 2006

$ cat /etc/redhat-release
Red Hat Enterprise Linux ES release 4 (Nahant Update 4)

$ uname -a
Linux <servername> 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:32:02 EDT 2006 x86_64 x86_64 x86_64 GNU/Linux

답변1

yumRHEL 저장소에 액세스하여 해당 버전과 일치하는 sharutils 버전을 설치해 보셨나요 ?

$ yum update
$ yum install sharutils

CentOS 패키지는 일반적으로 RHEL 패키지와 일대일로 대응되지만 브랜드는 제거됩니다. 패키지를 수동으로 다운로드해 볼 수 있습니다. 여기에서 패키지를 얻을 수 있는 것 같습니다.

$ wget http://mirror.rackspace.com/CentOS/4/apt/i386/RPMS.os/sharutils-4.2.1-22.2.i386.rpm

답변2

Fedora 17 Linux에서 uuencode를 얻는 방법

yum을 사용하여 uuencode가 제공하는 기능을 알아보세요.

yum provides uuencode

yum이 말하는 내용을 읽어보세요:

sharutils-4.11.1-3.fc17.x86_64 : The GNU shar utilities for packaging 
                                 and unpackaging shell archives
Repo        : @updates
Matched from:
Filename    : /usr/bin/uuencode

아 봐! 'sharutils'는 uuencode를 제공합니다

설치하다:

yum install sharutils

다음과 같은 결과가 나타납니다.

[root@defiant el]# yum install sharutils 
Loaded plugins: fastestmirror, langpacks, presto, refresh-packagekit
Loading mirror speeds from cached hostfile
 * fedora: ftp.usf.edu
 * rpmfusion-free: mirror.hiwaay.net
 * rpmfusion-free-updates: mirror.hiwaay.net
 * rpmfusion-nonfree: mirror.hiwaay.net
 * rpmfusion-nonfree-updates: mirror.hiwaay.net
 * updates: mirror.hiwaay.net
Resolving Dependencies
--> Running transaction check
---> Package sharutils.x86_64 0:4.11.1-3.fc17 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================================================================================================================================
 Package                                                Arch                                                Version                                                      Repository                                            Size
====================================================================================================================================================================================================================================
Installing:
 sharutils                                              x86_64                                              4.11.1-3.fc17                                                updates                                              176 k

Transaction Summary
====================================================================================================================================================================================================================================
Install  1 Package

Total download size: 176 k
Installed size: 612 k
Is this ok [y/N]: y
Downloading Packages:
sharutils-4.11.1-3.fc17.x86_64.rpm                                                                                                                                                                           | 176 kB     00:00     
Running Transaction Check
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : sharutils-4.11.1-3.fc17.x86_64                                                                                                                                                                                   1/1 
  Verifying  : sharutils-4.11.1-3.fc17.x86_64                                                                                                                                                                                   1/1 

Installed:
  sharutils.x86_64 0:4.11.1-3.fc17                                                                                                                                                                                                  

Complete!

그런 다음 작동하는지 테스트하십시오.

[root@defiant el]# which uuencode
/usr/bin/uuencode
[root@defiant el]# uuencode --version
uuencode (GNU sharutils) 4.11.1

관련 정보