web-dev-qa-db-ja.com

Centos Linuxで利用できる「xdotool」rpmはありますか?

Xdotoolのインストールは非常に難しいようです
CentOSでは要件があるため。といった

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

一番上のものは特にフォルダに移動してローカルにインストールするのが難しいです。 (インターネットなし)。 (余分な速度のために)。

現在、CentOSLinuxにxdotoolをインストールするには、これら2つのコマンドを実行してから実行する必要があります。

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

epelおよびrpmforgeリポジトリをyumに追加しようとしましたが、xdotoolを検索しましたが何も見つかりませんでした。

CentOS Linuxに簡単にインストールできるように、既知のrpmバージョンがあるかどうか疑問に思いました。

6
User3432423423

よく見てください。 xdotoolは nux dextop リポジトリによって提供されているようです。

[root@nctirlwb07 ~]# yum info xdotool
Loaded plugins: product-id, rhnplugin, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
This system is receiving updates from RHN Classic or RHN Satellite.
Available Packages
Name        : xdotool
Arch        : x86_64
Epoch       : 1
Version     : 2.20110530.1
Release     : 4.el6.nux
Size        : 44 k
Repo        : nux-dextop
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.
2
Bratchley

xdotoolsをインストールするこの簡単な方法

yum install epel-release -y
yum install xdotool -y
3
Anto Rij