Software :: Alice Animation Program And Ubuntu - Keep Getting Java And Or Alice Errors

Apr 5, 2010

I have been trying to install Alice on the latest version of Ubuntu but keep getting java and or Alice errors. Have not yet found a version set up for Ubuntu and nothing shows up in the repositories.

View 4 Replies


ADVERTISEMENT

Ubuntu :: Can't Run Alice 2.0

Apr 6, 2010

I'm trying to run Alice 2.0, I followed the instructions on their website: Run the command

Code:
tar xvfz Alice-2.0.0.tar.gz
Then run
Code:
cd Alice/Required

[Code].....

View 4 Replies View Related

Ubuntu :: Installing/running Alice 2.0 In 10.10?

Jun 21, 2011

I'm having trouble getting Alice 2.0 to run on my Ubuntu 10.10 machine. I extract the tarball to /opt as per usual and change ownership of the folder to myself so that I can actually run it.When moving into the folder in terminal I ./run-alice as I was told to in the README but it gets stuck. Here's the output:

Code:

matt@Bertha:/opt/Alice/Required$ ./run-alice
attempting to register mp3 capability...
java.lang.reflect.InvocationTargetException

[code].....

View 1 Replies View Related

Debian Multimedia :: Play Alice In Wonderland DVD?

Jun 23, 2010

I just bought the new 2010 Alice in Wonderland DVD with Johnny Depp (no he wasn't shopping with me, he's in the film), but I can't play it with either Totem or mplayer. Anyone else?

EDIT: Oh yeah, I'm using Squeeze.

View 14 Replies View Related

Fedora :: Effect Errors In Compiz Animation Plugin

Mar 14, 2009

Using Compiz's animation plugin, only the open and close effects work. When any entries are listed under the "Animation Selection" for Minimize, Focus, or Shade; the animations do not play; and I receive a libnotify error: "Animation settings mismatch in 'Animation Selection' list for __<Minimize or Focus or Shade>___ event."This happens even with the Animation Selection values reset and even the entire Animation configuration reset. I use the Gconf backend, but this also occurs with a file-based configuration. This has never worked for me.

View 3 Replies View Related

Software :: Stop Motion Animation Program For OpenSUSE 11.2

Feb 20, 2010

I have a relative who's starting Linux. He wants a Stop Animation Program for openSUSE 11.2. Is there a stop motion animation program in Linux? If so, what is it? I could switch to Ubuntu, Fedora, or Debian if necessary.

View 1 Replies View Related

General :: Connect A Jsp Program With A Java Program?

Apr 30, 2010

I have a jsp code. After executing that code, a Java program should be executed without refreshing the page. that is, my first page is a login page which is in jsp. After logging in the next page must be displayed which is a Java code. is that possible? Can we use applet for that?

View 1 Replies View Related

Ubuntu Networking :: Errors With RMI In Java?

Jun 3, 2011

Recently, I've been tasked with a bit of db stuff that uses a vpn and java client (I don't think I can talk too much about it). The java client runs fine over the ciscovpn connection on an xp machine, however my problem is running it on Linux: the application successfully connects to the server over vpn to download the application, however it then throws an error about RMI being unable to connect later, and to check if the RmiServer is running...

I don't know too much about the application, other than its made by UC4 (Intelligent Service Automation), however if the following stack trace is helpfull:

Code:
java.net.SocketException: Network is unreachable
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)

[Code]....

View 2 Replies View Related

Programming :: Java AT Command Writing Errors?

Nov 11, 2010

I am running a java application on centos. For now I have a gsm modem connected via the the usb cable. Below is the message I get when I type the command dmesg | grep tty

serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
usb 2-2: pl2303 converter now attached to ttyUSB0

[code]....

View 9 Replies View Related

Installation :: Install Java Program On Ubuntu?

May 9, 2010

How can i do Java programming on ubuntu.
i mean how to install java on ubuntu.
i tried but fail to install jdk.

View 1 Replies View Related

Ubuntu :: Make Shortcut To Java Program?

Sep 15, 2010

How to make a shortcut to a program?

It's a Java program started by a shell script

#!bin/sh
java -jar LinShredder.jar

It starts okay in its original folder, but when I link to it from e.g. the desktop it doesn't work.

View 9 Replies View Related

Ubuntu Servers :: Force Java Program To Use More CPU

Mar 23, 2011

I have ubunto 10_4 X86-64 (I use putty to connect)
installed apps
screen
mysql server-client
my java program
open jdk* 64bit
apanche2 (the web server stuff)
and its aVPS machine
Xeon 2.0 64bit 4 GB ram

How can I make (or force) my java program to use more then 1 core? I would like it to be using just 5 of the 6 that I have. I use a .sh to run it this is the code for it.
Code:
#!/bin/bash
cd "${0%/*}"; java -Xshare:auto -Xmx2662M -jar craft.jar

View 5 Replies View Related

Ubuntu :: Execute A Java Program Without Ssh Connection

May 9, 2011

I would like that my java program continues executing when I close the ssh connection, how can I do that? I suppose I have to create a service, but I have no idea how to do it!

View 3 Replies View Related

Software :: Trying To Run Java Program ?

Mar 25, 2011

I have a problem starting a java program.

I installed and am trying to run Antelope an ant file editor. When I try to start antelope I get the trace-back listed below.

When I first tried to start Antelope it asked me where ant/lib was located. I pointed it to /usr/share/ant/lib which has 3 jar files named ant.jar ant-bootstrap.jar and ant-launcher.jar.

I am running in Fedora14. With java version "1.6.0_20"

OpenJDK Runtime Environment (IcedTea6 1.9.7) (fedora-52.1.9.7.fc14-i386)

OpenJDK Client VM (build 19.0-b09, mixed mode) and javac 1.6.0_20

When I try to start it I get

Code:

I have tried it 2 ways, one with the environment variable ANT_HOME set to /use/share/ant/lib - which has some 3 jar files - and also to /home/knox/apache-ant-1.8.2/lib which has about 25 jar files. Same error message both ways.

View 15 Replies View Related

Programming :: C Program That Displays Shapes - Keep Getting Errors

Oct 10, 2010

Here is my program. It asks the user for input and then prints a shape of a certain length. The errors I get when I compile are:

shape.c: In function "main":
shape.c:22: error: expected identifier or "(" before "int"
shape.c:58: error: expected expression before "return"
shape.c:59: error: expected expression before "}" token
shape.c:59: error: expected expression before "}" token
#include<stdio.h> .....

View 14 Replies View Related

Ubuntu :: Connecting Database With Java Query Program?

Jun 22, 2010

I've got a database and I've got a Java program that I'm programming in Netbeans that is suppose to run queries to the database. how I will set about to connect the database with the Java program so that I can run the queries?

It is very important that I learn how to do this, else I am forced to go back to XP in order to finish this project on time.

View 2 Replies View Related

Fedora :: Run A Jar (java) Written Program?

Apr 28, 2010

Trying to use the html editor 'Arachnophilia'... here are the instructions on their website. ".Open a command console (Linux: shell console), move to the Arachnophilia program directory, type "java -jar Arachnophilia.jar" For convenience, this command can be made part of a shell script, and those using X windows can easily make a desktop icon." hoping someone can explain how to run this program.. using a new install of fedora 12 (which has java)...i'm a newbie, trying to go open source on a low end laptop - LOVE Fedora .[URL]..

View 14 Replies View Related

General :: Install Java Or Any Other Program?

Apr 27, 2010

I just got linux yesterday, ubuntu 9.1, with the wubi installer. I have no previous knowledge of linux and I am having a very hard time working out how to install or run any programs, at the moment I'm trying to get java to work.

View 4 Replies View Related

General :: Run Commands Using A Java Program?

Apr 9, 2010

I want to execute Linux commands using a Java program. I came to know that we can use Runtime.getRuntime().exec("commands") to execute the commands through the program. I'm new to both Linux and Java.

View 2 Replies View Related

Ubuntu :: Bunch Of C Errors On Program Compilation - Unsupported And Virtually Unknown

Feb 24, 2011

I'm attempting to install a small application called Asymptopia Flashcard System on Xubuntu x64. It's unsupported and virtually unknown, so I don't know many details about it aside from what I can gather from the source files. The first step in the installation directions is to type "make lib_install" as root at the command line. I get this output:

Making libasymptopia.so ... compiling Path.C ... Path.C: In member function �void Path::listdir(char*, std::deque<char*, std::allocator<char*> >*): followed by a bunch of errors like this: Path.C:38: error: �strcmp� was not declared in this scope

all for the file Path.C, all of them complaining about various header files not being declared. I have the latest version of gcc installed, so I'm very confused about what the problem is. This application is at least a few years old...maybe there's something out-of-date about the way it includes the header files?

View 1 Replies View Related

Ubuntu :: Difficulty Creating Launcher For Java Program From Terminal?

Jan 17, 2010

I run a program by executing this command in a terminal screen.Code:coco@coco-desktop:~/Escritorio/MO_1.10/MagnumOpus$ java -jar MagnumOpus.jarSince it is a bit tedious, I tried to create a launcher. I copied the above code into the Command box. The launcher is created, but fails to run the program. Instead I get an error message.

View 6 Replies View Related

Fedora :: Open A Java Program In Foreground

May 25, 2010

I have a java program with gui. I want to start this program in the start of system (rc3.d) and when I connect to the machine bring to front without open another time the program. I want to connect to opened program in the start of system.

View 1 Replies View Related

General :: CentOs Java Program Doesnt Pop Up?

Jul 24, 2011

So this picture will explain [URL].. So after i typejj java -jar RSBot-257.jar it should have to come ijj up.It doesent show any errors but doesent start.What to do?

View 1 Replies View Related

General :: Restart PADS From Java Program

Jul 7, 2010

I am facing problems to restart PADS(Passive asset detection system) from java program.I used the root as a user. So from the command prompt I can start PADS with out sudo ,but when I try to start PADS from the my java program i.e.

Process proc=Runtime.getRuntime().exec("pads restart");

It throws the error in log that FATAL error ! you not root and permission denied.

Then I tried the same with sudo

Process proc=Runtime.getRuntime().exec("sudo pads restart";

Here it create another two process extra
1 for stop the pads
2) for start the pads

It does not kill the previous process of PADS .and both the process get hung.

View 1 Replies View Related

Programming :: Debug Remotely A Java Program With Ddd?

Jun 4, 2011

Is it possible to debug remotely a java program with ddd (data display debugger)?

View 2 Replies View Related

Programming :: Java Program Sshing To Server?

Aug 12, 2010

I am trying to write a java program and eventually a web app to do the following.1. get the server name, username, password from the user and ssh to the linux box.2. goto a folder, open a script file (the file has different function calls, I need to comment all other function calls and just un-comment the one I want to use)

#call_1
call_2
#call_3

[code]....

View 1 Replies View Related

Programming :: Java Program To Display All IP Addresses In LAN?

Feb 25, 2011

I Want to Develop Network Scanner Software. For that i need "Java Program to Display All IP Addresses in LAN".

View 3 Replies View Related

Programming :: Restart The Program Execution - Java

May 3, 2011

In gui validation if user enters string in integer requiring field, a dialog box pops out. So on clicking the button i want to stop the program execution and return to the previous jframe(either the same one or newly created object of it).

How can i handle this in java.
I tried calling main(); but it doesn't work.
Also System.exit(0); doensn't work.

View 1 Replies View Related

Programming :: Get Errors When Marc Greis 7 Th Chapter Ping Program Was Tried?

Dec 16, 2010

Please let me know how i will overcome this.I have tried from the past 5 days.

[root@localhost ~]# cc p.cc
In file included from p.cc:1:
/root/ping.h:2:32: warning: multi-character character constant
In file included from p.cc:1:
/root/ping.h:4: error: stray in program
/root/ping.h:2: error: invalid function declaration

[Code]...

View 2 Replies View Related

Programming :: Errors - Make Pop-up Reminders For The Simple Calendar Program?

Feb 21, 2010

First off, I'm completely new to bash scripting so forgive me if I make any egregious errors. I'm trying to make pop-up reminders for the simple calendar program when. This is what I have so far:

Code:
#!/bin/bash
# set the time format for when
#current="$(date +%I:%M %p)"
current="$(date +%-l%p)"
today=~/.when/today

[Code]....

When I run the script, gxmessage pops up and displays the correct information, but it does so for each line in "~/.when/today" that contains a time that matches the current system time (which would be three pop-ups at 10PM, according to the example). I want it to display the information only once. How can this be accomplished? Is a while loop even the right job for this?

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved