开发环境准备
下载vs code,.NET Core sdk:
https://www.microsoft.com/net/core#windowscmd
目前最新版为code 1.8.1,.NET Core 1.1
vs code可以安装常用插件,比如C#,vscode-icons,gitignore
下载git for windows
https://www.git-scm.com/download/win
目前最新版本为2.11.0
如果很慢的话可以从百度盘下载:
https://pan.baidu.com/s/1c2xd1ss
Linux环境准备
下载VMware Workstation 12 Player
https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_workstation_player/12_0
下载ubuntu 14.04
PS. 目前阿里云上面的ubuntu镜像最高只有14版本,所以下这个版本。
http://releases.ubuntu.com/trusty/
在VMware上安装ubuntu
安装会比较久时间,建议安装好之后,把vm虚拟文件复制一份做备份,Server搞坏了,可以直接复制过来,比安装快。
另外进入ubuntu之后要注意不要使用VMware的关机,而要在server里面用sudo shutdown -P 0来关机,不然可能会造成无法正确引导进入ubuntu的问题。
安装ssh server,可以用ssh连接Ubuntu OS
sudo apt-get install curl openssh-server ca-certificates postfix
安装Docker和Docker Compose
参照http://www.cnblogs.com/windchen/p/6224233.html
配置阿里镜像加速:http://www.cnblogs.com/windchen/p/6231009.html
将windows共享目录挂载到Ubuntu虚拟机
参照http://www.cnblogs.com/windchen/p/6236299.html
目的是为了让Linux跟Windows有同样的位置可以修改代码
Git环境准备
创建git环境及ssh-key
参照:http://www.cnblogs.com/windchen/p/6222434.html