安卓手机学linux命令 安卓手机安装linux可以干什么

android 中linux 命令pm常见用法(安装卸载app)27种用法格式:
用法说明安卓手机学linux命令:
1、 pm list packages : prints all packages, optionally only those whose package name contains the text in FILTER. Options:
例子安卓手机学linux命令:列出系统中所有packages
2、 pm list permission-groups : prints all known permission groups.
例子安卓手机学linux命令:
3、 pm list permissions : prints all known permissions, optionally only those in GROUP. Options:
例子安卓手机学linux命令:列出系统所有许可
4、 pm list instrumentation : use to list all test packages; optionally supplyto list the test packages for a particular application. Options:
-f: list the .apk file for the test package.
5、 pm list features : prints all features of the system.
例子:列出所有手机特性
6、 pm list users : prints all users on the system.
例子:
7、 pm path : print the path to the .apk of the given PACKAGE.
例子:按包名查找apk文件所在路径
8、 pm dump : print system state associated with the given PACKAGE.
9、 pm install : installs a package to the system. Options:
例子:
10、 pm uninstall : removes a package from the system. Options:
-k: keep the data and cache directories around after package removal. 保留数据
例子:
11、 pm clear : deletes all data associated with a package..
例子:只删除数据
12、 pm enable, disable, disable-user, disable-until-used : these commands change the enabled state of a given package or component (written as "package/class").
13、 pm grant, revoke : these commands either grant or revoke permissions to applications. Only optional permissions the application has declared can be granted or revoked.
14、 pm get-install-location : returns the current install location.
15、 pm set-install-location : changes the default install location.
NOTE: this is only intended for debugging; using this can cause applications to break and other undersireable behavior.
16、 pm trim-caches : trim cache files to reach the given free space.
17、 pm create-user : create a new user with the given USER_NAME, printing the new user identifier of the user. 创建新用户
18、 pm remove-user : remove the user with the given USER_IDENTIFIER, deleting all data associated with that user。按用户ID删除用户
安卓不是Linux系统么?请问如何在手机中执行linux命令 , 如ls、vi之类的?谢谢!安卓可不是LINUX,是谷歌支持发展起来的独立操作系统 。
虽然采用了Linux内核,但没有本地窗口 , 也不支持那些Linux的基础应用 。
如何在安卓手机或平板设备上运行Linux系统首先,关于linux,安卓手机学linux命令我们需要知道两个知识点,一个在linux系统下,安卓手机学linux命令我们可以将一个文件挂载为一个分区,也就是说如果我有一个磁盘镜像文件,我可以直接挂载为一个linux的分区;这一点与windows的虚拟光驱有点类似,但是在linux下 , 不仅是光盘镜像文件,所有的镜像文件都可以挂载为一个linux的分区;第二个知识点就是chroot,可能看到这个安卓手机学linux命令你就明白安卓手机学linux命令了本文讲的方法是如何从安卓设备运行linux系统的,如果还不明白的话,请继续往下看 。chroot 就是Change Root,也就是改变程序执行时所参考的根目录位置 。有了这两个知识就简单了 。
方法:首先启动安卓系统,然后将linux的系统镜像文件挂载为安卓系统的一个分区(所以设备必须支持Loop设备),然后通过chroot命令切换程序执行时所参考的根目录即可 。这样我们就可以使用系统镜像文件里的操作系统了 。
需要用到的几个软件:BusyBox Pro,Complete Linux Installer(内含终端模拟器 VNC安卓客户端和Linux镜像下载链接),适合于Arm的Ubuntu镜像 。这几个软件都可以从Google Play里下载到,其中BusyBox Pro是收费应用,网上应该也有免费的下载 , 可以搜一下 。另外Complete Linux Installer也带有BusyBox如果不想下载那个收费的,用这里带的或许也可以,但是可能会报告一个错误 。

推荐阅读