Tagged Questions
BusyBox is a single executable implementation of the common UNIX utilities that has been optimized for minimal size.
5
votes
3answers
5k views
Ash (shell provided by busybox) tutorial
I found that the busybox's ash syntax is different from the other standard shells (sh, bash, tcsh).
Is there any documentation of its syntax or a tutorial for ash ?
2
votes
2answers
74 views
Match Substring from Command Output
There are some close candidates for this question having already been answered, and I've tried several methods of trying to solve the issue. Specifically, my scenario is this:
I have an array of ...
2
votes
3answers
435 views
Writing a binary file in shell (shell, awk)
My problem is that I need to create a file with this exact bytes: 48, 00, 49, 00
I cannot use C (since I cannot deploy anything, no perl, no other scripting language. I tried this using awk, and in ...
2
votes
2answers
134 views
syncing a shell script with kernel operations
For stopping activity in my embedded Linux system, I have the following shell script (interpreted by busybox):
#!/bin/sh
pkill usefulp_program
swapoff /home/.swapfile
umount -l /home
sleep 3 # While ...
2
votes
2answers
1k views
pushing busybox into android emulator
I've downloaded the source for mips android and have done a "make" and got the emulator running. I want to push the busybox into the emulator. I've downloaded the static compiled busybox binary. Under ...
2
votes
1answer
571 views
How to interface with shell (BusyBox) in Android App
I want to send commands to (and receive output from) the Android shell (BusyBox) from a standard Android App. How would I go about doing this? 1 hour of googling yielded no result.
Help very ...
2
votes
2answers
147 views
Avoiding jagged text when pasting into vi?
Although I have no problem using SecureCRT (5.1.2 build 274) to work from Windows and connect to PC's running Linux, I have a problem when connecting to an embedded Asterisk appliance that ...
2
votes
3answers
2k views
How do you change a user password in a script with busybox and openssl?
I need to synchronize a user account and password to an external source on a system with busybox and openssl installed. When the external source tells my system to update credentials, how do I change ...
2
votes
4answers
262 views
How do I get $(/bin/printf -6) to return -6 and not think -6 is an option
I have a bash shell script which has the line:
g=$(/bin/printf ${i})
when ${i} contains something like -6, printf thinks its being passed an option. It does not recognize the option so produces an ...
2
votes
3answers
1k views
busybox sh wrapper to add extra functionality
I need a simple busybox sh wrapper which will do:
IF "-Q" PARAMETER IS PROVIDED THEN
acommand ALL PARAMETERS BUT "-Q" 2>&1 1>/dev/null
ELSE
acommand ALL PARAMETERS
FI
...
1
vote
1answer
29 views
Check for valid number in busybox?
I am trying to do a script where i need to check if the user input is valid. I just can't figure it out. Have been trying different ways but can't find a solution. So if there are a busybox ash guru ...
1
vote
1answer
406 views
Android Install apk using busybox command-line
I want to install apk silently in android phone, I have found this solution (Link), is how to install apk using busybox command line, but when i tape busybox install path/to/apkfile, it does not ...
1
vote
2answers
157 views
How to generate random numbers in the BusyBox shell
How can I generate random numbers using AShell (restricted bash)? I am using a BusyBox binary on the device which does not have od or $RANDOM. My device has /dev/urandom and /dev/random.
1
vote
1answer
50 views
Why an open descriptor is not closed on program exit?
I have a small program below on 2.6.16-rc3, which uses busy box (on jffs2 file system).
If I run the program multiple times, it starts to fail second time onwards . When the program quits, the ...
1
vote
2answers
206 views
printing previous field in AWK
I think awk will be the solution to my problem. My tools are limited b/c I'm using busybox on ESXi 4.0u1. I have a log file from a VM backup program (ghettoVCB). I need to scan this file for the ...
1
vote
1answer
124 views
Real-time display of `date` changes on Linux
On an embedded Linux device that does not present /dev/rtc*, how can I set off a console window writing the value of the Real-Time Clock to the console, on the tick, every time it changes?
Results ...
1
vote
2answers
215 views
Problem with configure script
I am running into a problem with the ./configure script for ffmpeg. My linux environment uses busybox, which only allows for limited set of linux commands. One command which is used in the ffmpeg ...
1
vote
1answer
753 views
dbus_bus_request_name (): Connections are not allowed to own the service
I built a root filesystem on arm. It should run dbus-daemon and avahi-daemon, but when I try to run avahi-daemon
$ dbus-daemon --system
$ avahi-daemon
I get this message:
Found user 'avahi' (UID ...
1
vote
2answers
144 views
catch the serial number from bootloader
I want to catch the serial number which has been written into the U-Boot environment.
Bootloader :U-boot 1.2
kernel:2.6.24
tool-chain:arm-linux-gcc-3.4.1
rfs :busybox-1.9.2
Creating 3 MTD partitions ...
1
vote
1answer
70 views
What is the L_* macro in busybox?
I am trying to cross-compile busybox but I am getting 'undefined reference' at the linking stage. Using nm, the symbol were in fact missing from the library file (libbb.a in my case.) Looking into ...
1
vote
2answers
578 views
busybox shell refuses to execute the particular line of script
I am using busybox shell to execute a script which the bash executes when i boot linux using the nfs. Please let me know the correct alternative for this line.
cur_major=$((0x`stat -c %t $dev ...
1
vote
1answer
36 views
Linux file installer for a file that runs on start up
My goal is to use a script that will install an executable file on Linux (Busybox variant). The target file should run when the computer starts, so in the rc.sysinit file, I'll have a line like the ...
1
vote
1answer
366 views
ASP.NET MVC Busy Box Implementation
I'm wondering if anyone has created a generic "busy box" type control for ASP.NET MVC. Basically something that popups (disables the screen) while the page loads (or redirects).
0
votes
0answers
30 views
smallest possible linux distribution [migrated]
I want to build a really small linux distribution which would be using busybox, possibly uClibc. In the beginning, just a ramfs would do. Plus, I dont mind not having a native toolchain. I went ...
0
votes
0answers
23 views
How to grep a text recursively on BusyBox 1.0? [migrated]
How can I find a file, which contains a text on a BusyBox 1.0, if grep -r does not work?
0
votes
3answers
62 views
Alternatives to xargs -l
I want to rename a bunch of dirs from DIR to DIR.OLD. Ideally I would use the following:
find . -maxdepth 1 -type d -name \"*.y\" -mtime +`expr 2 \* 365` -print0 | xargs -0 -r -I file mv file ...
0
votes
0answers
36 views
I wanna ask how to make filesystem rfs to ext4 for data space in SGS
I made already script for making rfs to ext4 filesystem.
But the script have to use busybox ..
So what it's important is how to use busybox in init.rc...
I don't know how I can use some script ...
0
votes
0answers
23 views
making busybox compile by disabling nfs
I am trying to build an SDK . The compilation of busybox fails during building.
util-linux/lib.a(mount.o): In function `xdr_fhstatus':
mount.c:(.text.xdr_fhstatus+0xd): undefined reference to ...
0
votes
0answers
20 views
Python2.5, smtplib and KeyError
I'm trying to write a python script for BusyBox on ESXi with mail functionality. It runs Python 2.5 with some libraries missing (i.e. the smtplib). I downloaded Python2.5 sources and copied the ...
0
votes
5answers
91 views
How do I sed/grep the last word in a filename?
I have a couple of filenames for different languages. I need to grep or sed just the language part. I am using gconftool-2 -R / and want to pipe a command to bring out just the letters with the ...
0
votes
2answers
64 views
How do I set new line with a sed using c\?
I am feeling stupid but have tried multiple ways of having new line in my script. I got help from Jonathan with a sed command. It worked great but the formatting is lost and now I can't find a way to ...
0
votes
2answers
63 views
How to substitute a paragraph in file?
I want to change more than a line of a file. It is a CSS file and I want to swap out a section to another.
This is a snippet from the file:
/*** Debugging ***/
draw-button-bounding-rects: ...
0
votes
1answer
48 views
How do i achieve “read -i” in a different way?
I Have been looking on the internet but without finding a solution (hard to know what to serach for). I want a way to show "current value" on an input. Similar to what read -e -p "something: " -i ...
0
votes
0answers
51 views
mdev racing when creating and deleting device node
Recently, I used to mdev to replace udev. Comparing to udevd, mdev really save much memory usage. The configuration is as follow:
in /etc/mdev.conf, if the device matched against sd[a-z][0-9], the ...
0
votes
0answers
43 views
Installing Xfbdev on an initramfs
I hope this isn't a stupid question.
I've got a kernel and an initramfs containing busybox (all booting ok). Im trying to install/run Xfbdev, i thought it may have been a case of simply running the ...
0
votes
0answers
102 views
How to send a file via FTP in android adb shell?
How to send a file via FTP in android adb shell ?
I have installed busybox. I want to recieve a file from a FTP server in adb shell.These much of commands are supporting.
Somebody please help..?
0
votes
0answers
29 views
How efficient is a pipeline of Busybox applications?
If I have use Busybox as cat and grep and I do something like:
cat <somefile | grep foo
(Yes, I know that's a stupid example.) Does the Busybox binary get loaded into memory twice (once as cat, ...
0
votes
0answers
262 views
Android superuser access from my application
I'm writing an application that should modify some files it doesn't have access to: another application's database, default.prop, etc.
Currently, it is done with "su" request and temporary "chmod ...
0
votes
0answers
59 views
listview display ls /system/app
ok, so this is my first app and i am trying to create a toolbox for root users. i am able to send terminal commands from my app. what i want to know is how i would list the applications in /system/app ...
0
votes
0answers
262 views
busybox top vs procps top
Someone told me that procps top has more accurate result compared with busybox ps. Can anyone explain what does this means?
0
votes
1answer
102 views
int depth UNUSED_PARAM
static FAST_FUNC int fileAction(const char *pathname,
struct stat *sb UNUSED_PARAM,
void *modname_to_match,
int depth UNUSED_PARAM){...}
what does "int depth UNUSED_PARAM" mean ?
0
votes
1answer
308 views
busybox install a script
I'm sure this is simple but I just don't know how to do it...
I have a script for busybox on an embedded system which I would like to run but I don't know how to run a script
I can log in to busybox ...
0
votes
0answers
566 views
chroot using busybox
I am facing some problem which performing chroot using busybox.
Descriptio: I create a sparse file of 1GB and then formatted it into ext3 filesystem. Then mounted that directory as a loop back device ...
0
votes
1answer
614 views
use fw_printenv for get U-boot's env
I want to use fw_printenv for get U-boot's env.
$cat /proc/mtd
mtd0: 00060000 00004000 "bootloader"
mtd1: 00200000 00004000 "kernel"
mtd2: 03c00000 00004000 "root"
and
$vi /etc/fw_env.config
# ...
0
votes
1answer
988 views
how can use crontab on busybox?
I try to run crontab. The file can action some mission.
The env is arm9 and rootfilesystem is busybox 1.9
But I get some questions.
write into /etc/rc.local
/usr/sbin/crond
And enter
$ crontab ...
0
votes
1answer
722 views
Is it possible to gain root and/or install BusyBox on the Android Emulator?
It'd be nice to have the "Swiss Army knife" of BusyBox on my emulator. It would also be nice to have full root access. Does anyone have any experience doing this? I'm not familiar with qemu; is ...
0
votes
1answer
401 views
My busybox does not execute non-applet utility commands
I installed the latest busybox to my new embedded project. It runs OK until I try to put dropbear in my application. The busybox shell complains that dropbear is not found although "which dropbear" ...