Things build server test environment

Foreword

Recently reconsider life career planning and admiration for the technical forum blog Daniel, starting today decided from the perspective of the platform have to understand and learn more things, and no longer limited to the embedded device side. Follow-up would insist things take time to understand industry dynamics, CSDN blog to record study notes and personal views. Several years later in retrospect, I might appreciate the efforts have paid.

learning environment

A computer (MacBook Pro), a hardware device (Raspberry Pi 3B), a book ( "do it yourself design of Things"), a way (web search data), and then after a conditional additional equipment and books.

Server test environment

工具:VMware + Ubuntu 16.04.6 Sever,Terminal,Google Chrome。

step:

1. VMware install Ubuntu Linux operating system 16.04.6 Server virtual machine.

2. Linux ssh server installed on a Linux operating system on a Mac Terminal.

sudo apt-get install openssh-server

3. Access Linux systems Mac Termi nal. Where user_name is the user login name Linux system, 192.168.7.110 for the IP address of the Linux system. 

ssh [email protected]

4. Install vim editor vi Editor keyboard repair disorder problems.

sudo apt-get install vim

5. Modify vim configuration, according to personal use habits.

sudo vim /etc/vim/vimrc
在最后添加以下内容:
set nu            //显示行号
set tabstop=4     //tab长度为4个空格
set nobackup      //覆盖文件不备份
set ruler         //显示光标位置

 

To be continued ...

Guess you like

Origin blog.csdn.net/llkkcc13/article/details/88890751