Ubuntu18 Framework下载

1. 下载前配置

1.1 下载配置git
# 先查看Ubuntu有没有安装git
git --version

# 如果没有安装git,则通过apt命令安装git
sudo apt install git

# 给git设置用户名和邮箱,用户名和邮箱随意设置
 git config --global user.email "[email protected]"
 git config --global user.name "xxx"

# 查看设置的用户名和邮箱是否生效
git config --global user.name
git config --global user.email
1.2 安装curl
# 通过apt命令安装curl
sudo apt install curl
1.3 安装python2.7
//安装
sudo apt-get --reinstall install python-minimal

//查看
cd /usr/bin && ls | grep python

2. 在当前用户家目录创建bin目录并将其添加到PATH环境变量

# 在当前用户家目录创建bin目录
mkdir ~/bin

# 查看bin目录是否创建成功
lxp@ubuntu18:~$ ls
bin  Desktop  Documents  Downloads  Music  Pictures  Public  Templates  Videos

# 将bin目录路径添加到PATH环境变量
lxp@ubuntu18:~$ PATH=~/bin:$PATH

# 查看bin目录路径是否添加到PATH环境变量
lxp@ubuntu18:~$ echo $PATH
/home/xxdty/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

3. 安装repo并设置可执行权限

# 安装repo到~/bin目录
lxp@ubuntu18:~$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

# 进入bin目录
lxp@ubuntu18:~$ cd bin

# 给repo添加可执行权限
lxp@ubuntu18:~/bin$ chmod a+x repo

# 查看repo是否已具备可执行权限
lxp@ubuntu18:~/bin$ ll
total 48
drwxrwxr-x  2 xxdty xxdty  4096 8月  16 00:11 ./
drwxr-xr-x 19 xxdty xxdty  4096 8月  16 12:23 ../
-rwxrwxr-x  1 xxdty xxdty 39134 8月  16 00:11 repo*

4. 创建保存AOSP的目录. 我的是双系统,插入了移动硬盘,在移动硬盘里创建了目录aosp。

# 在当前用户家目录下创建workspace目录,用于保存即将下载的AOSP
lxp@ubuntu18:~$ mkdir aosp11

# 查看aosp11目录是否创建成功
lxp@ubuntu18:~$ ls
bin  Desktop  Documents  Downloads  Music  Pictures  Public  Templates  Videos  workspace

5. 从清华镜像源下载AOSP

5.1 下载前准备
// 打开bin目录下的repo
xdg-open ~/bin/repo
// 替换repo文件中,git-repo下载
 将:        REPO_URL = 'https://gerrit.googlesource.com/git-repo'
替换为:REPO_URL = 'https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
 // 创建目录
mkdir aosp11
//进入下载
cd aosp11

5.2 开始下载AOSP初始化包
repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest -b android-11.0.0_r46
5.3 最后同步
repo sync

提示下面就表示下载完成了。
repo sync has finished successfully.

你可能感兴趣的:(Ubuntu18 Framework下载)