web-dev-qa-db-ja.com

Sun-Java6-jdkインストールのトラブルシューティング

  1. 新しいマシンでUbuntu 10.10のクリーンインストールを完了しました
  2. 私はubuntuソフトウェアセンターを介してパートナーリポジトリを追加しました
  3. 「Sudo apt-get install Sun-Java6-jdk」を実行しました
  4. 「Sudo update-Java-alternatives -s Java-6-Sun」を実行すると、次のエラーが発生しました。
 alex @ alex-home:〜$ Sudo update-Java-alternatives -s Java-6-Sun 
 update-alternatives:エラー:mozilla-javaplugin.soの代替はありません。 
 update-alternatives:エラー:xulrunner-1.9-javaplugin.soの代替はありません。 
 update-alternatives:エラー:mozilla-javaplugin.soに代わるものはありません。 
 update-alternatives:エラー:xulrunner-1.9-javaplugin.so。
の代替はありません

ダブルチェックに失敗しました、私はまだJREにいます:

 alex @ alex-home:〜$ Java -version 
 Javaバージョン "1.6.0_22" 
 Java(TM)SEランタイム環境(ビルド1.6.0_22-b04)
 Java HotSpot(TM)64ビットサーバーVM(ビルド17.1-b03、混合モード)
 alex @ alex-home :〜$ 

これも試してみました:

 alex @ alex-home:〜$ Sudo update-alternatives --config Java 
選択肢には2つの選択肢がありますJava(/ usr/bin/Java)。
 
 Selection Path Priority Status 
 ---------------------------- -------------------------------- 
 0/usr/lib/jvm/Java-6-openjdk/jre/bin/Java 1061自動モード
 1/usr/lib/jvm/Java-6-openjdk/jre/bin/Java 1061手動モード
 * 2/usr/lib/jvm/Java-6-Sun/jre/bin/Java 63手動モード
 
 Enterキーを押して現在の選択を保持する[*]、または選択番号を入力:

JDKはリストされていませんが、ディスクにリストされています。

 alex @ alex-home:〜$ ls /usr/lib/jvm/
default-Java Java-1.6.0-openjdk Java-6-openjdk Java-6-Sun Java-6- Sun-1.6.0.22 

更新:

プラグインとフォントをインストールすると、update-Java-alternativesが文句を言うのを止めましたが、まだ運がありません:

 Sudo apt-get install Sun-Java6-plugin Sun-Java6-fonts 

次に:

 alex @ alex-home:〜$ Sudo update-Java-alternatives -s Java-6-Sun 
 alex @ alex-home:〜$ Java- version 
 Javaバージョン "1.6.0_22" 
 Java(TM)SEランタイム環境(ビルド1.6.0_22-b04)
 Java HotSpot(TM)64ビットサーバーVM(ビルド17.1-b03、混合モード)

PDATE 2:うーん、おそらく実際に動作しているのでしょうか? 「... SEランタイム...」はJREを意味すると思っていましたが、おそらくそれで十分でしょうか。

2
Alex Black

SEランタイムは、Enterprise Edition(別名Servlets/JSP、アプリケーションサーバーが必要)ではなく、Java St​​andard Editionを実行していることを意味します。あなたは今インストールしたものでうまくいくはずです! Javaプログラムを開発する場合は、javacがシステムにインストールされていることを確認してください。

[〜#〜] edit [〜#〜]また、javacがJava-6-Sunによって提供されていることを確認してください。そうでない場合は、おそらくGNU _を使用します。Java望んでいないように見えるコンパイラ。

2
Nick Pascucci

ターミナルでこのコマンドを試してください

javac 

以下のような出力が表示される場合、Java jdkがインストールされていることを意味します。

サンプル出力:

Usage: javac <options> <source files>
where possible options include:
  -g                         Generate all debugging info
  -g:none                    Generate no debugging info
  -g:{lines,vars,source}     Generate only some debugging info
  -nowarn                    Generate no warnings
  -verbose                   Output messages about what the compiler is doing
  -deprecation               Output source locations where deprecated APIs are used
  -classpath <path>          Specify where to find user class files and annotation processors
  -cp <path>                 Specify where to find user class files and annotation processors
  -sourcepath <path>         Specify where to find input source files
  -bootclasspath <path>      Override location of bootstrap class files
  -extdirs <dirs>            Override location of installed extensions
  -endorseddirs <dirs>       Override location of endorsed standards path
  -proc:{none,only}          Control whether annotation processing and/or compilation is done.
  -processor <class1>[,<class2>,<class3>...]Names of the annotation processors to run; bypasses default discovery process
  -processorpath <path>      Specify where to find annotation processors
  -d <directory>             Specify where to place generated class files
  -s <directory>             Specify where to place generated source files
  -implicit:{none,class}     Specify whether or not to generate class files for implicitly referenced files 
  -encoding <encoding>       Specify character encoding used by source files
  -source <release>          Provide source compatibility with specified release
  -target <release>          Generate class files for specific VM version
  -version                   Version information
  -help                      Print a synopsis of standard options
  -Akey[=value]              Options to pass to annotation processors
  -X                         Print a synopsis of nonstandard options
  -J<flag>                   Pass <flag> directly to the runtime system

次を実行してバージョンを確認することもできます

javac -version

お役に立てれば。

1
aneeshep

「Java -version」コマンドの出力は、Sun-Java6-jreパッケージのJavaバイナリによって生成されます。インストールは成功します。

0
Benjamin