After two years of intense work, the Debian project has published a new stable release.
Debian can be downloaded from: http://deb.li/squeeze
Some changes:
– arm arch. will be no more supported
[Read more…]
After two years of intense work, the Debian project has published a new stable release.
Debian can be downloaded from: http://deb.li/squeeze
Some changes:
– arm arch. will be no more supported
[Read more…]
Parsing kernel orgs changelogs can be a pain.
Here’s a handy one-liner to make it easier to read:
1 | wget --quiet -O - http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.37 | grep -A 4 ^commit | grep -B 1 "^--" | grep -v "^--" |
wget --quiet -O - http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.37 | grep -A 4 ^commit | grep -B 1 "^--" | grep -v "^--"
You should become human readable output like this one:
1 2 3 4 5 6 7 | perf: Remove unused variable x86, bios: By default, reserve the low 64K for all BIOSes mlx4_en: Fix build warning in mlx4_en_create_rx_ring. mlx4_en: updated driver version mlx4_en: Moving to work with GRO mlx4_en: UDP RSS support mlx4_en: reconfiguring mac address. |
perf: Remove unused variable x86, bios: By default, reserve the low 64K for all BIOSes mlx4_en: Fix build warning in mlx4_en_create_rx_ring. mlx4_en: updated driver version mlx4_en: Moving to work with GRO mlx4_en: UDP RSS support mlx4_en: reconfiguring mac address.
The best uses I’ve found for the SIGSTOP and SIGCONT signals are times when a process goes haywire, or when a script spawns too many processes at once.
Usage Examples for both signals:
1 2 | kill -SIGSTOP [pid] kill -SIGCONT [pid] |
kill -SIGSTOP [pid] kill -SIGCONT [pid]
Very nice overview about all Debian releases:
Debian 8.0 Jessie
Debian 7.0 (coming 2013) Wheezy
Debian 6.0 (Latest Stable) 6 February 2011 Squeeze
Debian 5.0 14 February 2009 Lenny (5.0.7)
Debian 4.0 8 April 2007 Etch
Debian 3.1 6 June 2005 Sarge
Debian 3.0 19 July 2002 Woody
Debian 2.2 15 August 2000 Potato
Debian 2.1 March 9th, 1999 Slink
Debian 2.0 July 24th, 1998 Hamm
Debian 1.3 June 5th, 1997 Bo
Debian 1.2 December 12th, 1996 Rex
Debian 1.1 June 17th, 1996 Buzz
Debian 1.0 Never released –
Debian 0.93R6 November 1995 –
Debian 0.93R5 March 1995 –
Debian 0.91 January 1994 –
Debian 0.01 through 0.90 August-December 1993 –
Fail2ban monitors log files like /var/log/auth.log and Webserver access logs and can temporarily or persistently bans failure-prone addresses by updating existing firewall rules.
Currently, by default, fail2ban supports ssh/apache/vsftpd but configuration can be easily extended for monitoring any other ASCII file.
[Read more…]