|
/Admin/commandLine:
Find & process files & directories
Find files ending in ".db", in and below the current directory:
find . -name "*.db" -print | xargs /bin/ls -al
find . -name "*.db" -print | xargs /bin/rm -f
Files last modified more then thirty days ago, in a specified directory:
find /home/userid/trash_* -mtime +30 -type f -exec rm -rf {} \;
Remove empty directories:
find /path/to/base/directory -type d -empty -delete
Find files with a particular name:
find . -type f -name "*unison.tmp-bad" -exec ls -alht {} \; | less
Calculate the size of files found by "find":
find . -type f -name "*unison.tmp-bad" -exec ls -l {} \; | awk '{ s+=$5 } END { print s }'
posted at: 12:22 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Logging to the System Log
This is actually more of a scripting thing, but what is a bash script except a collection of command lines....
To send a bit of text to /var/log/syslog:
logger Hello logging world!!
If you wish the output of a particular line in the script to be logged:
mysql -V | logger
will send the MySQL version to syslog. If you wish to also capture errors (STDERR) output, this will do it:
mysql < /path/to/a/sql/script.sql 2>&1 | logger
will send both script and error output to syslog.
posted at: 09:55 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Search and Replace with VI
This seems to be really easy to forget:
:%s/old-string/new-string/g
will replace every occurance of old-string in the file with new-string. You can of course do more complicated things[1].
[1] http://www.cyberciti.biz/faq/vi-vim-editor-search-and-replace-howto/
posted at: 06:00 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
User Group Management
To find out what groups a user belongs too:
groups username
The easiest way to add a group to a user:
adduser username groupname
However, this does not work on all Linux distributions (CentOS?). A more general method:
usermod -a -G groupname username
posted at: 02:29 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Find What is Listening on a Port
netstat -tulpn | grep ls -l /proc/ /exe
posted at: 04:13 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Send E-mail From the Command Line
echo "This will go into the body of the mail." | mail -s "Hello world" you@youremail.com
This also works well in a cron job.
posted at: 04:08 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Search & Replace Text in multiple files and subdirectories
perl -e "s/OLDSTRING/NEWSTRING/g;" -pi.save $(find /path/to/directory/to/be/searched -type f)
grep -rl OLDSTRING . | xargs perl -pi~ -e 's/OLDSTRING/NEWSTRING/'
Note that "." above seems to include hidden files. Replace "." with "*" and hidden files are not included.
posted at: 04:07 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Search for multiple strings with egrep
(In this case, searching a file system for multiple blocks of IP addresses.)
nice ionice -c3 egrep -r '221\.122\.43\.(98|99|100)|221\.122\.48\.(98|99|100|101|102|103|104|105|107)|124\.205\.43\.(98|99|100|101|102|103|104|105|106|107|108|109|110)' /
posted at: 04:04 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Screen: An Easy Way to Open Multiple Terminals on a Linux Server
I have been hearing buzz about the "screen"[1] utility for some time, and having tried it, I am now a serious devotee. Wish I had looked at it earlier....
Screen basically gives access and control of multiple terminal sessions in one open SSH session to a server. Ie. instead of using SSH to login to a server from multiple terminals, just use one terminal and invoke "screen" once logged in.
Screen becomes useful with only a very short list of keystrokes:
Ctrl-a c - create a new "screen"
Ctrl-a n - cycle to the next "screen"
Ctrl-a p - cycle to the previous "screen"
Ctrl-a d - detach from screen program, which continues to run in background
Ctrl-a [ - permit scrolling through the terminal's history buffer
Ctrl-c - exit scroll mode and return to command mode
If you only have two or three "screens" open, that is about all you really need.
Killer Feature #1: No More Clobbered SSH Sessions
If you detach from screen and logout, or are forcibly detached by an interrupted SSH session, screen continues to run on the server in the background. That means, for instance, that you can allow a big file transfer to continue on the server without needing an open SSH session. Or, in the case of a network problem resulting in an interrupted SSH session, just log back into the server, and enter:
screen -r -d
to be returned to all your screen session, with all your open terminals, EXACTLY THE WAY YOU LEFT THEM. No more having to navigate back to where you were before. Absolutely indispensable in the crappy excuse for a network we have here in China.
Killer Feature #2: Terminal Sharing!!
Sharing your terminal (both input and output) is simple with screen, as long as both people can SSH into the server and su to the same user:
First one person starts screen, then the other person su's to the same username on the server and attaches to the other screen session as follows:
screen -x
And now both people are looking at exactly the same screen / terminal session, and both can type into that terminal. Sometimes when the second person tries to attach, there is an error message like the following:
Cannot open your terminal '/dev/pts/3' - please check.
To fix, just chmod the file /dev/pts/3 to make permissions more permissive.
[1] http://savannah.gnu.org/projects/screen
posted at: 05:09 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Copying Directories Between Machines
When copying directories between two servers, there are two main candidates to choose from:
scp -rp apache2/ root@server.com:/etc/
rsync -avz -e ssh apache2 root@server.com:/etc/
| rsync | scp |
| fast | slow |
| does well over poor network | does poorly |
| requires rsync and ssh servers installed on both ends | only requires ssh server |
| preserves sym links | does not |
| can continue an interrupted transfer | must start from scratch |
| be careful to use ssh tunnel for secure tranfer | all transfers encrypted |
With rsync also be careful about the source specification. "apache2" will create an apache2 directory in the destination /etc/. But "apache2/" will copy the files contained within apache2 into the destination /etc/. You want the former.
posted at: 12:50 | path: /Admin/commandLine | permanent link to this entry
/Admin/commandLine:
Difficulty Unmounting
When unmounting a partition / device, for example
umount /media/thumb
One might encounter a "busy" error, which indicates some process is still using the partition in question. To perhaps find out who / what is using the partition and do something about it:
lsof | grep '/media/thumb'
And as a last resort, kill all process accessing the partition:
fuser -km /media/thumb
umount /media/thumb
posted at: 10:07 | path: /Admin/commandLine | permanent link to this entry