LEDE (Linux Embedded Development Environment) - first steps

Published on Author admin

First steps with LEDE - Linux Embedded Development Environment. Setting MAC address cloning for WAN network interface. config file: /etc/config/network config device 'wan_dev'     option name 'eth0.2'     option macaddr 'XX:XX:XX:XX:XX:XX' Setting port forwarding (Destination NAT). config file: /etc/config/firewall config redirect     option target 'DNAT'     option src 'wan'    … Continue reading LEDE (Linux Embedded Development Environment) - first steps

Using WordPress CLI

Published on Author admin

Using WordPress CLI for managing WordPress instance. Download WordPress CLI: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Check it: php wp-cli.phar --info Make it executable: chmod +x wp-cli.phar sudo mv wp-cli.phar /usr/local/bin/wp Check it: wp --info Update WP CLI tool: wp cli update Upgrade WordPress using WP CLI: sudo -u apache /usr/local/bin/wp core update --path=/path/to/wordpress/ List WordPress plugins: sudo… Continue reading Using WordPress CLI