Skip to content

Commit

Permalink
data
Browse files Browse the repository at this point in the history
  • Loading branch information
deipss committed Jan 2, 2024
1 parent f5dbb46 commit 66e04a3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/command/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ systemctl is-enabled nginx
systemctl is-enabled supervisord
```

# ubuntu install jdk
```shell
# 安装jdk8
sudo apt install openjdk-8-jdk
whereis java

# 配置jre等包
vim ~/.profile
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH
```

# 3. log

- [https://cloud.tencent.com/developer/article/1579977](https://cloud.tencent.com/developer/article/1579977)
Expand Down

0 comments on commit 66e04a3

Please sign in to comment.