当前位置:   article > 正文

Linux离线安装jdk8_jdk-8u141-linux-x64.tar.gz

jdk-8u141-linux-x64.tar.gz

简介

        现在因为安全等因素,有些服务器不通外网。所以为初学者整理了一份安装jdk的教程,有需要的可以看看。

下载压缩包

链接: 百度网盘 请输入提取码 提取码: a26n

传到linux上指定目录

  1. # /usr/local/jdk
  2. $ tar zxvf jdk-8u141-linux-x64.tar.gz

移动到指定位置

  1. # 移动
  2. $ mv jdk1.8.0_141 /usr/local/

备份系统环境变量

$cp /etc/profile /home/ctl/

编辑系统环境变量

  1. # 编辑
  2. $vi /etc/profile
  3. #加入如下内容
  4. export JAVA_HOME=/usr/local/jdk1.8.0_141
  5. export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
  6. export PATH=$JAVA_HOME/bin:$PATH

重新加载系统变量

$source /etc/profile

看是否安装成功

  1. $javac                                                                                                      
  2. Usage: javac <options> <source files>                                                                                                  
  3. where possible options include:                                                                                                        
  4. -g                         Generate all debugging info                                                                                
  5. -g:none                   Generate no debugging info                                                                                
  6. -g:{lines,vars,source}     Generate only some debugging info                                                                          
  7. -nowarn                   Generate no warnings                                                                                      
  8. -verbose                   Output messages about what the compiler is doing                                                          
  9. -deprecation               Output source locations where deprecated APIs are used                                                    
  10. -classpath <path>         Specify where to find user class files and annotation processors                                          
  11. -cp <path>                 Specify where to find user class files and annotation processors                                          
  12. -sourcepath <path>         Specify where to find input source files                                                                  
  13. -bootclasspath <path>     Override location of bootstrap class files                                                                
  14. -extdirs <dirs>           Override location of installed extensions                                                                  
  15. -endorseddirs <dirs>       Override location of endorsed standards path                                                              
  16. -proc:{none,only}         Control whether annotation processing and/or compilation is done.                                          
  17. -processor <class1>[,<class2>,<class3>...] Names of the annotation processors to run; bypasses default discovery process              
  18. -processorpath <path>     Specify where to find annotation processors                                                                
  19. -parameters               Generate metadata for reflection on method parameters                                                      
  20. -d <directory>             Specify where to place generated class files                                                              
  21. -s <directory>             Specify where to place generated source files                                                              
  22. -h <directory>             Specify where to place generated native header files                                                      
  23. -implicit:{none,class}     Specify whether or not to generate class files for implicitly referenced files                            
  24. -encoding <encoding>       Specify character encoding used by source files                                                            
  25. -source <release>         Provide source compatibility with specified release                                                        
  26. -target <release>         Generate class files for specific VM version                                                              
  27. -profile <profile>         Check that API used is available in the specified profile                                                  
  28. -version                   Version information                                                                                        
  29. -help                     Print a synopsis of standard options                                                                      
  30. -Akey[=value]             Options to pass to annotation processors                                                                  
  31. -X                         Print a synopsis of nonstandard options                                                                    
  32. -J<flag>                   Pass <flag> directly to the runtime system                                                                
  33. -Werror                   Terminate compilation if warnings occur                                                                    
  34. @<filename>               Read options and filenames from file
  35. $java -version
  36. java version "1.8.0_141"                                                                                                                
  37. Java(TM) SE Runtime Environment (build 1.8.0_141-b15)                                                                                  
  38. Java HotSpot(TM) 64-Bit Server VM (build 25.141-b15, mixed mode)
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/346126
推荐阅读
相关标签
  

闽ICP备14008679号