Ktoolbar on Linux (Fedora)

hi,
i installed these two on Fedora - Linux
1. j2sdk-1_4_1-linux-i586.bin
- set the path and classpath, and it looks okay - it works
2. j2me_wireless_toolkit-2_1-linux-i386.bin
- installed, but when i try to run ktoolbar i get the following error:
[root@localhost hfs6.1]# ktoolbar
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/local/share/j2sdk1.4.1/jre/lib/i386/libfontmanager.so: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1473)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1389)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:832)
at javax.swing.JWindow.<init>(JWindow.java:160)
at com.sun.kvem.toolbar.Main$SplashWindow.<init>(Main.java:42)
at com.sun.kvem.toolbar.Main.main(Main.java:113)
any ideas what is going on
George

Hi I have problems with the install on fedora core. I am totally new to linux. Could you please give me some tips on the install regarding:
1. Where to open the package
2. How to set the path
3. How to test it
I will really appreciate it. Thanks
paul.

Similar Messages

  • Cannot install oracle 9i on linux (fedora core 2)

    dear all members.
    I cannot install oracle 9i on linux (fedora core 2)
    progress bar stop at 17% no activity at hardisk. I wait for 15 hours , still no movement. file being copy is " naeet.o " , I am not sure how importance is it.
    I try several times, but still similar result....
    Amnuay U.
    [email protected]

    Hi,
    I think that Feedbak forum is not the best place for this problem.
    You should ask this into
    => Installation Forum : Database Installation
    or
    => Linux Forum : Generic Linux
    Anyway, you can find an install doc here :
    http://ivan.kartik.sk/oracle/install_ora9_fedora.html
    Nicolas.

  • Problem Configureing Oracle10g with linux fedora core5

    dear forum members,
    when i try to configure oracle 10g in linux fedora core5 with the followning commnad
    # /etc/init.d/oracle-xe configure
    I get the follwoing error message
    Starting Oracle Net Listener...Done
    Configuring Database...grep: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/config/log/*.log: No such file or directory
    Done
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    I also set ORACLE_HOME environment variable before the configure commnad.
    yours truely
    Raja C
    please give me suggestion to configure the oracle10g.

    I was having horrible troubles installing Oracle XE on FC5 until I realized one thing -- I had upgraded packages.
    You have to do the installs just as you want them off the CDs, then install Oracle XE, then upgrade your other packages. I'm not sure which one, but one of the upgrade packages breaks the XE install.
    You would also have trouble with linking ntcontab if you were doing an oracle 10gR2 install with the upgraded set. I haven't figured out why yet but I spent all weekend on it ;)

  • Starting Oracle-Xe on Linux fedora core 5

    Dear fourm members,
    I had Installed Oracle Xe on linux fedora core 5 and configure it.
    When i try to start the oracle Xe server I get the follwing error.
    # /etc/init.d/oracle-xe start
    Starting Oracle Net Listener.
    Starting Oracle Database 10g Express Edition Instance.
    Failed to start Oracle Net Listener using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/tnslsnr and Oracle Express Database using /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/sqlplus.
    what can i do to start the service.

    Failed To Start Oracle Net Listener

  • Painting works fine under OS X, but vanishes under Linux (Fedora 6)

    I've written some code to draw arrays and objects, which I'm using in the CS2 class I teach (where the students are learning about references). It works fine under OS X, but (to my horror) when I tried using it in front of the students in our Linux labs, the diagrams would disappear (i.e., the window would become blank) after a few milliseconds. Sometimes we could get them to stick around by resizing the window, but this was not reliable.
    I should note that my OS X testing is under Java 1.5 (because Macs don't have 1.6 yet) and the Linux (Fedora 6, I believe) is using Java 1.6.
    The code is given below. There are two classes, ViewPanel and ObjectView. Run the main() method in ViewPanel. Both of these are in the cs2tools package.
    Any help would be greatly appreciated.
    package cs2tools;
    import java.awt.*;
    import java.awt.font.*;
    import javax.swing.*;
    import java.util.*;
    import java.util.List; // For disambiguation
    /** Provides methods to graphically display objects and arrays. */
    public class ViewPanel extends JPanel {
         /** Singleton instance to allow static method calls, hiding OOP details from students. */
         private static ViewPanel instance = null;
         private static final long serialVersionUID = 1L;
         protected static void createInstance() {
              if (instance == null) {
                   JFrame frame = new JFrame();
                   frame.setSize(640, 480);
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   instance = new ViewPanel();
                   frame.add(instance);
                   frame.setVisible(true);
         /** Displays object at position x, y. */
         public static void display(Object object, int x, int y) {
              display(object, x, y, "");
         /** Displays object at position x, y, using name in the title. */
         public static void display(Object object, int x, int y, String name) {
              createInstance();
              instance.addObject(x, y, object, name);
              instance.repaint();
         /** Refreshes the graphics to show any changes to displayed objects. */
         public static void refresh() {
              if (instance != null) {
                   instance.repaint();
         private FontRenderContext fontRenderContext;
         private Graphics2D graphics;
         private List<Object> objects;
         private List<ObjectView> views;
         protected ViewPanel() {
              objects = new ArrayList<Object>();
              views = new ArrayList<ObjectView>();
              setBackground(new Color(0x8fbfff)); // A tasteful light blue
         protected void addObject(int x, int y, Object object, String instanceName) {
              if (objects.contains(object)) {
                   throw new Error("The object " + object + " has already been displayed");
              objects.add(object);
              views.add(new ObjectView(this, x, y, object, instanceName));
         protected FontRenderContext getFontRenderContext() {
              return fontRenderContext;
         protected void paintComponent(Graphics g) {
              super.paintComponent(g);
              graphics = (Graphics2D)g;
              fontRenderContext = graphics.getFontRenderContext();
              for (ObjectView view : views) {
                   view.draw();
              for (ObjectView view : views) {
                   view.drawPointers(objects, views);
         public static void main(String[] args) {
              int[][] arr = new int[2][3];
              arr[0] = arr[1];
              display(arr, 100, 100);
              display(arr[0], 300, 100);          
    package cs2tools;
    import java.awt.*;
    import java.awt.geom.*;
    import java.lang.reflect.*;
    import static java.awt.Color.*;
    import static java.lang.Math.*;
    import java.util.List; // For disambiguation
    import static java.lang.reflect.Array.*;
    /** View of a single object, used by ViewPanel. */
    public class ObjectView extends Rectangle2D.Double {
         /** Height of each field box. */
         public static final int BOX_HEIGHT = 20;
         /** Width of each field box. */
         public static final int BOX_WIDTH = BOX_HEIGHT * 3;
         private static final long serialVersionUID = 1L;
         private Field[] fields;
         private Rectangle2D[] nameRectangles;
         private Object object;
         private ViewPanel panel;
         private String title;
         private Rectangle2D titleBar;
         private Rectangle2D[] valueRectangles;
         public ObjectView(ViewPanel panel, int x, int y, Object object, String name) {
              super(x, y, 0, 0);
              this.object = object;
              this.panel = panel;
              fields = object.getClass().getDeclaredFields();
              // Create title bar
              titleBar = new Rectangle2D.Double(x, y, BOX_WIDTH * 2 + BOX_HEIGHT, BOX_HEIGHT);
              title = name + ":" + object.getClass().getSimpleName();
              if (object.getClass().isArray()) {
                   // Adjust size of the entire cs2tools to accomodate fields
                   setRect(getX(), getY(), BOX_WIDTH * 2 + BOX_HEIGHT, BOX_HEIGHT * (3 + getLength(object)));
                   // Create field name and value rectangles
                   nameRectangles = new Rectangle2D[getLength(object)];
                   valueRectangles = new Rectangle2D[getLength(object)];
                   y += BOX_HEIGHT;
                   for (int i = 0; i < getLength(object); i++) {
                        y += BOX_HEIGHT;
                        nameRectangles[i] = new Rectangle2D.Double(x, y, BOX_WIDTH, BOX_HEIGHT);
                        valueRectangles[i] = new Rectangle2D.Double(x + BOX_WIDTH, y, BOX_WIDTH, BOX_HEIGHT);
              } else { // Not an array
                   // Adjust size of the entire cs2tools to accomodate fields
                   setRect(getX(), getY(), BOX_WIDTH * 2 + BOX_HEIGHT, BOX_HEIGHT * (3 + fields.length));
                   // Create field name and value rectangles
                   nameRectangles = new Rectangle2D[fields.length];
                   valueRectangles = new Rectangle2D[fields.length];
                   y += BOX_HEIGHT;
                   for (int i = 0; i < fields.length; i++) {
                        fields.setAccessible(true);
                        y += BOX_HEIGHT;
                        nameRectangles[i] = new Rectangle2D.Double(x, y, BOX_WIDTH, BOX_HEIGHT);
                        valueRectangles[i] = new Rectangle2D.Double(x + BOX_WIDTH, y, BOX_WIDTH, BOX_HEIGHT);
         protected void centerDot(Rectangle2D rect, Graphics2D graphics) {
              double radius = min(rect.getWidth() / 4, rect.getHeight() / 4);
              double x = rect.getCenterX();
              double y = rect.getCenterY();
              graphics.fillOval((int)(x - radius), (int)(y - radius), (int)(radius * 2), (int)(radius * 2));
         protected void centerText(String text, Rectangle2D rect, Graphics2D graphics) {
              Rectangle2D bounds = panel.getFont().getStringBounds(text, panel.getFontRenderContext());
              double x = (rect.getWidth() - bounds.getWidth()) / 2;
              double y = ((rect.getHeight() - bounds.getHeight()) / 2) - bounds.getY();
              graphics.drawString(text, (int)(rect.getX() + x), (int)(rect.getY() + y));
         /** Draw this ObjectView, but not its pointers. */
         public void draw() {
              try {
                   Graphics2D graphics = (Graphics2D) (panel.getGraphics());
                   // Draw the outer box
                   graphics.setColor(LIGHT_GRAY);
                   graphics.fill(this);
                   graphics.setColor(BLACK);
                   graphics.draw(this);
                   // Draw the title bar
                   graphics.setColor(WHITE);
                   graphics.fill(titleBar);
                   graphics.setColor(BLACK);
                   graphics.draw(titleBar);
                   graphics.setColor(BLACK);
                   centerText(title, titleBar, graphics);
                   // Draw the fields
                   for (int i = 0; i < nameRectangles.length; i++) {
                        String name;
                        String value;
                        boolean isPrimitive;
                        if (object.getClass().isArray()) {
                             name = i + "";
                             value = get(object, i) + "";
                             isPrimitive = object.getClass().getComponentType().isPrimitive();
                        } else {                         
                             Field field = fields[i];
                             name = field.getName();
                             value = field.get(object) + "";
                             isPrimitive = field.getType().isPrimitive();
                        graphics.setColor(WHITE);
                        graphics.fill(valueRectangles[i]);
                        graphics.setColor(BLACK);
                        graphics.draw(valueRectangles[i]);
                        centerText(name, nameRectangles[i], graphics);
                        if (isPrimitive) {
                             centerText(value, valueRectangles[i], graphics);
                        } else if (value.equals("null")) {
                             graphics.setColor(BLUE);
                             centerText("null", valueRectangles[i], graphics);
                        } else {
                             graphics.setColor(BLUE);
                             centerDot(valueRectangles[i], graphics);
              } catch (IllegalAccessException e) {
                   // We checked for this, so it should never happen
                   e.printStackTrace();
                   System.exit(1);
         /** Draw lines for any pointers from this ObjectView's fields to other ObjectViews in views. */
         public void drawPointers(List<Object> objects, List<ObjectView> views) {
              try {
                   Graphics2D graphics = (Graphics2D) (panel.getGraphics());
                   graphics.setColor(BLUE);
                   for (int i = 0; i < nameRectangles.length; i++) {
                        boolean isPrimitive;
                        Object target;
                        if (object.getClass().isArray()) {
                             isPrimitive = object.getClass().getComponentType().isPrimitive();
                             target = get(object, i);
                        } else {                         
                             Field field = fields[i];
                             isPrimitive = field.getType().isPrimitive();
                             target = field.get(object);
                        if (!isPrimitive && (target != null)) {
                             for (int j = 0; j < objects.size(); j++) {
                                  if (target == objects.get(j)) {
                                       ObjectView targetView = views.get(j);
                                       int x = (int)(valueRectangles[i].getCenterX());
                                       int y = (int)(valueRectangles[i].getCenterY());
                                       int tx = (int)(targetView.getCenterX());
                                       int ty = (int)(targetView.getCenterY());
                                       if (abs(x - tx) > abs(y - ty)) { // X difference larger -- horizontal line
                                            if (x < tx) { // Draw line to left side of target
                                                 graphics.drawLine(x, y, (int)(targetView.getX()), ty);
                                            } else { // Draw line to right side of target
                                                 graphics.drawLine(x, y, (int)(targetView.getX() + targetView.getWidth()), ty);
                                       } else { // Y difference larger -- vertical line
                                            if (y < ty) { // Draw line to top of target
                                                 graphics.drawLine(x, y, tx, (int)(targetView.getY()));
                                            } else { // Draw line to bottom of target
                                                 graphics.drawLine(x, y, tx, (int)(targetView.getY() + targetView.getHeight()));
              } catch (IllegalAccessException e) {
                   // We checked for this, so it should never happen
                   e.printStackTrace();
                   System.exit(1);

    Put your posted code inside code tags, or things like array element access expressions using common indices such as 'i' will be interpreted as italic by the forum software. Code tags are the word 'code' between square braces at the start and '/code' between square braces at the end.
    The fact that your code worked on a Mac is dumb luck. The code has a fatal flaw that causes the behavior you see on the Linux machines. Incidentally, Windows shows the same 'disappearing' problem.
    The error is in your draw() and drawPointers() methods. Both methods call
    panel.getGraphics()There is no guarantee that the Graphics object returned by this call is the same Graphics object being used to paint to the screen at any given moment. On a Mac, it appears to be. Elsewhere it clearly is not. You should be passing along the Graphics object handed to you in the paintComponent() method. This is the same Graphics object associated with the screen.
    protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            graphics = (Graphics2D) g;
            fontRenderContext = graphics.getFontRenderContext();
            for (ObjectView view : views) {
                view.draw(g);
            for (ObjectView view : views) {
                view.drawPointers(g, objects, views);
        } public void draw(Graphics g) {
            try {
                Graphics2D graphics = (Graphics2D) g;
    public void drawPointers(Graphics g, List<Object> objects, List<ObjectView> views) {
            try {
                Graphics2D graphics = (Graphics2D) g;

  • Running FDS2 Express as a service on Linux (Fedora Core)

    Hello,
    I've just installed the Flex Data Service 2 Express on a
    dedicated server running on linux (Fedora Core).
    I can run the server and everything works fine but as soon as
    I loggout, the server stops running.
    I believe I need to run as a "background" service or
    something like that.
    Any hint would be appreciated.
    Thanks in advance.

    To run in the background, use the nohup command and redirect
    your output to null or append & to the end of your command
    HTH
    Kumaran

  • Install 9iDB on Linux Fedora Core 3

    I expected a problem when I try to install 9iDB on Linux Fedora Core 3, the installation takes a long time and nothing is working, it stays at 0%.
    Have you any idea?
    Thanks

    Rajeev,
    this is not a good link because FC1 has 2.4 kernel. and old GLIBC.
    But there is serious problem to install 9i on OS with 2.6 kernel and GLIBC 2.3.
    My advice is install older OS version such as RH 7.2 - 9 or Suse 8,9, FC1
    Or simply dongrade the kernel to 2.4 version and also downgrade the GLIBC

  • Need driver nokia 5200 for linux fedora core 8

    Hi......
    Where i can download driver nokia 5200 for internet connectivity with nokia 5200 linux fedora core 8?
    Thanks

    The required driver is already in the kernel (cdc_acm).
    Although the N95 is used in this example, it should work for a 5200 as well:
    http://linux.sgms-centre.com/nokiafaq/mobile_broadband/
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Is it possible to install SAP PI7.0 on LINUX -FEDORA CORE 8 OS?

    Hi all,
    I have LINUX - Fedora core 8 OS, is it possible to install SAP PI 7.0 on this flavor of linux.
    If any one has already done the same, please guide me with the hardware and software requirements like (DB, JDK, etc).
    Any help would be appreciated and rewarded.
    Thanks,
    Younus

    Hi,
    Sure. you can able to install PI7.0 with Linux.
    The complete documentations are available in Service Market Place.
    Check this URL:
    https://websmp210.sap-ag.de/
    Thanks,
    Boopathi

  • Installing Linux Fedora

    Hello, I had Installed win 2003 and 98, and I also had Linux fedora on another partition, when I format my windows systems and install only win 2003 and when I try to repair the boot options the linux instalation gives me the followinf error:
    unable to align partition properly. this probably means that another partitioning tool generated an incorrect partition table, because it didn't have the correct bios geometry. it is safe to ignore but ignoring may cause (fixable) problems with some boot loaders. I ignored it, and the installation finished.
    I deleted my linux instalation, so when I try to install again it gives me the same. can anybody help me!!!!!!
    thanks

    There is bug in parted and there are many solutions or workaround for that.
    The simplest ever is:
    Go to BIOS and change the "access mode" from "AUTO" to "LBA".
    If this will notwork then check for further solutions here:
    https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=115980

  • Access Time Capsule Disk from Linux Fedora

    From my Linux Fedora, I am connected to the main wireless network for the TC. When I go to "Browse Network", I can see 2 destinations named M's TC (FileSharing), when I try to access the first one it opens but has no content at all! While the other one gives an error:
    Could not dispaly "Ms-TC.local (afp)"
    The file is of an unknown type
    Do you know how can I access the TC disk from Fedora?
    Thanks.

    I use FileBrowser app. It works. Their latest version is much easier to configure than earlier versions. You need to turn file sharing on and SMB on your time capsule disk.
    I use the time capsule disk to store a few files which I never want to be on my iPhone or iPad, but do want access to them. They are not backed up on the time capsule but since they also exist on my Mac, they are backed up from there.

  • Run and Deploy JavaFX applets on Linux Fedora

    Hi all,
    This is a step by step, how to run and deploy JavaFX applets on Linux/Fedora
    http://java-javafx-iipt.blogspot.com/2009/04/run-and-deploy-javafx-applets-on-linux.html
    Hope you find it useful.
    Kaesar ALNIJRES

    Something like this should workjava -cp /path-to-external-jar:SMSClient.jar TheMainClassWhen you use the -jar option, the -cp option is ignored. If you want to use -jar, you can add a Class-Path entry into theSMSClient jar's manifest with the relative path to the external jar.

  • JMF RTP and Linux/Fedora Core3

    Hello,
    I am attempting to use JMF 2.1.1e with Linux/Fedora Core3, and see an exception as:
    java.io.IOException: Can't open local data port: 51450
    at com.sun.media.datasink.rtp.Handler.open(Handler.java:141)
    Debugging more, I can see the Handler.open fails when it is trying to
    rtpmanager.initialize(localaddr);
    where localaddr is "SessionAddress()" (no args to the constructor).
    I am unable to debug beyond this. Any help?
    Best regards,
    -Arun.

    More debugging, but still at a block:
    It seems: com.sun.media.rtp.RTPSessionMgr is instantiated as the rtpmanager.
    There is no source for this and so cannot figure out why this fails.
    Best regards,
    -Arun.

  • T60p does not boot from new primary hard disk (Single-boot Linux/Fedora 14)

    Hi,
    I have just upgraded the primary disk in my T60p laptop (model 8742-C4G.) The BIOS recognised the disk fine, I partitioned it, marked the first partition as bootable, and then copied the OS (Fedora 14) and all my data back onto it. Then I installed the GRUB bootloader using the following commands:
    grub> root (hd0,0)
    grub> find /grub/stage1
    grub> setup (hd0)
    grub> quit
    I've also tried installing GRUB with "setup (hd0,0)" instead of "setup (hd0)", without success.
    This ran fine, exactly like with all the other PCs I've successfully performed this procedure on in the past. However, this laptop is refusing to boot from the new disk. There's no sign of any activity, either - just a flashing cursor in the top-left corner of the otherwise blank LCD panel. So I'm guessing that either the bootloader is failing immediately, or the laptop isn't executing the bootloader at all.
    The laptop is running the very latest v1.18 BIOS, and there are no beeps, POST errors or anything like that. My previous disk booted into Fedora 14 without any difficulty at all, of course.
    Can anyone suggest why the T60p is not booting, please? And also how to fix it? Is there any extra initialisation that I need to do in the BIOS, for example? (I haven't seen any...) The disk *does* appear in the BIOS's list of bootable media. Or maybe there's some special code that needs to be written into the MBR that GRUB doesn't know about?
    The disk is a 320 GB 7200rpm Western Digital drive, and the Lenovo/IBM salesperson assured me that it was fully compatible with a T60p laptop without the need for any extra firmware.
    Thanks in advance for any ideas, because I'm completely stumped at this point.
    Cheers,
    Chris
    N.B. This is a Linux laptop, and so Windows-centric suggestions aren't going to help me.

    You said you can't get into Windows safe mode, have you installed Windows on the hard drive?  Are you able to get into the BIOS for the controller?  
    If you aren't able to access the BIOS for the controller, it may be due to bad RAM.  If you are comfortable installing RAM and you have some extra laptop RAM of the same type (I think it's DDR3 for your controller) laying around, you can try swapping out the RAM.
    Was your hard drive damaged through some event, or did it just stop working?
    AC - LV Solver

  • T420s Linux (Fedora) Video -- Getting Started

    I installed Fedora 15 on my new T420s and it works fine so far except that I can only get a resolution of 1024x768 on the built-in LCD, instead of the 1600x900 which the screen supports. It works fine in Windows 7 at 1600x900. I have not tried an external monitor.
    I have been trying various things (Nvidia drivers, bumblebee, different BIOS settings) but so far they either did not work or had the same resolution limitation. Before I go into great detail, I thought I should check if anyone has Linux running at all on a T420s at 1600x900. If so, can you post your xorg.conf file and BIOS settings? That way I would have a working base configuration to work from. At this point I don't care if it uses the Intel or Nvidia graphics -- I just want the higher resolution to get started.
    BTW, when Fedora installed, it set up xorg.conf to use the vesa driver. The resolution applet lists choices of 1024x768, 960x600, and 800x600. I tried adding modes in xorg.conf, but that had no effect.
    Thanks in advance.

    Well, I already have the system installed, so I would like to just change the settings.
    I checked, and the Intel drivers are already installed. So I changed the BIOS to Integrated Graphics and changed my xorg.conf to say 'Driver "intel" ' instead of ' Driver "vesa" '. When I try to start X I get these messages:
    (EE) No devices detected.
    Fatal server error:
    no screens found
    I also tried  removing my xorg.conf and running "Xorg -configure". That tried to load all the drivers (mach64, vesa, etc.), then aborted when it loaded the nvidia driver and there was no nvidia hardware. So I deleted the nvidia driver files and now it complains that it cannot find the nvidia driver. I have not been able to figure out how Xorg knows what drivers (kernel modules) to load when I ask for -configure so I can tell it not to load the nvidia driver.
    You know, I have been using Linux since version 0.9 around 1990 and Unix since Seventh Edition() and I still cannot keep track of how the different configuration files keep changing.
     Thanks in advance for any insights or suggestions.

Maybe you are looking for