<返回更多

体验过Deepin下开发吗?流畅!搭个环境试试吧

2020-11-06    
加入收藏

体验过Deepin下开发吗?流畅!搭个环境试试吧

 

安装JDK

export JAVA_HOME=/usr/local/lib/jdk-11.0.4
export CLASSPATH=$JAVA_HOME/lib:.
export PATH=$JAVA_HOME/bin:$PATH

vim有三种操作模式:命令模式、插入模式、底行模式。

使用vim打开文件即处于命令模式;

在命令模式下按i键即进入插入模式,在插入模式下可以编辑文件,按esc键退出插入模式回到命令模式;

在命令模式下按 shift + : 进入底行模式,在底行模式下键入w保存,键入q退出,键入wq保存并退出,键入q!强制退出,按esc键退出插入模式回到底行模式。

在终端输入命令 source /etc/profile , 使配置文件在当前终端窗口生效,并测试

 

安装Tomcat

 

安装MySQL及MySQL Workbench

sudo apt-get install mysql-server
sudo apt-get install mysql-workbench
sudo mysql -uroot -p
update mysql.user set plugin="mysql_native_password" where user="root"; 

grant all on *.* to root@"localhost"; 

update mysql.user set authentication_string=password('root') where user='root' and host = 'localhost'; 

flush privileges; 
sudo service mysql start 

sudo service mysql stop

 

 

安装git

git config --global user.name "你的名字或昵称"
git config --global user.email "你的邮箱" 

 

 

下载安装Node.js

  1. 从Node.js官网下载Node.js,获得一个tar.xz包(以下以node-v12.16.3-linux-x64.tar.xz为例),存放于~/Downloads下。
  2. 在终端执行以下命令安装Node.js
cd ~/Downloads
xz -d node-v12.16.3-linux-x64.tar.xz
cd /usr/local/lib
sudo tar -xvf ~/Downloads/node-v12.16.3-linux-x64.tar

在终端输入以下命令,打开/etc/profile

cd ~
sudo cp /etc/profile /etc/profile.bak #先备份
sudo vim /etc/profile

在/etc/profile末尾添加如下代码配置node.js的环境变量

export PATH=$PATH:/usr/local/lib/node-v12.16.3-linux-x64/bin

在终端输入如下命令使环境变量在当前终端生效(重启后将全局生效)

source /etc/profile

 

 

安装cnpm

npm install -g cnpm
ls -l /usr/local/lib/
drwxr-xr-x 6 1001  1001 4096 4月  28 17:54 node-v12.16.3-linux-x64
sudo chmod -R o+w /usr/local/lib/node-v12.16.3-linux-x64
ls -l /usr/local/lib
drwxr-xrwx 6 1001  1001 4096 4月  28 17:54 node-v12.16.3-linux-x64
npm install -g cnpm

 

安装Vue CLI

npm install -g @vue/cli
# or
cnpm install -g @vue/cli

 

安装Idea

[Desktop Entry]
Encoding=UTF-8
Name=Idea
Comment=Idea
Exec=/opt/idea-IU-193.6911.18/bin/idea.sh
Icon=/opt/idea-IU-193.6911.18/bin/idea.png
Terminal=false  #启动时不打开终端
StartupNotify=true
Type=Application
Categories=Application;Development

 

 

安装Spring Tools 4 for Eclipse

[Desktop Entry]
Encoding=UTF-8
Name=SpringToolSuite
Comment=SpringToolSuite
Exec=/opt/sts-4.4.0.RELEASE/SpringToolSuite4
Icon=/opt/sts-4.4.0.RELEASE/icon.xpm
Terminal=false
StartupNotify=true
Type=Application
Categories=Application;Development

安装vscode

[Desktop Entry]
Encoding=UTF-8
Name=VSCode
Comment=VSCode
Exec=/opt/VSCode-linux-x64/code
Icon=/opt/VSCode-linux-x64/resources/app/resources/linux/code.png
Terminal=false 
StartupNotify=true
Type=Application
Categories=Application;Development
{
	 	"git.path" :  "/usr/bin/git"            
}
声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>