Difference between revisions of "Linux"
From SpenchWiki
m (→Useful apps) |
(Counting files, find, rsync) |
||
Line 106: | Line 106: | ||
* stdout and/or stderr: | * stdout and/or stderr: | ||
<pre> | <pre> | ||
− | foo > bar 2>&1 | + | foo > bar 2>&1 - send stdout to bar, and stdout & stderr to terminal |
− | command &>file | + | command &>file - send stdout AND stderr to file |
− | command >&file | + | command >&file - send stdout AND stderr to file |
− | foo 2>&1 | bar | + | foo 2>&1 | bar - pipe stdout AND stderr into bar |
− | command1 2> file1 | + | command1 2> file1 - send stderr to file1 |
+ | </pre> | ||
+ | |||
+ | == Counting files == | ||
+ | |||
+ | <pre> | ||
+ | find . -type f ¦ wc -l | ||
+ | </pre> | ||
+ | |||
+ | == find == | ||
+ | |||
+ | From [http://www.codecoffee.com/tipsforlinux/articles/21.html Code Coffee]: | ||
+ | |||
+ | '''find''' defaults to current directory. | ||
+ | |||
+ | <pre> | ||
+ | find / -name 'program.c' | ||
+ | find /home/david -name 'index*' | ||
+ | find /home/david -iname 'index*' - case-insensitive | ||
+ | |||
+ | find /mp3collection -name '*.mp3' -size -5000k - less than 5MB | ||
+ | find / -size +10000k - greater than 10M | ||
+ | |||
+ | find /home/david -amin -10 -name '*.c' - access, minutes | ||
+ | find /home/david -atime -2 -name '*.c' - access, 24-hour periods | ||
+ | find /home/david -mmin -10 -name '*.c' - modified | ||
+ | find /home/david -mtime -2 -name '*.c' | ||
+ | |||
+ | find / -mount -name 'win*' - one file system | ||
+ | |||
+ | find /mp3-collection -name 'Metallica*' -and -size +10000k - and | ||
+ | find /mp3-collection -size +10000k ! -name "Metallica*" - not | ||
+ | find /mp3-collection -name 'Metallica*' -or -size +10000k - or | ||
+ | |||
+ | find / - name 'Metallica*' -exec ls -l {\}\ \; - execute command: | ||
+ | substitution: {\}\ | ||
+ | command end: \; | ||
</pre> | </pre> | ||
Line 131: | Line 167: | ||
</pre> | </pre> | ||
− | == | + | == rsync == |
+ | |||
+ | <pre> | ||
+ | a archive mode | ||
+ | v verbose | ||
+ | h human-readable | ||
+ | W whole file mode (don't use rsync algo) | ||
+ | d transfer directories without recursing | ||
+ | n dry run | ||
+ | </pre> | ||
+ | |||
+ | For local file comparisons: | ||
<pre> | <pre> | ||
rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport" | rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport" | ||
</pre> | </pre> | ||
+ | |||
+ | NTFS backup: | ||
+ | |||
+ | <pre> | ||
+ | sudo rsync -avhWd --progress --ignore-existing --exclude='System Volume Information' --exclude='$RECYCLE.BIN' sdb1/ Dagron/ | ||
+ | </pre> | ||
+ | |||
+ | ''NOTE'': Use sudo to ensure directory times are transferred. Will fail to transfer time of root directory. | ||
== tcpdump with greater snarf size == | == tcpdump with greater snarf size == |
Revision as of 19:35, 10 November 2011
Contents
[hide]Console shortcuts
- Ctrl + Z: stop (fg/bg)
- Ctrl + Y: stop only when process tries to read input from console
- Ctrl + S/Q: XON/XOFF (Shift + PgUp/PgDn to scroll)
- Ctrl + L: clear screen
- Ctrl + A/E: beginning/end of line
- Alt + F/B: forward/back one word
Screen
- -S <session name> Start session with name
- -e <program to start>
- -r Attach
- -R Attach if possible, otherwise start new
- -ls List sessions
- -x <session name> Attach to open session
- -d (-r) Detach the elsewhere running screen (and reattach here)
- -D (-r) Detach and logout remote (and reattach here)
- -D -RR Do whatever is needed to get a screen session
^A followed by
- d detach
- c new window
- A rename window
- w list windows
- " selectable window list
- 0-9 select window 0-9
- s split (new region)
- TAB change region focus
- Q make current region only one visible
- X kill region
- ^\ kill everything (including all processes)!
- M monitor window for activity
- _ monitor window for inactivity
- a send ^A to session
- p/n previous/next window
- N show window name
- A set window name
- k kill current window
- [ copy (space to mark, Esc to exit, / or ? for search, Ctrl + S/R for incremental, "ignorecase yes")
- ] paste
- ? list all possible commands
- : screen command prompt
- :sessionname <name>
- :multiuser on
- :aclchg <user> +r "#" Read perms on all windows
- :acldel <user>
Useful apps
Squid:
- squidtaild
- squidclient
- srg
- squidview
- calamaris
- sarg
Highlighter:
- ccze
Cleaning useless Debian items:
- localepurge
- deborphan
- debfoster
Monitoring:
- iptraf
- bmon
- atsar
- sysstat
- nmon
- mytop
Benchmarking:
- dbench
WebDAV:
- cadaver
- nd
HDD/ACPI monitoring:
- acpitail
- hddtemp
- fancontrol
- lm-sensors
- mbmon
- yacpi
Redirection
- stdout and/or stderr:
foo > bar 2>&1 - send stdout to bar, and stdout & stderr to terminal command &>file - send stdout AND stderr to file command >&file - send stdout AND stderr to file foo 2>&1 | bar - pipe stdout AND stderr into bar command1 2> file1 - send stderr to file1
Counting files
find . -type f ¦ wc -l
find
From Code Coffee:
find defaults to current directory.
find / -name 'program.c' find /home/david -name 'index*' find /home/david -iname 'index*' - case-insensitive find /mp3collection -name '*.mp3' -size -5000k - less than 5MB find / -size +10000k - greater than 10M find /home/david -amin -10 -name '*.c' - access, minutes find /home/david -atime -2 -name '*.c' - access, 24-hour periods find /home/david -mmin -10 -name '*.c' - modified find /home/david -mtime -2 -name '*.c' find / -mount -name 'win*' - one file system find /mp3-collection -name 'Metallica*' -and -size +10000k - and find /mp3-collection -size +10000k ! -name "Metallica*" - not find /mp3-collection -name 'Metallica*' -or -size +10000k - or find / - name 'Metallica*' -exec ls -l {\}\ \; - execute command: substitution: {\}\ command end: \;
Recording the screen
Recording:
script -t 2> tutorial.timing -a tutorial.session
Playback:
scriptreplay tutorial.timing tutorial.session
Prevent screen blanking
setterm -blank 0
rsync
a archive mode v verbose h human-readable W whole file mode (don't use rsync algo) d transfer directories without recursing n dry run
For local file comparisons:
rsync -avnhW "Desktop/My Passport/Mitsubishi090109_10" "/Volumes/My Passport"
NTFS backup:
sudo rsync -avhWd --progress --ignore-existing --exclude='System Volume Information' --exclude='$RECYCLE.BIN' sdb1/ Dagron/
NOTE: Use sudo to ensure directory times are transferred. Will fail to transfer time of root directory.
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'