Skip to content
This repository has been archived by the owner on Apr 27, 2020. It is now read-only.

Update BusyBox

牧瀬紅莉栖 edited this page Aug 1, 2015 · 4 revisions

More is more.

If you haven't notice, we just used 5 different Linux utilities: ping, telnetd, sh, mount, and echo. However, we are actually calling one binary and that is BusyBox. BusyBox is commonly used in embedded devices to provide a lot of Linux utilities. We can upgrade BusyBox to get more functionalities, at a cost of a longer boot time and larger file.


In your root shell, run following commands:

  1. wget http://www.busybox.net/downloads/binaries/latest/busybox-mips

  2. ./busybox-mips rm /bin/busybox

  3. ./busybox-mips cp ./busybox-mips /bin/busybox

  4. busybox --install

  5. rm ./busybox-mips

Clone this wiki locally