[Zhengdian Atom Alpha IMX6ULL Linux Development Board] Part 2 Software Preparation
[Copy link]
Chapter 2 Software Preparation
1. Password change
I'll change the password first. There's something wrong with my key 0. I have to press it very hard.
Sudo passwd alientek change to 123
2. Confirm the FTP service under Ubuntu
Install FTP Service
sudo apt-get install vsftpd
Modify the conf file
sudo vi /etc/vsftpd.conf
It was discovered that many things in the system of the punctual atom are already installed.
3. Query IP address
Using ifconfig Command
IP address 192.168.43.63
4. MobaXterm software application
Open the MobaXterm software, as shown below
Click OK
Enter username: alientek and password: 123 (the initial password is 0)
If the password is correct, you can enter the Ubuntu directory through FTP
Test it out by copying it from Windows to Ubuntu
Copy the data summary file to the desktop directory. Now let's check it in Ubuntu.
YES succeeded
5. Cross-compiler verification
The Ubuntu system is installed. To develop in Ubuntu, the GCC compiler is generally used. However, the GCC compiler that comes with Ubuntu should be for the CPU. The tool we developed runs on the X86 architecture CPU. It is needed to compile the ARM architecture MCU code, so a cross compiler is needed.
Let's see if the cross compiler is installed on Zhengdian Atom's system. It should be installed.
arm-linux-gnueabihf-gcc -v
At this point, the software should be almost ready.
|