
Finalmente saiu o trailer do Big Buck Bunny (antigo Peach).
Para quem não conhece, trata-se da primeira animação a ser totalmente produzida usando uma ferramenta livre, mais especificamente o Blender.
Não perca mais tempo e veja o trailer aqui.
Site sobre Software Livre e Open Source. Dicas e informações sobre XMPP, Asterisk, Postfix, Apache, Samba, LDAP entre outros.




------------------------------------------------------------------------
The Debian Project http://www.debian.org/
Security Support for Debian 3.1 to be terminated press@debian.org
February 29th, 2008 http://www.debian.org/News/2008/20080229
------------------------------------------------------------------------
Security Support for Debian GNU/Linux 3.1 to be terminated on March 31st
One year after the release of Debian GNU/Linux 4.0 alias 'etch' and
nearly three years after the release of Debian GNU/Linux 3.1 alias
'sarge' the security support for the old distribution (3.1 alias
'sarge') is coming to an end next month. The Debian project is proud
to be able to support its old distribution for such a long time and
even for one year after a new version has been released.
The Debian project has released Debian GNU/Linux 4.0 alias 'etch' on
the 8th of April 2007. Users and Distributors have been given a
one-year timeframe to upgrade their old installations to the current
stable release. Hence, the security support for the old release of
3.1 is going to end in March 2007 as previously announced.
Previously announced security updates for the old release will continue
to be available on security.debian.org.
Se você usa o VMPlayer e não sabe como fazer para criar suas VMWares "do zero", o site EasyVMX! foi feito para você.
#!/bin/sh -e
# vim:ts=4:sw=4:et:ai:sts=4
#
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/sbin/vtund
CONFFILE=/etc/vtund.conf
PIDPREFIX=/var/run/vtund
test -f $DAEMON || exit 0
test -f $CONFFILE || exit 0
test -f /etc/default/vtun && . /etc/default/vtun
case "$1" in
start)
if [ -f /etc/vtund-start.conf ]; then
echo "/etc/vtund-start.conf has been replaced!"
echo "Please read /usr/share/doc/vtun/NEWS.Debian"
fi
if [ -n "$RUN_SERVER" ] && [ "$RUN_SERVER" != no ]; then
echo -n "Starting vtund server: "
start-stop-daemon --start --startas $DAEMON --oknodo \
--pidfile $PIDPREFIX.server.pid -- -s $SERVER_ARGS
echo "vtund[s]."
fi
for i in 0 1 2 3 4 5 6 7 8 9; do
eval name=\$CLIENT${i}_NAME
eval host=\$CLIENT${i}_HOST
eval args=\$CLIENT${i}_ARGS
if [ -n "$name" ] && [ -n "$host" ]; then
echo -n "Starting vtund client $name to $host: "
start-stop-daemon --start --startas $DAEMON --oknodo \
--pidfile $PIDPREFIX.$name-$host.pid -- $name $host $args
echo "vtund[c]."
fi
done
;;
stop)
echo "Stopping vtund."
for i in $PIDPREFIX*.pid; do
test -f "$i" || continue
start-stop-daemon --oknodo --stop --pidfile $i
rm -f $i
done
;;
reload|force-reload)
echo "Reloading vtund.";
for i in $PIDPREFIX*; do
test -f "$i" || continue
start-stop-daemon --oknodo --stop --signal 1 --pidfile $i;
done
;;
restart)
$0 stop
sleep 1;
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac
exit 0
# Session name
CLIENT0_NAME=suasessao
#
# Destination host
CLIENT0_HOST=seuservidor
#
# Optional parameters
# CLIENT0_ARGS=