Difference between revisions of "Linux"

From SpenchWiki
Jump to: navigation, search
Line 33: Line 33:
  
 
* stdout and stderr:
 
* stdout and stderr:
<code>
+
<pre>
 
2>&1
 
2>&1
</code>
+
</pre>
 
* Under Window CMD, this is the equivalent:
 
* Under Window CMD, this is the equivalent:
<code>
+
<pre>
 
program > log.txt 2>&1
 
program > log.txt 2>&1
</code>
+
</pre>
  
 
== Prevent screen blanking ==
 
== Prevent screen blanking ==
  
<code>
+
<pre>
 
setterm -blank 0
 
setterm -blank 0
</code>
+
</pre>
  
 
== Using rsync for local file comparisons ==
 
== Using rsync for local file comparisons ==
  
<code>
+
<pre>
 
rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport"
 
rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport"
</code>
+
</pre>
  
 
== tcpdump with greater snarf size ==
 
== tcpdump with greater snarf size ==
  
<code>
+
<pre>
 
tcpdump -s 1500 -w out-file.pcap <expression>
 
tcpdump -s 1500 -w out-file.pcap <expression>
</code>
+
</pre>
  
 
== Scripts ==
 
== Scripts ==

Revision as of 16:31, 12 February 2010

Useful apps

Squid:

  • squidtaild
  • squidclient
  • srg
  • squidview
  • calamaris
  • sarg

Highlighter:

  • ccze

Cleaning useless Debian items:

  • localepurge
  • deborphan
  • debfoster

Monitoring:

  • iptraf
  • bmon

WebDAV:

  • cadaver
  • nd

Redirection

  • stdout and stderr:
2>&1
  • Under Window CMD, this is the equivalent:
program > log.txt 2>&1

Prevent screen blanking

setterm -blank 0

Using rsync for local file comparisons

rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport"

tcpdump with greater snarf size

tcpdump -s 1500 -w out-file.pcap <expression>

Scripts

  • lesspipe.sh

Use in conjuction with environment variables:

export LESS=-R
export LESSOPEN="|/usr/local/bin/lesspipe.sh %s"

Script:

#!/bin/sh
case "$1" in
*.log.[0-9]*.gz) gunzip -c $1 2>/dev/null | ccze -A
        ;;
*.log|*.log.[0-9]*) cat $1 | ccze -A
        ;;
*.gz) gunzip -c $1 2>/dev/null
        ;;
esac
  • Nice terminal colours:
export PAGER='less -R -s -i'
# Blink
export LESS_TERMCAP_mb=$'\E[05;31m'
# Bold
export LESS_TERMCAP_md=$'\E[01;33m'
# End above modes
export LESS_TERMCAP_me=$'\E[0m'
# End standout
export LESS_TERMCAP_se=$'\E[0m'
# Stand out
export LESS_TERMCAP_so=$'\E[00;44;33m'
# End underline
export LESS_TERMCAP_ue=$'\E[0m'
# Underline
export LESS_TERMCAP_us=$'\E[04;32m'
  • Log file viewers:
sudo tail -F -n 50 --max-unchanged-stats=5 /var/log/apache2/access.log | ccze
sudo tail -F --max-unchanged-stats=5 -n 50 /var/log/squid/access.log | ccze -C
sudo tail -F --max-unchanged-stats=5 -n 100000 /var/log/auth.log 2> /dev/null | grep --line-buffered -E "(sshd).*(Accepted)" | ccze
sudo watch -d -t 'netstat -p -t | grep ESTABLISHED'