Linux

Centos Linux 有可用的“xdotool”rpm 嗎?

  • January 11, 2022

由於它的要求,在 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

我嘗試將epelrpmforgerepos 添加到我的 yum 中,然後我xdotool沒有找到任何東西。

我想知道是否有已知的 rpm 版本,以便在 CentOS Linux 上安裝它會很簡單。

仔細觀察它。它看起來像是xdotoolepel儲存庫提供的(以前的源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.

這種安裝 xdotools 的簡單方法

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

引用自:https://unix.stackexchange.com/questions/89344