deepin development environment to build

(A), the configuration node, npm

Configuration node, npm
access the official website to download the corresponding file
decompressed, and then to the node-v8.9.0-linux-x64 renamed folder (renamed does not matter to change the path of the line)

tar -xvf node-v8.9.0-linux-x64.tar
mv node-v8.9.0-linux-x64 nodejs

Under node and npm link to / usr / local / bin, can be executed

ln -s /usr/local/nodejs/bin/node /usr/local/bin/node
ln -s /usr/local/nodejs/bin/npm /usr/local/bin/npm

Note: To be set according to their own path, do not copy.
OK! We're done! You can now perform node and npm command in any directory up!

node -v
npm -v

(Two), sdkman configure Java, maven

This is sdkman official website , install sdkman
`` `bash
curl -s" https://get.sdkman.io "| bash
Source" $ the HOME / .sdkman / bin / sdkman-init.sh "
// and view the Java version available installation
SDK List Java
SDK 8.0.222 the install Java-AMZN

// Check and install maven

sdk list maven
sdk install maven 3.5.4

(Three), docker

{% Post_link docker-install-centos %} binding {% post_link docker-install-ubuntu %}
get environment docker

Note: Use the terminal management depth remote server, the server should be installed rz, sz command, uploading and downloading it without error

yum install lrzsz

(Four), git configuration

Global Configuration

git config --global user.name nqlz
git config --global user.email [email protected]

The following commands to generate sshkey:

ssh-keygen -t rsa -C [email protected] -f ~/.ssh/gitee_id_rsa
ssh-keygen -t rsa -C [email protected] -f ~/.ssh/github_id_rsa

Follow the prompts to complete the three-carriage return, you can generate ssh key. By looking at ~ / .ssh / gitee_id_rsa file contents, access to your public key
to create a new config file in ~ / under .ssh directory, add the following (where Host and HostName fill git server's domain name, IdentityFile specify private path

# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id_rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id_rsa
cat ~/.ssh/gitee_id_rsa

Copy the ssh key after generation, through warehouse Home "management" -> "deploy a public key management" -> "Add deploy a public key," added generated public key is added to the repository.
After the addition, the input terminal (Terminal) in

ssh -T [email protected]
ssh -T [email protected]

Guess you like

Origin www.cnblogs.com/face-842266/p/11669276.html