Home > Database > Mysql Tutorial > 在Ubuntu 10.04.2 LTS上安装 Oracle SQL Developer3.0 (3.0.04.34)

在Ubuntu 10.04.2 LTS上安装 Oracle SQL Developer3.0 (3.0.04.34)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:01:12
Original
1113 people have browsed it

1,安装OpenJDKsudo apt-get install openjdk-6-jdk2,下载Oracle SQL Developer3.0 (3.0.04.34)的rpm(下载的时候需要oracle帐号

1,安装OpenJDK

sudo apt-get install openjdk-6-jdk

2,下载Oracle SQL Developer3.0 (3.0.04.34)的rpm(下载的时候需要oracle帐号,可以免费注册一个。):

3,使用alien将下载的*.rpm转换成*.deb

sudo alien -k --scripts sqldeveloper-3.0.04.34-1.noarch.rpm

4,安装*.deb

sudo dpkg -i sqldeveloper_3.0.04.34-1_all.deb

(如果成功安装的话,在Applications->Programming中将会出现 SQL Developer,,可是第一次直接从这里启动可能无法正常运行,我们选择从终端中启动。)

5,从终端中启动

cd /opt/sqldeveloper

使用sudo ./sqldeveloper.sh启动之后,终端中会输出如下提示信息:

Type the full pathname of a J2SE installation (or Ctrl-C to quit), the path will be stored in ~/.sqldeveloper/jdk

解决方法:

cd ~

mkdir .sqldeveloper

touch .sqldeveloper/jdk

可以使用VIM编辑~/.sqldeveloper/jdk添加下面一行(这里是添加java的home路径):

/usr/lib/jvm/java-6-openjdk/

6,可以直接使用Applications->Programming->SQL Developer启动啦。

linux

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template