User Tools

Site Tools


software:openwrt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:openwrt [2012/02/28 09:12] Michele Porellisoftware:openwrt [2020/07/05 06:36] (current) – [Other] Michele Porelli
Line 5: Line 5:
   * make -j 3 -> Building on multicore systems (eg. 3 processes)   * make -j 3 -> Building on multicore systems (eg. 3 processes)
 ===== How-Tos ===== ===== How-Tos =====
 +==== Packages related ====
   * [[http://wiki.openwrt.org/doc/howto/build|Build OpenWRT and packages]]   * [[http://wiki.openwrt.org/doc/howto/build|Build OpenWRT and packages]]
 +  * [[https://github.com/cokebar/openwrt-vlmcsd|vlmcsd]]
 +  * Upgrade all the packages
 +    * [[https://github.com/tavinus/opkg-upgrade|opkg-upgrade]]
 +    * manual method:<code>#!/usr/bin/env sh
 +opkg update
 +for p in $(opkg list-upgradable); do
 +  if [ "$p" != "-" ]; then
 +    if [ "$(echo ${p:0:1} | sed -e 's/[0-9]//')" != "" ]; then
 +      echo "upgrading $p"
 +      opkg upgrade $p
 +    fi
 +  fi
 +done</code>
 +  * Re-install packages after upgrade: [[https://forum.openwrt.org/t/how-to-keep-packages-settings-after-upgrading/38998|1]]
 +==== Other ====
   * [[http://arctic-things.blogspot.com/2008/01/internet-gateway-openvpn-openwrt-on.html|Internet Gateway with OpenVPN]]   * [[http://arctic-things.blogspot.com/2008/01/internet-gateway-openvpn-openwrt-on.html|Internet Gateway with OpenVPN]]
   * [[http://wiki.openwrt.org/doc/howto/extroot|Boot from external flash/disk]]   * [[http://wiki.openwrt.org/doc/howto/extroot|Boot from external flash/disk]]
   * Multi-WAN Load Balancing - [[http://wiki.openwrt.org/doc/uci/multiwan|wiki]] and [[https://forum.openwrt.org/viewtopic.php?id=23904|forum topic]]   * Multi-WAN Load Balancing - [[http://wiki.openwrt.org/doc/uci/multiwan|wiki]] and [[https://forum.openwrt.org/viewtopic.php?id=23904|forum topic]]
 +  * [[https://forum.openwrt.org/viewtopic.php?id=29352|Announce multiple gateways via DHCP]]
 +  * Useful [[https://github.com/richb-hanover/OpenWrtScripts|set of scripts]]
 ===== Fixes ===== ===== Fixes =====
   * [[https://dev.openwrt.org/ticket/7078|Error opening terminal:]] - libncurses, terminfo and alternate install destination   * [[https://dev.openwrt.org/ticket/7078|Error opening terminal:]] - libncurses, terminfo and alternate install destination
 +===== Guides =====
 +  * [[http://blog.philippklaus.de/2011/04/openwrt-on-a-tp-link-tl-wr1043nd-gigabit-router/|Quick dummies guide for OpenWRT by Philipp Klaus]]
 +
  
software/openwrt.1330416761.txt · Last modified: 2012/09/04 16:09 (external edit)