linux
crontab -e: I can't use the default editor!
Submitted by diego on Thu, 17/01/2008 - 14:21. linux | bashUsually we use crontab -e command, while logged in as a user, to modify the user's cron jobs or crontab -e -u[user] as root.
The editor used fot this depends on the system variable VISUAL or EDITOR (if present) else the default editor will be used /usr/bin/editor.
So if the default editor is a not well known program (take "VI" as an example, even if you use the more user friendly "VIM"...), you can modify the suggested system variables if present, to verify:
set | grep -iE '(visual)|(editor)'
grep, cut, awk, sort, uniq... linux shell power!
Submitted by diego on Wed, 16/01/2008 - 15:54. linux | bashHow powerful can be linux shell? This is just an other nice example of the power of linux shell!
Well, this is the game: suppose to need on a remote machine to count how many times an ip address (or user or whatever you want) is used in a log file or a part of it.
Let's take a sample log: Apache access log.
The format is something like (see attached example log file):
1.1.1.1 - - [16/Jan/2008:22:18:42 +0100] "GET /dir/pag.htm" 200 11 "http://diegobelotti.com/a.php" "Mozilla 5 (Windows..) Firefox"
Keep the time and date of your Linux box always up to date
Submitted by diego on Tue, 30/10/2007 - 14:17. linux | bashThe attached file is a simple bash script, to correct the date and time of your linux box (binaries paths are relative to a Debian Etch).
Prerequisites
- ntpdate: apt-get install ntpdate
- ntpd stopped: if you have a ntp daemon running you don't need this script
- port 123 (UDP) opened
- user permission: the user that run the script must have the permission to set up the clock
What the script does
Debian and MySql 5: where has 'debian-log-rotate.conf' file gone?
Submitted by diego on Tue, 31/07/2007 - 12:02. linux | mysqlIn a Debian standard installation of MySql 4, binary logs are purged automatically. The file /etc/mysql/debian-log-rotate.conf is needed to tell logrotate how many log files to keep.
Starting from MySql 5, purging of binary logs is done directly by MySql so there is no more need of debian-log-rotate.conf and the rotation is configured in the my.cnf file with the following entry:
expire_logs_days = 30 # WARNING: Using expire_logs_days without bin_log crashes the server! See README.Debian!
Easy find and replace with perl
Submitted by diego on Mon, 25/06/2007 - 13:14. linux | bashIf you need an easy way to find and replace a string in one or more text files (php script, bash script, perl script or just text) using only a command, may be that the following is the easiest way:
find . -name '[PATTERN]' |xargs perl -pi -e 's/[NEEDLE]/[REPLACESTR]/g'
Example: if you are in the folder where you usually store you alert script, that send email on certain events, and you want to replace the previous email with the new one you can type
find . -name '*.php' |xargs perl -pi -e 's/oldemail@domain.tld/newemail@domain.tld/g'
DONE!




