Centos Linux용 "xdotool" rpm이 있습니까?

Centos Linux용 "xdotool" rpm이 있습니까?


CentOS에 xdotool을 설치하는 것은 요구 사항으로 인해 매우 어려운 것 같습니다. 예를 들어

yum groupinstall 'Development Tools' -y
yum install libXi-devel libXtst-devel libXinerama-devel -y

맨 위의 것은 폴더로 이동하여 로컬로 설치하는 것이 특히 어렵습니다. (인터넷 없음). (추가 속도를 위해).

현재는 이 두 명령을 실행해야 하며 xdotoolCentOS Linux에 설치하려면 명령을 실행해야 합니다.

cat > /etc/ld.so.conf << "EOF"
/usr/local/lib
EOF
# rm -rf xdotool-2.20110530.1
# tar -xvf xdot*
cd xdot*
make install

내 yum에 추가 epel하고 rpmforge저장소를 시도한 다음 검색했지만 xdotool아무것도 찾지 못했습니다.

알려진 rpm 버전이 있는지 궁금합니다. 그러면 CentOS Linux에 설치하는 것이 간단할 것입니다.

답변1

xdotools를 설치하는 쉬운 방법

yum install epel-release -y
yum install xdotool -y

답변2

자세히 살펴보세요. xdotool에 의해 만들어진 것 같아에펠저장소(이전 소스,눅스 오른손, 현재 유효하지 않음):

[root@nctirlwb07 ~]# yum info xdotool
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
Available Packages
Name        : xdotool
Arch        : i686
Epoch       : 1
Version     : 2.20110530.1
Release     : 7.el6
Size        : 43 k
Repo        : epel
Summary     : Fake keyboard/mouse input
URL         : http://www.semicomplete.com/projects/xdotool/
License     : BSD
Description : This tool lets you programmatically (or manually) 
simulate keyboard input and mouse activity, move and re-size windows, etc.

관련 정보