Difference between revisions of "Setup pdsh on centos 8"

From Define Wiki
Jump to navigation Jump to search
(Created page with "* pdsh is not on epel for centos 8 - here's how to build and install == Install and configuration of pdsh == <bash> # setup the pre-reqs yum install autoconf yum groupinstall...")
 
 
Line 2: Line 2:
  
 
== Install and configuration of pdsh ==
 
== Install and configuration of pdsh ==
<bash>
+
<pre>
 
# setup the pre-reqs
 
# setup the pre-reqs
 
yum install autoconf
 
yum install autoconf
Line 16: Line 16:
 
make  
 
make  
 
make install  
 
make install  
</bash>
+
</pre>

Latest revision as of 12:15, 26 April 2021

  • pdsh is not on epel for centos 8 - here's how to build and install

Install and configuration of pdsh

# setup the pre-reqs
yum install autoconf
yum groupinstall 'Development tools'

# pull the software
git clone https://github.com/chaos/pdsh.git
cd pdsh/
 
# build / install
./bootstrap 
./configure --without-rsh --with-ssh --without-ssh-connect-timeout-option --prefix=/usr/local
make 
make install