Wei Dongshan embedded Linux Learning Notes 03-- how to build software environment

1. from the Internet a virtual machine, such as vmvare station

2. The next ubuntu install mirrored back, I made a reference to install 14.04 link:.  Https://blog.csdn.net/qq1326702940/article/details/82322079

3. If ubuntu interface does not scale well, you can use the command to install vm tools

 

The first command: sudo apt-get upgrate
The second command: sudo apt-get install open-vm-tools-desktop -y
The third line command: sudo reboot
4. Update software update source Ubuntu
 
sudo cp /etc/apt/source.list /etc/apt/source.list.bk
sudo gedit /etc/apt/source.list 
 
Empty the contents inside, and then add the following contents:
# Deb cdrom: [Ubuntu 4.16 LTS _Xenial Xerus_ - Release amd64 (20160420.1)] / great main restricted 
deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties 
deb http://mirrors.aliyun.com/ubuntu/ great main restricted 
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties 
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted 
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties 
deb http://mirrors.aliyun.com/ubuntu/ great universe 
deb http://mirrors.aliyun.com/ubuntu/ great-updates universe 
deb http://mirrors.aliyun.com/ubuntu/ great multiverse 
deb http://mirrors.aliyun.com/ubuntu/ great-updates multiverse 
deb http://mirrors.aliyun.com/ubuntu/ great-backports main restricted universe multiverse 
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties 
deb http://archive.canonical.com/ubuntu great partner 
deb-src http://archive.canonical.com/ubuntu great partner 
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted 
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties 
deb http://mirrors.aliyun.com/ubuntu/ great-security universe 
deb http://mirrors.aliyun.com/ubuntu/ great-security multiverse
16.04 The above is, if it is 14.04, the need to replace the entire xenial trusty
 Execute sudo apt-get update after save
 
5.

Guess you like

Origin www.cnblogs.com/cheyihaosky/p/11859029.html