| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 移动开发 -> ubuntu16.04下Android10.0源码编译环境搭建 -> 正文阅读 |
|
[移动开发]ubuntu16.04下Android10.0源码编译环境搭建 |
1、安装ubuntu 16.04.6 LTS操作系统。ubnutu官网下载系统镜像。 安装ssh。sudo apt-get install openssh-server 2、替换ubuntu系统更新源为阿里源/etc/apt/sources.list # deb cdrom:[ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted 3、安装以下软件python3.6安装方法 sudo apt-get install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update sudo apt-get install python3.6 ------------------------ sudo apt-get install openjdk-8-jdk sudo apt-get install git sudo apt-get install git-core? 4、SAMBA配置安装 sudo apt-get install samba sudo apt-get install samba-common 修改配置文件/etc/samba/smb.conf [homes] ?? comment = Home Directories ?? browseable = no # By default, the home directories are exported read-only. Change the # next parameter to 'no' if you want to be able to write to them. ?? read only = no # File creation mask is set to 0700 for security reasons. If you want to # create files with group=rw permissions, set next parameter to 0775. ?? create mask = 0755 # Directory creation mask is set to 0700 for security reasons. If you want to # create dirs. with group=rw permissions, set next parameter to 0775. ?? directory mask = 0755 添加home下的某个用户 sudo smbpasswd -a user #user为添加的用户名,输入命令后需要设置密码,输入两次设置的密码 重启 sudo service smbd restart 现在可以用win10映射用户目录到网络磁盘 5、下载Android源码AOSP 镜像使用帮助 初始同步方法 1 第一次同步数据量特别大,如果网络不稳定,中间失败就要从头再来了。所以我们提供了打包的 AOSP 镜像,为一个 tar 包,大约 100G(单文件 100G,注意你的磁盘格式要支持)。这样你 就可以通过 HTTP(S) 的方式下载,该方法支持断点续传。 下载地址?https://mirrors.ustc.edu.cn/aosp-monthly/ 请注意对比 checksum。 然后根据下文 已有仓库如何改用科大源 的方法更改同步地址。 解压后用命令 repo sync 就可以把代码都 checkout 出来。 Note: tar 包为定时从?https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/?下载。 初始同步方法 2 按照 Google 官方教程?https://source.android.com/source/downloading.html 将? 具体做法摘录如下: 首先下载 repo 工具。 mkdir ~/bin PATH=~/bin:$PATH curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo ## 如果上述 URL 不可访问,可以用下面的: ## curl -sSL 'https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT' |base64 -d > ~/bin/repo chmod a+x ~/bin/repo 然后建立一个工作目录(名字任意) mkdir WORKING_DIRECTORY cd WORKING_DIRECTORY 初始化仓库: repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest ## 如果提示无法连接到 gerrit.googlesource.com,可以编辑 ~/bin/repo,把 REPO_URL 一行替换成下面的: ## REPO_URL = 'https://gerrit-googlesource.proxy.ustclug.org/git-repo' 如果需要某个特定的 Android 版本(Android 版本列表): repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-4.0.1_r1 同步源码树(以后只需执行这条命令来同步): repo sync 已有仓库如何改用科大源 如果您已经从官方同步了 AOSP 仓库,现在希望使用科大的 AOSP 仓库,请修改 url = https://android.googlesource.com/platform/manifest 修改成 url = git://mirrors.ustc.edu.cn/aosp/platform/manifest 即可。 通过 HTTP 协议同步 如果由于某种原因不能通过 git 协议同步,请修改? url = git://mirrors.ustc.edu.cn/aosp/platform/manifest 修改成 url = http://mirrors.ustc.edu.cn/aosp/platform/manifest 不推荐使用 HTTP 协议同步,因为 HTTP 服务器不支持? 通过 HTTP 同步过程中可能提示 clone.bundle 404 错误,这是正常现象,可以忽略。 说明
附录:Brillo Brillo 项目的代码托管在 AOSP 项目中,Mirrors 镜像的是整个 AOSP 项目,所以自然也能从本镜像下载 Brillo 项目代码。 参考 Brillo 官方文档?https://developers.google.com/brillo/docs/reference/downloads?进行下载,将其中源码 manifest 地址 改为?
|
|
移动开发 最新文章 |
Vue3装载axios和element-ui |
android adb cmd |
【xcode】Xcode常用快捷键与技巧 |
Android开发中的线程池使用 |
Java 和 Android 的 Base64 |
Android 测试文字编码格式 |
微信小程序支付 |
安卓权限记录 |
知乎之自动养号 |
【Android Jetpack】DataStore |
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 | -2025/1/31 6:09:05- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |