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

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


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

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

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

目前我必须运行这两个命令,然后我必须运行它们才能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

我尝试向我的百胜添加epelrpmforge存储库,然后我搜索xdotool什么也没找到。

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

答案1

安装 xdotools 的简单方法

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

答案2

仔细观察一下。看起来像是xdotool埃佩尔存储库(以前的来源,Nux 右旋,现已失效):

[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.

相关内容