<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sshpass &#8211; SMsoft &#8211; informatica e dintorni</title>
	<atom:link href="https://blog.smsoft.it/tag/sshpass/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.smsoft.it</link>
	<description>consigli settimanali su MacOS, GNU/Linux ed Open Source</description>
	<lastBuildDate>Mon, 24 Jan 2022 07:43:44 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=89089</generator>
	<item>
		<title>MacOS: Installare sshpass</title>
		<link>https://blog.smsoft.it/2022/03/01/macos-installare-sshpass-2/</link>
					<comments>https://blog.smsoft.it/2022/03/01/macos-installare-sshpass-2/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 01 Mar 2022 09:30:00 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[brew]]></category>
		<category><![CDATA[Monterey]]></category>
		<category><![CDATA[sshpass]]></category>
		<guid isPermaLink="false">https://blog.smsoft.it/?p=5343</guid>

					<description><![CDATA[sshpass è un programma che permette l&#8217;esecuzione non interattiva dell&#8217;autenticazione tramite password, in pratica è un software che inserire la password ssh per nostro conto al login e così automatizzare la procedura. ATTENZIONE: E&#8217; preferibile usare una chiave per l&#8217;autenticazione SSH, l&#8217;uso di sshpass può essere pericoloso e per questo motivo il software non può ... <a title="MacOS: Installare sshpass" class="read-more" href="https://blog.smsoft.it/2022/03/01/macos-installare-sshpass-2/" aria-label="Per saperne di più su MacOS: Installare sshpass">Leggi tutto</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><a rel="noreferrer noopener" href="https://sourceforge.net/projects/sshpass/" target="_blank">sshpass</a> è un programma che permette l&#8217;esecuzione non interattiva dell&#8217;autenticazione tramite password, in pratica è un software che inserire la password ssh per nostro conto al login e così automatizzare la procedura.</p>



<p class="wp-block-paragraph">ATTENZIONE: E&#8217; preferibile usare una chiave per l&#8217;autenticazione SSH, l&#8217;uso di <strong>sshpass</strong> può essere pericoloso e per questo motivo il software non può essere installato direttamente con <strong>brew</strong>.</p>



<p class="wp-block-paragraph">Se davvero abbiamo bisogno di sshpass, ci sono due possibilità:</p>



<ul class="wp-block-list"><li>aggiungere un repository a brew che possa automatizzare questa cosa</li><li>installiamo manualmente ssh, scaricandolo e compilandolo a mano</li></ul>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">Questa la procedura per usare <strong>Brew</strong>:</p>



<pre class="wp-block-preformatted">brew tap perkons/sshpass
brew install sshpass</pre>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">Se invece vogliamo <strong>ricompilarlo a mano</strong>:</p>



<pre class="wp-block-preformatted">curl -O -L https://ixpeering.dl.sourceforge.net/project/sshpass/sshpass/1.09/sshpass-1.09.tar.gz
tar xvzf sshpass-1.09.tar.gz
cd sshpass-1.09
./configure --disable-debug --disable-dependency-tracking
sudo make install</pre>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">enjoy!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.smsoft.it/2022/03/01/macos-installare-sshpass-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MacOS: installare sshpass</title>
		<link>https://blog.smsoft.it/2019/11/05/macos-installare-sshpass/</link>
					<comments>https://blog.smsoft.it/2019/11/05/macos-installare-sshpass/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 05 Nov 2019 08:30:11 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[brew]]></category>
		<category><![CDATA[sshpass]]></category>
		<guid isPermaLink="false">https://blog.smsoft.it/?p=4477</guid>

					<description><![CDATA[Per installare pacchetti su MacOs abbiamo spesso parlato di brew. Provando però ad installare sshpass, viene mostrato un errore molto chiaro: Error: No available formula with the name "sshpass" We won't add sshpass because it makes it too easy for novice SSH users to ruin SSH's security. Pertanto, se siete sicuri di quello che state ... <a title="MacOS: installare sshpass" class="read-more" href="https://blog.smsoft.it/2019/11/05/macos-installare-sshpass/" aria-label="Per saperne di più su MacOS: installare sshpass">Leggi tutto</a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Per installare pacchetti su MacOs abbiamo spesso parlato di brew. Provando però ad installare sshpass, viene mostrato un errore molto chiaro:</p>



<pre class="wp-block-preformatted">Error: No available formula with the name "sshpass"

We won't add sshpass because it makes it too easy for novice SSH users to ruin SSH's security.</pre>



<p class="wp-block-paragraph">Pertanto, se siete sicuri di quello che state per fare, potete procedere all&#8217;installazione di sshpass con:</p>



<pre class="wp-block-preformatted">brew install https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb</pre>



<p class="wp-block-paragraph">enjoy!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.smsoft.it/2019/11/05/macos-installare-sshpass/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
