Skip to content

Latest commit

 

History

History
490 lines (294 loc) · 11.3 KB

use_ubuntu.md

File metadata and controls

490 lines (294 loc) · 11.3 KB

使用ubuntu

Nnpxmj.png

安装ubuntu

ubuntu的镜像 :

http://mirrors.aliyun.com/ubuntu-releases/

image-20200730164412170

image-20200730164453553

进入 vmware

https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

image-20200730164733336

点击 创建

image-20200730141335265

浏览 找到 系统镜像文件, 我把它放在了 vmware文件下

image-20200730141419907

设置好信息 , 记住好密码 每次开机都要输入

image-20200730141530945

解压在那 设置好位置, 我设在 vmware 下创建了一个文件下

image-20200730141618328

默认即可

image-20200730141658591

默认即可

image-20200730141719673

正在安装中, 时间比较久, 准备好咖啡 , 谈谈心

image-20200730141159390

输入设置好的密码

image-20200730141815631

换源

进来的第一件事就是换源, 我准备换 阿里源 , 点击那个9点

image-20200730141958236

点 server for united states

image-20200730142123770

点击 other 其他

image-20200730142257136

找到 china

image-20200730142359620

输入密码

image-20200730142432286

点 X 就可以了

image-20200730142459685

点 关闭 close

image-20200730142537825

打开终端

image-20200730142621049

进行更新源

sudo apt-get update

image-20200730142709783

ubuntu设置语言

点 manage installed languages 在进入 language support 点击 install

image-20200730143040751

点击 install/remove languages 里面找到 chinese

image-20200730143200178

勾选 点击 apply

image-20200730143217832

正在下载语言 , 喝口82年咖啡 , 等待

image-20200730100557569

下翻, 找到中国 用鼠标拖到最前面

image-20200730143451380

点击 apply system-wide

image-20200730143604074

点击 中国 然后 点 apply system-wide , 关闭即可

image-20200730143643401

进入终端 重启

sudo reboot

image-20200730143803567

重新进入系统 , 建议保留旧名

image-20200730143903210

下载 NFS 服务

sudo apt-get update
sudo apt-get install nfs-kernel-server rpcbind

image-20200730101401834

下载SSH服务

sudo apt-get install openssh-server

image-20200730101500815

下载 vim 编辑软件

sudo apt-get install vim

image-20200730102008031

设置 vim 参数

sudo vim /etc/vim/vimrc

image-20200730104338664

" 行号
set number
" 高亮
syntax on
" 底部显示
set showmode
" 编码
set encoding=utf-8
" 鼠标
set mouse=a
" tab = 4
set tabstop=4

image-20200730104411362

下载 网络工具

sudo apt install net-tools

image-20200730160626629

查看本机ip

ifconfig

image-20200730160707963

window10 下 操作

通过xshell6进行连接

软件可自行 google , 这个软件收费, 具体收不收费, 看你的大显神通了 , 点到为止

点击文件 , 点击新建

image-20200730161120046

设置名字, 把查到的 ip 填在 主机

image-20200730160817133

点击 用户身份验证

输入ubuntu 的用户名

密码

点击连接

image-20200730160837784

成功就会出现这个弹窗, 点击 接受并保存

image-20200730160903922

image-20200730161328042

搭建 文件传输

点击 绿色 图标

image-20200730161353569

点击取消, 就可以自动弹出

image-20200730161448097

查看 命令解释

help

介绍常用的命令

把 本地数据 上传到 虚拟机

put

把 虚拟机的数据 下载到 本地

get

image-20200730161524257

下载交叉编译

https://releases.linaro.org/components/toolchain/binaries/latest-7/arm-linux-gnueabihf/

image-20200730163112883

我把它下载到了本地桌面上了

打印本地位置

lpwd

切换本地目录

lcd

打印 虚拟机 文件

ls

image-20200730161823031

切换虚拟机目录

cd cpucode/tools/

打印 虚拟机 文件

ls

把本地的 交叉编译器文件 上传到 虚拟机

put gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz

image-20200730161929285

查看文件

ls

image-20200730162747864

添加交叉编译器

创建目录: /usr/local/arm

sudo mkdir /usr/local/arm

把交叉编译器复制到/usr/local/arm 中

sudo cp gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz /usr/local/arm/ -f

进入到 /usr/local/arm 目录

cd /usr/local/arm/

对交叉编译工具进行解压

sudo tar -vxf gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf.tar.xz

查看交叉编译器的路径

cd gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf/bin/
pwd

image-20200730102135075

修改环境变量,使用 VIM 打开/etc/profile 文件

sudo vim /etc/profile

image-20200730102427600

添加交叉编译的路径 :

export PATH=$PATH:/usr/local/arm/gcc-linaro-7.5.0-2019.12-x86_64_arm-linux-gnueabihf/bin

image-20200730102410909

下载需要的库:

sudo apt-get install lsb-core lib32stdc++6

image-20200730102551073

重启

sudo reboot

image-20200730102713949

查看交叉编译器

arm-linux-gnueabihf-gcc -v

image-20200730102809714

测试交叉编译器

写 test.c 程序

vim test.c
arm-linux-gnueabihf-gcc test.c

image-20200730104447743

查看文件属性

file a.out

image-20200730104257384

添加 qemu

安装KVM

安装kvm加速qemu运行,在终端下执行如下命令:

更新源 :

sudo apt-get update

安装 kvm :

sudo apt-get install qemu qemu-kvm libvirt-bin bridge-utils virt-manager

image-20200730160235343

添加 git 工具

image-20200730145352905

添加 韦东山老师的 qemu 的软件

git  clone  https://e.coding.net/weidongshan/ubuntu-18.04_imx6ul_qemu_system.git

然后等待, 继续喝一口82年咖啡

image-20200730145446613

可以看看使用教程qemu的

http://wiki.100ask.org/Qemu

./install_sdl.sh

image-20200730145812647

./qemu-imx6ull-gui.sh

image-20200730150843317

root

image-20200730151021668