Centos Linux 是否有可用的“xdotool”rpm?

Use*_*423 7 linux bash yum rpm repository


由于它的要求,在 CentOS上安装 xdotool 似乎非常困难。如

yum groupinstall 'Development Tools' -y
yum install libXi-devel libXtst-devel libXinerama-devel -y
Run Code Online (Sandbox Code Playgroud)

最上面的尤其难以移动到文件夹并在本地安装。(没有互联网)。(为了额外的速度)。

目前我必须运行这两个命令,然后我必须运行它们才能xdotool在 CentOS Linux上安装。

cat > /etc/ld.so.conf << "EOF"
/usr/local/lib
EOF
# rm -rf xdotool-2.20110530.1
# tar -xvf xdot*
cd xdot*
make install
Run Code Online (Sandbox Code Playgroud)

我尝试在我的 yum 中添加epelrpmforgerepos,然后我搜索xdotool什么也没找到。

我想知道是否有已知的 rpm 版本,以便在 CentOS Linux 上安装它很简单。

Bra*_*ley 2

仔细观察一下。它看起来像是由epelxdotool存储库提供的(之前的源Nux dextop现已失效):

[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.
Run Code Online (Sandbox Code Playgroud)