Entradas com Tag ‘internet’
Some time ago I was killing time viewing a famous anonymous image board, when I saw an extremely interesting image. At the moment I didn’t think twice: I saved the image on my machine and then showed to some friends.
When I was going to post on fotolog, I realized that something was missing. Maybe the [...]
Este shell-script verifica se uma máquina está conectada na rede, e caso não esteja, reconecta-se de alguma forma. Para funcionar, além do script é necessário também o agendador de tarefas crontab.
O script, checkConn.sh:
#!/bin/bash
#
# IP de Teste
TEST_IP=”74.125.47.147″
# UDHCPC
UDHCPC=/sbin/udhcpc
if ! `ping -c1 $TEST_IP > /dev/null 2>&1`; then
$UDHCPC -i eth0 -q
else
exit 0
fi
O [...]
Yesterday I was talking with a friend from my university, when suddenly he did the question:
- Did you see the Yahoo Eclipse?
- Hummmm… no… – I began thinking about Eclipse, the development software, but in a few seconds I dropped the idea – What is it?
- This saturday, Yahoo will make a Lunar Eclipse on [...]
Ontem eu estava conversando com um amigo meu da faculdade, quando de repente ele me chegou com a pergunta:
- Já viu o Yahoo Eclipse?
- Hummmm… não… – comecei a pensar no Eclipse, o software de desenvolvimento, mas descartei a idéia em alguns segundos – O que é?
- Sábado o Yahoo vai fazer um Eclipse Lunar [...]
Uma das coisas que o Linux faz melhor é compartilhar uma conexão Internet, seja ela discada ou fixa, com outros computadores em uma rede. Além de compartilhar bem, pode dar até segurança adicional através de um firewall. Este tutorial traz o básico para quem quiser compartilhar sua conexão com uma rede local.




