Home > other >  To introduce how to install minicom, want to learn about the use of the board
To introduce how to install minicom, want to learn about the use of the board

Time:10-03

To introduce how to install minicom, want to learn about the use of the board

CodePudding user response:

Install minicom
Sudo apt - get the install minicom
Set the minicom
Minicom -s
Exit the minicom
CTRL + a (press at the same time, a black bar), then press q exit,
Set the ubuntu static IP address
Vim/etc/network/interfaces
Auto eth0
Iface eth0 inet static
Address 192.168.1.183
Gateway 192.168.1.1
Netmask 255.255.255.0

Restart the network service:
Sudo/etc/init. D/networking restart
Test whether or not the PC and the board connected
Ping 192.168.1.183 board pingPC
NFS network filesystem network file system (
Configure the NFS configuration file
Vim/etc/exports
/work_project * (rw, sync, no_subtree_check)
Directory of custom
Chmod -r 777/work_project

/home/Linux/NFS * (rw, sync, no_subtree_check)
Directory of custom
Start the NFS service
Sudo/etc/init. D/NFS kernel - server restart

Development board of the input command:
The mount -t NFS -o nolock 192.168.169.128:/home/Linux/work_project//MNT/
Type of NFS way PC IP development board directory to share
If you need to wrap:
CTRL + w
Install a cross-compiler:
Tar xf arm - Linux - GCC - 4.5-2012. The tar. Gz
Sudo cp - rf/XXX/arm//home/Linux/
CD/home/Linux/
Ls - a. bashrc
Sudo vim. Bashrc

The last line:
The export PATH=$PATH:/home/pippala/arm/FriendlyARM toolschain/4.5.1/bin
Save exit, cross compiler installed successfully,
Arm - enter 2 this TAB
Source. Bashrc

Close the Qt interface
The/etc/init. D/RCS
#/bin/qtopia & amp; Shielding the
And then restart the development board
  • Related