WordPress database error: [Disk got full writing 'information_schema.(temporary)' (Errcode: 28 "No space left on device")]
SHOW FULL COLUMNS FROM `mb_options`


Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896

Warning: Cannot modify header information - headers already sent by (output started at /var/www/wordpress.matbra.com/wp-includes/class-wpdb.php:1851) in /var/www/wordpress.matbra.com/wp-includes/rest-api/class-wp-rest-server.php on line 1896
{"id":298,"date":"2009-06-06T03:10:07","date_gmt":"2009-06-06T06:10:07","guid":{"rendered":"http:\/\/wordpress.matbra.com\/?p=298"},"modified":"2010-07-25T21:38:27","modified_gmt":"2010-07-26T00:38:27","slug":"instalar-e-configurar-servidor-dhcp","status":"publish","type":"post","link":"https:\/\/wordpress.matbra.com\/en\/2009\/06\/06\/instalar-e-configurar-servidor-dhcp\/","title":{"rendered":"Install and Configure DHCP server in Ubuntu"},"content":{"rendered":"

Good night,<\/p>\n

If you want to install DHCP server in Ubuntu, use<\/p>\n

$ sudo apt-get install dhcp3-server<\/p>\n

And then edit \/etc\/dhcp3\/dhcpd.conf I commented all lines and add this ones: <\/p>\n

\nINTERFACES=”eth1″; # INTERFACE CONECATADA AO MEU ROTEADOR
\nddns-update-style none;
\ndefault-lease-time 600;
\nmax-lease-time 7200;
\nauthoritative; # DHCP PRINCIPAL DA REDE<\/p>\n

subnet 192.168.0.0 netmask 255.255.255.0 {
\n range 192.168.0.100 192.168.0.150; # FAIXA DE IPS A SER DISTRIBUIDA
\n option routers 192.168.0.254; # GATEWAY
\n option domain-name-servers 200.247.141.11; # SERVIDOR DNS
\n option subnet-mask 255.255.255.0; # MASCARA DE SUBREDE
\n option broadcast-address 192.168.0.255; # ENDERE\u00c7O DE BROADCAST
\n default-lease-time 600;
\n max-lease-time 7200;
\n}\n<\/p><\/blockquote>\n

Restart eh DHCP server: <\/p>\n

$ sudo \/etc\/init.d\/dhcp3-server restart <\/p>\n

See you,
\nMatheus<\/p>\n

Reference:
\nGoogle + DHCP SERVER UBUNTU<\/a>
\n<\/p>","protected":false},"excerpt":{"rendered":"

Good night, If you want to install DHCP server in Ubuntu, use $ sudo apt-get install dhcp3-server And then edit \/etc\/dhcp3\/dhcpd.conf I commented all lines…<\/p>\n