User Sharjeel Sayed - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T20:38:16Zhttp://stackoverflow.com/feeds/user/11065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1304600/read-error-0-resource-temporarily-unavailable1read error: 0: Resource temporarily unavailableSharjeel Sayed2009-08-20T07:48:36Z2009-09-17T05:23:34Z
<p>I have a bash script which prompts for user input multiple times and processes input in the background during the time the next input is expected.
I keep getting this error once in while.</p>
<pre><code>read error: 0: Resource temporarily unavailable
</code></pre>
<p>I suspected the background processes in my script would be causing this so I tried putting a < dev/null at the end of the commands which run in the background,but that dint help much.</p>
<pre><code>./somescript.sh >> log.txt & < /dev/null
</code></pre>
<p>Any help would be much appreciated.</p>
http://stackoverflow.com/questions/171835/which-python-book-would-you-recommend-for-a-linux-sysadmin1Which Python book would you recommend for a Linux Sysadmin?Sharjeel Sayed2008-10-05T11:28:15Z2009-08-23T12:40:31Z
<p><a href="http://oreilly.com/catalog/9780596515829/" rel="nofollow">Python for Unix and Linux System Administration</a> is aimed at sysadmins.
Any other favorites besides this.</p>
http://stackoverflow.com/questions/1302113/exit-status-code-for-expect-script-called-from-bash0Exit status code for Expect script called from BashSharjeel Sayed2009-08-19T19:22:26Z2009-08-20T13:21:12Z
<p>I made a Bash script which uses an expect script to automate ssh logins.The script connects to multiple servers and runs some commands.
The bash script prompts for login credentials once.</p>
<p>I want to incorporate a feature wherein the script terminates if the login fails for the first server to avoid the script checking for next servers resulting in the user account getting locked.The account lockout happens for 3 consecutive login failures and the number of server the script tries to connect is more than 3.</p>
<p>This is the snippet in the bash script which calls the expect script.</p>
<pre><code>countu=0
for servername in $(cat $linux_host_list)
do
./script.expect $LUSERNAME $LPASS $servername Linux >> linux_log_file.txt & < /dev/null
let countl=countl+1
done
</code></pre>
<p>and here is the expect script ( script.expect )snippet</p>
<pre><code>#!/usr/bin/expect -f
set timeout 30
set username [lindex $argv 0]
set SPASS [lindex $argv 1]
set servername [lindex $argv 2]
set case [lindex $argv 3]
set prompt "(%|#|\\$|%\]) $"
switch $case {
Linux {
log_user 0
spawn ssh -o StrictHostKeyChecking=no $username@$servername
expect {
"assword:" {
send "$SPASS\r"
expect -re "$prompt"
}
expect -re "$prompt"
}
send "sudo su -\r"
expect {
"assword:" { send "$SPASS\r" }
}
expect -re "$prompt"
log_user 1
send "opcagt -status ; opctemplate -l ; cat watch.cf 2> /dev/null\r"
expect -re "$prompt"
log_user 0
send "exit\r"
expect -re "$prompt"
log_user 1
}
</code></pre>
<p>I tried grabbing the bash command output ( $? ) assuming that the bash command would return a non zero value if login fails for incorrect password in the expect script but that did not work out.
Any suggestions would be much appreciated.</p>
http://stackoverflow.com/questions/147742/what-tool-or-scripts-do-you-use-to-audit-a-linux-box4What tool or scripts do you use to audit a Linux box?Sharjeel Sayed2008-09-29T06:48:21Z2009-07-18T23:47:45Z
<p>I use the following tools for my auditing needs</p>
<p><strong>A) System Auditing and Hardening (One time)</strong></p>
<p>1) <a href="http://usat.sourceforge.net/" rel="nofollow">Linux Security Auditing Tool</a> (Security centric,Text based output )</p>
<p>2) <a href="http://www.nongnu.org/dmidecode/" rel="nofollow">Dmidecode</a> ( Retrieves info from BIOS )</p>
<p>3) <a href="http://www.geocities.com/kmuthu_gct/systeminfo/systeminfo.html" rel="nofollow">Systeminfo</a> ( Generates a nice html report)</p>
<p>4) <a href="http://syssumm.sourceforge.net/" rel="nofollow">Syssumm</a> (Inactive since Oct 2000)</p>
<p>5) <a href="http://www.rootkit.nl/" rel="nofollow">Rootkit Hunter</a> (Does a basic config check in addition to rootkit checks)</p>
<p>6) <a href="http://www.cisecurity.org" rel="nofollow">CIS benchmarks</a> </p>
<p>7) <a href="http://www.bastille-unix.org/" rel="nofollow">Bastille</a> ( Interactive hardening and a security scoring tool)</p>
<p><strong>B) Automatic Auditing (as a cron job or a service)</strong></p>
<p>1) <a href="http://www.logwatch.org/" rel="nofollow">Logwatch</a></p>
<p>2) <a href="http://cipherdyne.org/psad/" rel="nofollow">Psad</a></p>
<p><strong>C) Remote Auditing</strong></p>
<p>1) <a href="http://nmap.org" rel="nofollow">Nmap</a> (Port scanning)</p>
<p>2) <a href="http://www.nessus.org/nessus/" rel="nofollow">Nessus</a> ( Remote Vulnerability check)</p>
<p>Any other tools/scripts which you can recommend?</p>
http://stackoverflow.com/questions/143184/which-book-would-you-recommend-for-a-linux-sysadmin4Which book would you recommend for a Linux Sysadmin?Sharjeel Sayed2008-09-27T07:27:58Z2009-07-18T23:46:29Z
<p><a href="http://rads.stackoverflow.com/amzn/click/0131480049" rel="nofollow">Linux Administration Handbook</a> by Evi Nemeth, Garth Snyder and Trent R. Hein is the defacto for sysadmins.Any other favorites besides this one.</p>
http://stackoverflow.com/questions/907740/which-book-would-you-recommend-for-a-weblogic-sysadmin0Which book would you recommend for a Weblogic sysadmin? [closed]Sharjeel Sayed2009-05-25T19:02:23Z2009-05-26T22:14:53Z
<p>Apart from the BEA docs?</p>
http://stackoverflow.com/questions/1304600/read-error-0-resource-temporarily-unavailableComment by Sharjeel Sayed on read error: 0: Resource temporarily unavailableSharjeel Sayed2009-08-20T12:23:15Z2009-08-20T12:23:15ZNope < /dev/null is correct.I followed this <a href="http://serverfault.com/questions/49656/bash-script-throws-error-read-error-0-resource-temporarily-unavailable/49667#49667" rel="nofollow" title="bash script throws error read error 0 resource temporarily unavailable">serverfault.com/questions/49656/…</a>http://stackoverflow.com/questions/1304600/read-error-0-resource-temporarily-unavailable/1305443#1305443Comment by Sharjeel Sayed on read error: 0: Resource temporarily unavailableSharjeel Sayed2009-08-20T12:22:35Z2009-08-20T12:22:35ZYes < /dev/null is correct.I followed this <a href="http://serverfault.com/questions/49656/bash-script-throws-error-read-error-0-resource-temporarily-unavailable/49667#49667" rel="nofollow" title="bash script throws error read error 0 resource temporarily unavailable">serverfault.com/questions/49656/…</a>http://stackoverflow.com/questions/1302113/exit-status-code-for-expect-script-called-from-bash/1304623#1304623Comment by Sharjeel Sayed on Exit status code for Expect script called from BashSharjeel Sayed2009-08-20T08:23:51Z2009-08-20T08:23:51ZIf you read my question,I said that I have already tried that ($?) but that didn't work out.