Chinaunix首页 | 论坛 | 博客
  • 博客访问: 155043
  • 博文数量: 26
  • 博客积分: 1555
  • 博客等级: 上尉
  • 技术积分: 236
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-16 17:37
个人简介

我在互联网世界等候各位。。。。。

文章分类

全部博文(26)

文章存档

2015年(1)

2011年(4)

2010年(2)

2009年(19)

我的朋友

分类:

2009-11-03 13:31:23

The toolbox that is provided on the Android environment is pretty limited. I wanted something more useful and familiar. to the rescue!

I have a busybox for those who are interested.

To use it simply do # mkdir /data/busybox, on your emulated console. Then copy the busybox binary across: $ adb push busybox /data/busybox/busybox. Once you do this you can install the necessary hardlinks by doing: # cd /data/busybox; ./busybox --install. Once doing this you should have links to all the applets in the /data/busybox directory. To make this useful you probably want to put this into your PATH: # export PATH=/data/busybox:$PATH.

You should now be able to get access to all the useful busybox applets.

Update:busybox was a straight compile of the standard busybox 1.8.1 release. No changes were made to the source. Source code available or from the Busybox website.

阅读(1376) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-03-18 20:25:17

hi, i use busybox 1.8.1 made a busybox binary available ,it's success. But, when i use ./busybox --install in Android,the install path not /data/busybox, it's /bin and /Sbin. Can you help me? thanks?