Re: [Oneiric-Topic] Nagios

2011-03-30 Thread Félim Whiteley
On Wednesday 30 March 2011 15:59:09 Chuck Short wrote: > Hi, > > I think we should re-evaluate if nagios is the monitoring solution we > want to support and if it easy make really really easy to deploy. > > chuck I'd have to put my +1 for getting Shinken (http://www.shinken-monitoring.org/) in

Re: mount external hard disrk impossible

2009-11-11 Thread Félim Whiteley
First check it is /dev/sdb by using dmesg Just after you have plugged it in. It may be /dev/sdc for instance. Next there is an error in your mount command as you are missing the partition. You can't mount a drive, you can only mount a partition, so assuming there is 1 partition you would use:

Re: MAC Address Change

2009-10-14 Thread Félim Whiteley
hi Michael, If you check the contents of udev rules (/etc/udev/rules.d/70-persistent- net.rules) You'll see some info like: SUBSYSTEM=="net", DRIVERS=="?*", ATTR{address}=="00:1c:23:85:bc:50", ATTR{type}=="1", NAME="eth0" It's map of your MAC address to the interface name, simply modifying the

Re: iptables init scripts

2009-10-02 Thread Félim Whiteley
I usually setup my /etc/network/interfaces file so loopback activates a iptables save file with: auto lo iface lo inet loopback address 127.0.0.1 netmask 255.0.0.0 up iptables-restore < /etc/network/iptables That way whether ethX is up/down the firewall is active. I just