[Linux]Ubuntu 嵌入式 Arm-aarch64 开发环境搭建

版权声明:本文为博主原创文章,欢迎转载,转载请注明出处。 https://blog.csdn.net/wangyijieonline/article/details/87269643

1, 基本工具

sudo apt-get install gcc gcc-aarch64-linux-gnu vim git
sudo apt-get install automake autoconf libtool make
sudo apt-get install libncurses5-dev libncursesw5-dev
sudo apt-get install device-tree-compiler
sudo apt-get install zlib1g-dev

2,exvim

git clone https://github.com/exvim/main
cd main/
sh unix/install.sh
sh unix/replace-my-vim.sh
sudo apt-get install ctags id-utils cscope

3,chrome sogou拼音
4,zsh+oh-my-zsh

sudo apt-get install -y zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
chsh -s $(which zsh)

5,串口工具

sudo apt-get install minicom ckermit
vim ~/.kermrc

填入以下内容

set line /dev/ttyUSB0
set speed 115200
set carrier-watch off
set handshake none
set flow-control none
robust
set file type bin
set file name lit
set rec pack 1000
set send pack 1000
set window 5

6,删除自带软件
sudo apt-get autoremove libreoffice-common
sudo apt-get autoremove totem rhythmbox empathy brasero simple-scan aisleriot cheese transmission-common

猜你喜欢

转载自blog.csdn.net/wangyijieonline/article/details/87269643