Know that kind of concerns? You bought really expensive license for great software…. changed operating system… and just rely that if it is written in Java, it can’t be problem to use it. Agreed.
I’m far far for doing some advertisment – anyway I’m using AquaData Studio for few years and I’m still excited by new features, community and developer’s approach (they are listening 🙂 ). You can use this ultimate database tool (in a sense of wideness, not depth) for free for 14 days – if you are database fan, don’t hesitate. In Download section you can see packages for common platforms (Win,Mac,Linux). Indeed, we are running BSD system, which is not present (and dont wait for it 😀 ). Check „Other“ tab and download „JAVA Platform ENABLED OS – Compressed ZIP „.
Unzip file, datastudio directory appears. Don’t forget, that running script is written in bash in case you don‘ t want to rewrite it for csh (my default shell in system).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
[j@pcbsd-1433] ~% bash [j@pcbsd-1433 ~]$ pwd /usr/home/j [j@pcbsd-1433 ~]$ cd Downloads/datastudio/ [j@pcbsd-1433 ~/Downloads/datastudio]$ ls -la total 151 drwx—— 4 j j 31 Nov 24 15:51 . drwxr-xr-x 3 j j 5 Nov 24 15:51 .. -rw-r–r– 1 j j 36675 Nov 13 14:03 License.txt -rw-r–r– 1 j j 7758 Nov 13 14:03 datastudio-128×128.png -rw-r–r– 1 j j 488 Nov 13 14:03 datastudio-16×16.png -rw-r–r– 1 j j 1077 Nov 13 14:03 datastudio-24×24.png -rw-r–r– 1 j j 1554 Nov 13 14:03 datastudio-32×32.png -rw-r–r– 1 j j 2513 Nov 13 14:03 datastudio-48×48.png -rw-r–r– 1 j j 1329 Nov 13 14:03 datastudio-bundled.bat -rwxr-xr-x 1 j j 1466 Nov 19 16:26 datastudio-bundled.sh -rw-r–r– 1 j j 9158 Nov 13 14:03 datastudio-compress.ico -rw-r–r– 1 j j 9158 Nov 13 14:03 datastudio-image.ico -rw-r–r– 1 j j 9158 Nov 13 14:03 datastudio-pdf.ico -rw-r–r– 1 j j 9158 Nov 13 14:03 datastudio-sql.ico -rw-r–r– 1 j j 9158 Nov 13 14:03 datastudio-studio.ico -rw-r–r– 1 j j 1319 Nov 13 14:03 datastudio.bat -rw-r–r– 1 j j 568 Nov 13 14:03 datastudio.gif -rw-r–r– 1 j j 364726 Nov 13 14:03 datastudio.ico -rw-r–r– 1 j j 1404 Nov 13 14:03 datastudio.sh -rw-r–r– 1 j j 3967 Nov 13 14:03 krb5.ini.example drwx—— 25 j j 27 Nov 19 16:09 lib drwx—— 2 j j 36 Nov 19 16:09 license -rw-r–r– 1 j j 1342 Nov 13 14:03 runfluidscript-bundled.bat -rw-r–r– 1 j j 1411 Nov 13 14:03 runfluidscript-bundled.sh -rw-r–r– 1 j j 1334 Nov 13 14:03 runfluidscript.bat -rw-r–r– 1 j j 1393 Nov 13 14:03 runfluidscript.sh -rw-r–r– 1 j j 1338 Nov 13 14:03 runscript-bundled.bat -rw-r–r– 1 j j 1407 Nov 13 14:03 runscript-bundled.sh -rw-r–r– 1 j j 1330 Nov 13 14:03 runscript.bat -rw-r–r– 1 j j 1389 Nov 13 14:03 runscript.sh [j@pcbsd-1433 ~/Downloads/datastudio]$ [j@pcbsd-1433 ~/Downloads/datastudio]$ cat datastudio.sh #!/bin/bash #SET ADS_HOME to the root installation directory for DataStudio ADS_HOME=dirname $0 CLASSES=$ADS_HOME/lib/ads.jar CLASSES=$ADS_HOME/lib/aqua-lib.jar:$CLASSES CLASSES=$ADS_HOME/lib/antlr/*:$CLASSES CLASSES=$ADS_HOME/lib/apache/*:$CLASSES CLASSES=$ADS_HOME/lib/apple/*:$CLASSES CLASSES=$ADS_HOME/lib/aquafold/*:$CLASSES CLASSES=$ADS_HOME/lib/aspose/*:$CLASSES CLASSES=$ADS_HOME/lib/dnsjava/*:$CLASSES CLASSES=$ADS_HOME/lib/drivers/*:$CLASSES CLASSES=$ADS_HOME/lib/icepdf/*:$CLASSES CLASSES=$ADS_HOME/lib/infragistics/*:$CLASSES CLASSES=$ADS_HOME/lib/itext/*:$CLASSES CLASSES=$ADS_HOME/lib/java/*:$CLASSES CLASSES=$ADS_HOME/lib/jgoodies/*:$CLASSES CLASSES=$ADS_HOME/lib/jgraph/*:$CLASSES CLASSES=$ADS_HOME/lib/jide/*:$CLASSES CLASSES=$ADS_HOME/lib/jinterop/*:$CLASSES CLASSES=$ADS_HOME/lib/jna/*:$CLASSES CLASSES=$ADS_HOME/lib/jogl/*:$CLASSES CLASSES=$ADS_HOME/lib/kryo/*:$CLASSES CLASSES=$ADS_HOME/lib/perforce/*:$CLASSES CLASSES=$ADS_HOME/lib/quartz/*:$CLASSES CLASSES=$ADS_HOME/lib/slf4j/*:$CLASSES CLASSES=$ADS_HOME/lib/snmp4j/*:$CLASSES CLASSES=$ADS_HOME/lib/ssh2/*:$CLASSES CLASSES=$ADS_HOME/lib/stndeditor/*:$CLASSES CLASSES=$ADS_HOME/lib/svnkit/*:$CLASSES CLASSES=$ADS_HOME/lib/thrift/*:$CLASSES export LD_LIBRARY_PATH=$ADS_HOME:$ADS_HOME/iany/lib/:$LD_LIBRARY_PATH java -Djsse.enableCBCProtection=false -Xmx756M -XX:MaxPermSize=192m -cp $CLASSES com.aquafold.datastudio.DataStudio |
In my case I’m changing just 2 lines – #!/bin/bash became #!/usr/local/bin/bash (result of which bash output). Second adjusting is about home ads directory = ADS_HOME=dirname $0
became ADS_HOME='/usr/home/j/Downloads/datastudio'.
And that’s all – we can now run DataStudio:
1 2 3 |
[j@pcbsd-1433 ~/Downloads/datastudio]$ chmod +x datastudio.sh [j@pcbsd-1433 ~/Downloads/datastudio]$ ./datastudio.sh OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=192m; support was removed in 8.0 |
All working now, nice antialiased fonts (half of linux distribution will fight with this for many years).
Again – absolutely happy database user 🙂
-a-