top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Do Android have command line like linux?

+4 votes
232 views
Do Android have command line like linux?
posted Feb 2, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

can use terminal emulator
https://play.google.com/store/apps/details?id=jackpal.androidterm&hl=en

Android, while running the Linux kernel, Does not contain the GNU user land
This means you do not have access to the standard set of tools available in most linux distrobutions like Ubuntu or Debian.
https://www.gnu.org/philosophy/android-and-users-freedo...

Instead most Android devices provide BusyBox, which replaces *most* common utilities.
http://www.busybox.net/about.html

There are lots of terminal Emulators that interface with BusyBox.
https://play.google.com/store/search?q=terminal%20emula...

answer Feb 7, 2016 by Shivam Kumar Pandey
Similar Questions
+1 vote

Is it possible to run a linux application on android platform....

+3 votes

I want to know if there is a way to some settings to be used by framework services such as ActivityManagerService of WindowManagerService like apps can do with preferences. They should be able to store some of their variables into some persistent storage and read them at bootup.

Currently, I found only the xml files in res/res folder but this is editable only at compile time.

...