Missing Text under Linux

I've tried this site under FireFox and other linux browsers
running Flash 7, but mant text items do not show (see left panel
after clicking enter)
http://www.templatemonster.com/flash-templates/8123.html
Anyone know what the problem is here?

Did you set your environment variables via the supplied shell script ? If not please see the steps in the Linux Install Guide at http://download-west.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#CIHBCFDD
Specifically
3.2 Step 2: Set the Oracle Database XE Environment Variables
After you have installed and configured Oracle Database XE, users can set their environment before they can use Oracle Database XE. They do not need to log on with root permissions to do so. Oracle Database XE provides a script that sets the necessary environment variables.
Follow these steps:
1. Go to the /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin directory.
2. Look for the following scripts:
* oracle_env.csh (for C or tcsh shell)
* oracle_env.sh (for Bourne, Bash, or Korn shell)
3. Check the settings in the scripts to make sure that they are appropriate for your installation.
You do not need to change the ORACLE_HOME or ORACLE_SID settings, but you may need to set the NLS_LANG variable to point to your site's locale and character set. "Globalization Support—Configuring Locale and Character Sets with the NLS_LANG Parameter" describes this environment variable in detail.
4. Run the appropriate script for your shell. For example:
* Bourne, Bash, or Korn shell:
$ oracle_env.sh
* C or tcsh shell:
% source oracle_env.csh
You may also want edit your login or profile files so that these environment variables are set properly each time you log in or open a new shell.
For Bourne, Bash, or Korn shell, enter the following line into the .bash_profile (to log in) or .bashrc file (to open a new shell):
. /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
For C or tcsh shell, enter the following line into the .login file (to log in) or .cshrc file (to open a new shell):
source /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.csh

Similar Messages

  • Loss of keyboard focus in Java appl running under linux

    I have a small sample program that replicates my problem. When this program is run a window is created. If you select File->New another instance of the program window is created. Now if you try to go back and bring to front the first window, keyboard focus is not
    transferred when run under linux. You can only type in the second window. The expected behavior does happen in Windows.
    > uname -a
    Linux watson 2.6.20-1.2933.fc6 #1 SMP Mon Mar 19 11:38:26 EDT 2007 i686 i686 i386 GNU/Linux
    java -versionjava version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode, sharing)
    javac -versionjavac 1.5.0_11
    import java.awt.event.*;
    import javax.swing.*;
    class SwingWindow extends JFrame {
        SwingWindow() {
         super("SwingWindow");
         JMenuBar menuBar = new JMenuBar();     
            JMenu fileMenu = new JMenu("File");
            JMenuItem newItem = new JMenuItem("New");
            newItem.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent event) {
              SwingWindow.createAndShowGUI();
         fileMenu.add(newItem);
            menuBar.add(fileMenu);
            setJMenuBar(menuBar);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);       
         JTextField text = new JTextField(200);
         getContentPane().add(text);
         pack();
         setSize(700, 275);
        public static void createAndShowGUI() {
            JFrame frame = new SwingWindow();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    You can implement the FocusListener interface. When
    the first JFrame gains focus, call
    text.requestFocusInWindow(). I hope this helps.The call requestFocusInWindow is not helping, perhaps even making it worse.
    The problem seems to be that I am in the situation where the call
    KeyboardFocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner()
    is returning the expected Component. The problem is that the KeyListener class that is registered with the Component is not being called when a key is being pressed.
    The issue is that I have a component that has the keyboard focus, but the KeyListener class
    is not responding.
    This seems to be a linux only problem which makes it only mysterious.

  • How to enable OCR with Scangear MP under Linux for MG8250?

    Under Linux openSUSE 12.3 I use Scangear MP 1.80 for my Canon PIXMA MG8250.
    As a scan target (in my German GUI it's "Ziel") I can choose "OCR". But there is no text output, the scan is just saved as a picture. How can I configure Scangear to open the scan via Tesseract in a text editor.
    By the way, the target "Print" (in German "Drucken") leads to saving just as well, though there is at least one printer at hand, of course.
    It's a pity that the pixma scan drivers that are shipped with openSUSE don't work with xsane (the scanner starts working, but stops after one third of the page). Using xsane with a different scanner I can use OCR successfully.
    Volker

    There are two basic types of core OCR algorithm, which may produce a ranked list of candidate characters.
    Matrix matching involves comparing an image to a stored glyph on a pixel-by-pixel basis; it is also known as "pattern matching" or "pattern recognition". This relies on the input glyph being correctly isolated from the rest of the image, and on the stored glyph being in a similar font and at the same scale. This technique works best with typewritten text and does not work well when new fonts are encountered. This is the technique the early physical photocell-based OCR implemented, rather directly.
    Feature extraction decomposes glyphs into "features" like lines, closed loops, line direction, and line intersections. These are compared with an abstract vector-like representation of a character, which might reduce to one or more glyph prototypes. General techniques of feature detection in computer vision are applicable to this type of OCR, which is commonly seen in "intelligent" handwriting recognition and indeed most modern OCR software. Nearest neighbour classifiers such as the k-nearest neighbors algorithm are used to compare image features with stored glyph features and choose the nearest match.
    Software such as Cuneiform and Tesseract use a two-pass approach to character recognition. The second pass is known as "adaptive recognition" and uses the letter shapes recognized with high confidence on the first pass to better recognize the remaining letters on the second pass. This is advantageous for unusual fonts or low-quality scans where the font is distorted.
    So I wonder which kind of OCR algorithm are you using?

  • Cannot install JMF under Linux Mandrake 10

    I simply cannot install JMF under the Mandrake 10 Official Linux distribution. I downloaded the jmf-2_1_1e-linux-i586.bin file and tried to execute it as root. It unzipped some files then showed me an error message about AWT and GTK+. I found a hack consisting of modifying the .bin file to have the PATH variable point to SUN JDK, the error does not show up, but the installation still does not work. In fact, the installation works, but the Diagnostics applet keeps telling me than class files are not present. My Mozilla 1.6 Java plugin is working and displaying the applet. My JMF lib directory does not contain sound.jar, such jmf.jar. I set the CLASSPATH and LD_LIBRARY_PATH according to the readme.html file. I would like to know if it is a compatibility problem with Mandrake 10, the 2.6 kernel or if JMF just DO NO work under Linux. In the latter case, JMF is a violation to the Java portability philosophy and I would never use it on my own initiative, just if I were asked to.
    After the files are unzipped, I have the following warning and error messages.
    Warning:
    Name: HorScrollBar
    Class: XmScrollBar
    The specified scrollbar value is greater than the maximum
    scrollbar value minus the scrollbar slider size.
    JavaSound Capture Supported = true
    JavaSoundAuto: Committed ok
    java.lang.Error: Can't open video card 0
    java.lang.Error: Can't open video card 1
    java.lang.Error: Can't open video card 2
    java.lang.Error: Can't open video card 3
    java.lang.Error: Can't open video card 4
    java.lang.Error: Can't open video card 5
    java.lang.Error: Can't open video card 6
    java.lang.Error: Can't open video card 7
    java.lang.Error: Can't open video card 8
    java.lang.Error: Can't open video card 9
    Done.
    Even if I do not have a working video capture card (I have an ATI All-in-Wonder 128 but it is not working under 2.6 kernel), JMF should work because some people do not have a video capture card. I also tried with the cross-platform ZIP file, but this one does not contain sound.jar either and the Diagnostics applet keeps complaining about missing class files. I tried to search on the Web for solutions to this problem or for a way to change the CLASSPATH used by the Mozilla Java plug-in (if it uses a different CLASSPATH than the one from the environment variable), but nothing, nothing. Is there a distribution from which JMF would work better than Mandrake 10? Or can JMF work only under Microsoft Windows or Sun Solaris? I also tried Blackdown, but a README file directed me to the Sun's page, nothing to download here about JMF.

    well, your not the only one.
    I have it working in Debian, and JDS.(JMF is setup automatically in JDS).(2.6.6 kernel)
    I looked at the installation structure of JDS, and was able to duplicate what they did for Debian.
    Maybe it will work for Mandrake two??
    ok, all you have to do is copy or create soft links from your Mozilla directory, just like you did with the java plugin, and link to all the *.so files in JMF-2.1.1e/lib directory.
    Should work.
    I also read that not haveing the native files only matters if you are doing Capture. not play.
    to get your ATI All-in-Wonder 128 to work, make sure you install the correct driver, and have it working under linux, then try it in JMSTUDIO

  • How to output executable Bin file under linux from java

    Hi
    im beginner in java under linux and i want to out put my java programs to be bin files that can run
    if this not possilble
    how to run the output jar files with just double click ?
    does i have to run sh file that do the hob how?
    thanks in advance.

    say your main method (application's entry point) is located in a class com.my.Class,
    then first you create a text file (say, manifest.txt) that contains this line:
    Main-Class: com.my.Class
    [/code}
    and then you append this to the jar's manifest as such:
    jar cfm yourjarfile.jar manifest.txt [additional files you might want to add]
    for more info,
    http://java.sun.com/docs/books/tutorial/deployment/jar/manifestindex.html                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Analog Triggering and Interrupt generation on the PCIe-6320 under Linux

    We would like to use the analog triggering functions of the PCIe-6320 under Linux to time tag external events.
    I have no experience with the MH DDK but have been told this is what we would need to implement the functions we want. We plan on using Fedora Linux and we are targetting kernel 2.6.31 with the PREEMPT_RT patch applied. We may consider slightly more recent kernel versions. The PREEMPT_RT patch is used to greatly improve determinism in the system and get real-time responses to some external events.
    Here is what we wish to do in more details:
    We wish to route at least two analog inputs to the comparator, then route the output of the comparator to a digital input which in turn would create a PCIe interrupt. The interrupt software handler would than time tag that event for our application purposes. We need the comparator threshold to be software programmable in level and slope. We are also interested in using the Watchdog Timer feature of the board.
    Our application is written in C/C++.
    Would the above be feasible? Please provide comments and instructions how we should address our requirement.
    Thanks!

    Patof wrote:
    I am not familiar with the MHDDK. I would like to have an idea of the effort required to implement the functions I have described using MHDDK on Linux. Like I mentionned, we plan on using Linux kernel 2.6.31 with the PREEMPT_RT patch. Could you provide comments on that matter? I need to evaluate the amount of time I will need to spend to deploy and use MHDDK for the PCIe-6320.
    There are two factors to consider when writing a driver for your specific application:
    Using the deterministic kernel API calls
    Writing to the device registers to
    Control the watchdog timer
    Configure the analog comparator
    Manage the analog subsystem state as trigger events occur
    Handle device interrupts
    The MHDDK for X Series offers the following behavior out-of-the-tarball:
    A Linux kernel module using the standanrd kernel and PCI subsystem calls
    Mapping device registers to user-mode for access
    Demonstrating/documenting how to
    Control the watchdog timer (dioex6.cpp)
    Manage the analog subsystem state as trigger events occur (aiex2.cpp, aiex4.cpp)
    Handle device interrupts (reference manual only)
    There are two notably missing pieces and one item to consider:
    Missing: deterministic kernel API calls. If you decide to use the nirlpk module, you would need to change it from the standard interfaces to the deterministic variants.
    Missing: configuring the analog comparator. You will need to implement this with additional insight from this discussion board.
    Consider: if your application requires device access from kernel-mode only, you would not be able to use the MHDDK's C++ classes that perform device programming but would need to implement register programming in C.
    To estimate the time for these three, here are my recommendations:
    Review the nirlpk.c source file to understand how device access and DMA buffers are implemented and mapped to the user-mode application.
    Beware that operation-specific programming help (as you would need for analog triggering) typically requires two weeks for a complete response.
    Review the ChipObjects in the MHDDK distribution to understand how register addresses, widths, and bit fields affect device programming.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • Using Create PDF from Web Page; Resulting PDF is missing text

    Trying to create pdf's from various web pages.  Generally process works very well but some pages have missing text and bad formatting.   Specifically; http://www.robinhood.ca/Recipes/Occasions/Spring/Apricot-Tartlets
    When I create the PDF; I am missing the text under "directions" and the description is truncated and forced to the far right.  
    Seems like I am missing a formatting or font setting but I have adjusted everything I can think of and have had no luck.  
    Running Acrobat Pro XI.  
    Anybody have any thoughts?  

    yes; looking at the source; seems that <table> is being captured correctly but the part that is missing is a <div>.    I'm not an expert at deciphering the page source but seems like that is the problem.
    Is there a work around? 
    when I print via the firefox plugin it prints fine.  but i ultimately want to capture several layers on the site if I can get the formatting resolved. 

  • Missing text in many programs - Rox, Thunar, Deluge, etc [SOLVED]

    Hi all,
    I'm having a very confusing problem. Basically, text is just missing from certain programs. Here are a few quick examples:
    Thunar:
    Rox:
    Deluge:
    It's very strange. First of all, this just started happening recently, and I don't think after an update or anything. But I know "it just randomly started happening" is a dumb thing to say.
    Here is the info I think could be useful:
    -I have the ttf-freefont package and the xorg-font family of packages
    -I have updated and restarted since this happened; nothing has changed
    -The filenames look perfect if I just list them in the terminal (no newlines or anything)
    -The filenames that have disappeared aren't anything special, it's seemingly random (no weird characters in them)
    -The icons are totally fine
    -All the things with missing text are still totally functional if I use them
    -I thought this was a file manager issue, but it happening in Deluge too, so nope
    -I downloaded and tried Nautilus, same deal, but some files had random words from their name appear. Just as bad basically though
    -I also downloaded and tried Midnight Commander (a text based file manager) and everything is perfectly fine in it
    Any suggestions? This is very mysterious, and driving me nuts.
    Thanks!!
    Edit: To clarify, in the Thunar and Rox pictures I just took screenshots of a small portion of a folder. In the Deluge pictures, in the first one those 3 blank looking buttons in that menu should have more words (like "Remove Torrent"), and in the second one, those + and - buttons should also have text.
    Last edited by Declan (2012-05-10 00:41:48)

    Cairo 1.12 was just moved into [extra], so chances are this bug will reappear the next time you -Syu. If you're running Nouveau drivers, then the underlying cause of your issue might be this bug:
    https://bugs.archlinux.org/task/29495
    If this is indeed your issue, then you need to install the xf86-video-nouveau-0.0.16_git20120512-1 package from [testing]. If you re-enable [testing] and do an -Syu, it should automatically install this package.

  • Missing text in books on ipad

    Missing text from books downloade at times on the iPad

    Try closing the iBooks app. Press the home button to get to the home screen if you're not already there. Then double click the home button. Locate the iBooks icon at the bottom. Hold your finger down on it until a red minus appears. Tap the red minus. Press the home button to return to normal. Then relaunch iBooks.
    If that fails, delete the books, then you can redownload them under the Purchased tab in "Store."

  • Cannot start Cube Viewer under Linux

    The following bug was found for Windows platform.
    Do anyone have the patch for LINUX- SUSE. I have got the same problem under Linux but the patch is used for Window but it isn't any pacth for Linux there.
    The below description ist the same as for UNIX.
    fact: MS Windows NT
    fact: MS Windows 2000
    fact: MS Windows XP
    fact: Oracle OLAP Server 9.2.0.1.0
    fact: Oracle Enterprise Manger 9.2.0.1.0
    symptom: Olap Cube Viewer cannot be started
    symptom: An empty error window with a fire alarm symbol is displayed
    cause: Running Oracle 9.2.0.1.0 Enterprise Edition with the OLAP option on
    MS Windows.
    In Oracle Enterprise Manager Console:
    1. Startup the 9.2.0.1.0 Relational Database System.
    2. In Enterprise Manager: Select subtree Warehouse + OLAP + Cubes + SH
    3. Right-click on the COST_CUBE and select CUBE VIEWER from the popup menu.
    Minimize the Oracle Enterprise Manager Console window to see the window that
    is opened in the background. It says: "No materialized views have been
    created for this cube ... Do you want to continue viewing the cube?"
    => select button "Yes".
    Then the Oracle Enterprise Manager Cube Viewer starts loading. An error
    window with a fire alarm symbol and with an OK-button appears. There is no
    window title or error text displayed in the window.
    Selecting the OK-button will close the cube viewer window and the 9.2.0.1
    RDBMS instance is no longer running.
    fix:
    This problem is handled in <bug:2407685>
    Apply the following 9.2.0.1 Oracle OLAP patch like described in the patch
    readme file and reboot the machine (always create a backup before applying a
    patch):
    Patchnumber: 2323002
    OLAPI API FAILS ON WINDOWS 2000 & XP
    Product:Oracle OLAP Version:Oracle 9.2.0.1
    Platform:MS Windows NT/2000/XP Server
    To download the patch login to http:
    //metalink.oracle.com
    Select button "Patches", enter the Patch Number 2323002 and select
    the "SUBMIT" button.
    Thanks in advance for your help.
    Mehdi

    Patch/one-off 2323002 is not an issue with Linux. It addresses a bug on Windows 2000 & XP. Note that the Cube Viewer currently does not work with the SH Cubes. In short, there is an issue with support of denormalized snow flake schema. This will be fixed for Linux once the upcoming 9.2.0.2 patch set is released on MetaLink around Oct 4th.
    Cube Viewer does require that the OLAPI jar files located in $ORACLE_HOME\olap\olapi\lib be the exact same version as the Database Server. So you may have to update the OLAPI jar files on the machine that is running Cube Viewer. Download from the Database Server the correct express*.jar file and copy it to the OLAPI lib directory. Another thing, you may be running into the bug where CV hangs while writing to the log file. To fix this problem, please email me and ask for the Cube Viewer zip. I'll send you some files and intstructions.

  • Shell script to start, stop and restart a JAR under linux

    Hi everyone,
    Does anyone have idea to write a shell script to start, stop and restart a JAR under linux? it can also indicate a method or parameter? Thanks!
    this JAR inculdes a class with main method like this:
    public class Client(){
    public Client(String name){
    public void stopClient(){
    public static void main(String[] args){
    new Client("/tmp/text.log");
    }

    Does anyone have idea to write a shell script to
    start, stop and restart a JAR under linux? That part isn't really clear.
    Start would be java -jar myjar.jar.
    Stop could either be kill, which kills the whole process; kill -TSTP, which suspends the process, or some application-specific communication such as sending something over a port; or putting something into a file or something.
    Restart could just be the same as start (if stop is just kill); kill -CONT, if stop was kill -TSTP; or some other app-specific communication.

  • Question about labview under linux and the using of CIN....

    i have a problem with making Code Interface Node (CIN) with labview under LINUX... my goal is to make a CIN that can uses I2C interface (look to libk8000 from hihihihi), but it just work when i'm running it as ROOT ... is there a way to call the cin like as root.... thanks

    Hello Mister Pouf,
    Can you please explain more your problem? And give more details about it?
    Have you receive error message?
    Best Regards,
    Sanaa TAZI
    National Instruments France
    Sanaa T.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> http://www.nidays.fr/images/081110_ban_nidays09_468X60.gif

  • Exception in html parser under Linux

    Hi all,
    Following code is copied from Tech Tip 23Sep1999. I have compiled it and run it under Win98. It works fine for any uri. However, when I try to run it under Linux, it throws exceptions. I noticed that some web site can be parsered with the program in Linux but some can't. I wonder the different between those platforms. Anyone can tell me how to make the program works under Linux.
    Rgds,
    unplug
    configuration
    RedHat 7.1
    JDK1.3.1
    Failed: java GetLinks http://java.sun.com
    Worked: java GetLinks http://www.apache.org
    --begining of code
    import java.io.*;
    import java.net.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    class GetLinks {
    public static void main(String[] args) {
    EditorKit kit = new HTMLEditorKit();
    Document doc = kit.createDefaultDocument();
    // The Document class does not yet
    // handle charset's properly.
    doc.putProperty("IgnoreCharsetDirective",
    Boolean.TRUE);
    try {
    // Create a reader on the HTML content.
    Reader rd = getReader(args[0]);
    // Parse the HTML.
    kit.read(rd, doc, 0);
    // Iterate through the elements
    // of the HTML document.
    ElementIterator it = new ElementIterator(doc);
    javax.swing.text.Element elem;
    while ((elem = it.next()) != null) {
    SimpleAttributeSet s = (SimpleAttributeSet)
    elem.getAttributes().getAttribute(HTML.Tag.A);
    if (s != null) {
    System.out.println(
    s.getAttribute(HTML.Attribute.HREF));
    } catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    // Returns a reader on the HTML data. If 'uri' begins
    // with "http:", it's treated as a URL; otherwise,
    // it's assumed to be a local filename.
    static Reader getReader(String uri)
    throws IOException {
    if (uri.startsWith("http:")) {
    // Retrieve from Internet.
    URLConnection conn=
    new URL(uri).openConnection();
    return new
    InputStreamReader(conn.getInputStream());
    } else {
    // Retrieve from file.
    return new FileReader(uri);
    --End of code
    --Exception in Linux
    Exception in thread "main" java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:120)
    at java.awt.Toolkit$2.run(Toolkit.java:512)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:503)
    at javax.swing.text.html.CSS.getValidFontNameMapping(CSS.java:932)
    at javax.swing.text.html.CSS$FontFamily.parseCssValue(CSS.java:1789)
    at javax.swing.text.html.CSS.getInternalCSSValue(CSS.java:531)
    at javax.swing.text.html.CSS.addInternalCSSValue(CSS.java:516)
    at javax.swing.text.html.StyleSheet.addCSSAttribute(StyleSheet.java:436)
    at javax.swing.text.html.HTMLDocument$HTMLReader$ConvertAction.start(HTM
    LDocument.java:2536)
    at javax.swing.text.html.HTMLDocument$HTMLReader.handleStartTag(HTMLDocu
    ment.java:1992)
    at javax.swing.text.html.parser.DocumentParser.handleStartTag(DocumentPa
    rser.java:145)
    at javax.swing.text.html.parser.Parser.startTag(Parser.java:333)
    at javax.swing.text.html.parser.Parser.parseTag(Parser.java:1786)
    at javax.swing.text.html.parser.Parser.parseContent(Parser.java:1821)
    at javax.swing.text.html.parser.Parser.parse(Parser.java:1980)
    at javax.swing.text.html.parser.DocumentParser.parse(DocumentParser.java
    :109)
    at javax.swing.text.html.parser.ParserDelegator.parse(ParserDelegator.ja
    va:74)
    at javax.swing.text.html.HTMLEditorKit.read(HTMLEditorKit.java:239)
    at GetLinks.main(GetLinks.java:23)

    Support for CSS and clearly defined.Also Dictionary getDocumentProperties() is not properly exaplained meaning it doesnt give methods to get all the properties a HTML document can have.

  • Using JCOP tools under Linux

    Hello.
    I looked through the older web sites of IBM regarding the usage of JCOP tools under Linux.
    I am interested in following questions:
    1. Is there any separate distributon version of JCOP tools for Linux?
    2. Can sample JCOP tools 3.1.2 plugin (for Windows) be used under Linux. What has to be modified? Also what additional tools have to be installed an used for communication with real cards through PC/SC readers.
    3. Is JCOP simulation option available under Linux?
    I'll appreciate any help.
    Best regards,
    newbie

    newbie2007 wrote:Hello.
    I looked through the older web sites of IBM regarding the usage of JCOP tools under Linux.
    I am interested in following questions:
    1. Is there any separate distributon version of JCOP tools for Linux?
    2. Can sample JCOP tools 3.1.2 plugin (for Windows) be used under Linux. What has to be modified? Also what additional tools have to be installed an used for communication with real cards through PC/SC readers.
    3. Is JCOP simulation option available under Linux?
    I'll appreciate any help.
    Best regards,
    newbieEverything should work, except for the target pack and the non-existent Linux Pegoda driver.1. The is no seperate Linux distribution. You just need a Linux distribution for Eclipse.JCOP Tools plugin should work under Linux, except for the target pack and the non-existent Pegoda driver for Linux.1. There is no seperate Linux distribution. You just need the Linux distribution for Eclipse.
    2. Prior to JCOP Tools 3.1.2 the last time something was mentioned about Linux was in the release notes of 3.1.1b . In version 3.2.0 IBM added a linux_support page to the JCOP Tools user guide (see release notes and linux_support page below).
    3. There shouldn't be any problems with the generic simulation. The target pack runs only with Windows though.
    h1. Release Notes
    h2. Version
    JCOP Tools 3.1.1.b (B&auml;rlach)
    h2. What's new?
    h3. 3.1.1.b
    <ul><li>New simulation (fixed static obj/arr bug, fixed instance field token bug).</li>
    <li>Applet privileges can now be specified in the launch configuration dialog.</li>
    <li>The "exportmap" feature is now available.</li>
    <li>The JCOP Performance Test Demo ("JCOP Factor") is now included.</li>
    <li>Minor bug fixes.</li>
    </ul>
    h2. Known problems
    <ul><li>Simulations do not run (Linux, MacOS X)
         The Eclipse update manager does not set the execute permission bits for the simulations. You need to manually <code>chmod 755</code> those files in ECLIPSE/plugins/com.ibm.bluez.jcop.eclipse_3.1.1.x/simuls/
    </li>
    <li>PC/SC Support (Linux)
         JCOP Tools only works with pcsc-lite 1.2.0.
    </li>
    </ul>
    h2. Frequently Asked Questions
    Please refer to the online FAQ at http://www.zurich.ibm.com/jcop/download/eclipse/faq/.
    h2. Bug Reports
    Please send bug reports to [email protected]. Make sure you include the following:
    <ul><li>Problem description</li>
    <li>Steps to reproduce</li>
    <li>Eclipse version and build number (Help > About)</li>
    <li>JCOP Tools version (Help > About; click on BlueZ icon)</li>
    </ul>
    h2. Using JCOP Tools with Linux (>= 3.2.0)
    h3. ___
    Overview
    The current JCOP Tools release now also offer a version for the popular Linux
    operating system. Both the Windows and Linux verson provide more or less the same
    functionality, and JCOP application development can thus fully succeed on Linux systems.
    Nevertheless, installation of the JCOP Tools differ between Windows and Linux
    where the Linux version does not provide a simple installer as in case of Windows.
    Additionally, the Linux version expects a properly setup Muscle PCSC installation
    as soon as you want to use them together with physical, real cards. As Muscle
    PCSC is still not shipped with most Linux distributions, you must download and
    install them separately from the JCOP Tools.
    h3. ___     
    Contents
    h3. ___
    Software Requirements
    Linux distribution
    The JCOP Tools simulation has been developed on a Fedora Core 6 system, but should also work in case of
    many other recent Linux distributions.
    Java Development Kit
    The JCOP Tools have been developed and tested with the Sun JDK 1.4.2_13-b06
    for Linux. Your success with other Development Kits may vary as there are
    partly subtle differences across the different devlopment kits.
    PCSC
    The JCOP Tools use PCSC to talk with real cards on Linux. Most distributions
    do not ship with Linux PCSC by default (Fedora Core 6 does), you must thus download it fromhttp://www.linuxnet.com
    and install it by yourself. If you are used to software installation under Linux,
    and are not afraid of compiling and installing software packages, this should
    not be a hard problem. You have to download both the base PCSC package
    (including PCSC daemon and client libraries) and separately the driver
    for the reader you want to use. The PCSC package contains a test program
    which should tell you whether your installation is set up correctly and
    communicating with a card works. The JCOP Tools have been reported to
    work together with Muscle PCSC version 1.3.1-7.
    JPCSC
    The JCOP Tools are shipped with JPCSC which you can also download athttp://www.linuxnet.com. JPCSC
    is a JNI library which offers Java applications the access to PC/SC functions
    by mapping their requests to an underlying native PC/SC implementation. The JCOP
    Tools - mostly written in Java - thus depend on JPCSC to communicate with real cards
    on Linux. JPCSC depends on a properly installed and setup PC/SC environment.
    Especially, the JAVA_LIBRARY_PATH should list the directories where the
    PC/SC client libraries and the native JPCSC library libjpcsc.so ( downloadable as binary from
    Windows Binary Download Here )
    are installed, the CLASSPATH variable should list th___
    Miscellaneous
    What should work
    As soon as you setup your system correctly, there should only be minor differences
    between using JCOP Tools on Windows or on Linux. Emulating a real JCOP,
    debugging, shell, cap-file conersion should all be possible as in case of Windows.
    What is missing
    No drivers or tools are currently available for using JCOP30's in contactless
    mode. If you need such support, please contact directly NXP
    at for further assistance.
    Copyright 2001,2007 IBM Corp. All rights reserved.
    Edited by: lexdabear on Sep 28, 2007 4:13 PM (I hate the new edit)

  • Mount UFS under linux

    Hi
    I have a disk formated by solaris(sparc),but the host is crashed,the only chose for me is mount the disk under linux system(RHEL5.6).
    I have Upgraded the kernel,so Linux can recognize UFS.
    But when I try to mount the UFS disk with command :
    *[root@sgfsd055 log]# mount -t ufs -o ufstype=sun,ro /dev/sdc3 /mnt/*
    I got :
    mount: wrong fs type, bad option, bad superblock on /dev/sdc3,
    missing codepage or other error
    In some cases useful info is found in syslog - try
    dmesg | tail  or so
    When I cat /var/log/messages:
    Sep 18 21:17:14 sgfsd055 kernel: UFSD (fs/ufs/super.c, 645): ufs_fill_super:ENTER
    Sep 18 21:17:14 sgfsd055 kernel: UFSD (fs/ufs/super.c, 652): ufs_fill_super:flag 1
    Sep 18 21:17:14 sgfsd055 kernel: UFSD (fs/ufs/super.c, 336): ufs_parse_options:ENTER
    Sep 18 21:17:14 sgfsd055 kernel: UFSD (fs/ufs/super.c, 713): ufs_fill_super:ufstype=sun
    Sep 18 21:17:14 sgfsd055 kernel: ufs_read_super: fragment size 8192 is too large
    Sep 18 21:17:14 sgfsd055 kernel: UFSD (fs/ufs/super.c, 1102): ufs_fill_super:EXIT (FAILED)
    Any help please?

    Thank you for your reply,fdisk -l output as below:
    [root@sgfsd055 ~]# fdisk -l
    Disk /dev/sda: 147.0 GB, 147086327808 bytes
    255 heads, 63 sectors/track, 17882 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 65 522081 83 Linux
    /dev/sda2 66 5287 41945715 83 Linux
    /dev/sda3 5288 7898 20972857+ 82 Linux swap / Solaris
    /dev/sda4 7899 17882 80196480 5 Extended
    /dev/sda5 7899 17882 80196448+ 83 Linux
    Disk /dev/sdb: 147.0 GB, 147086327808 bytes
    255 heads, 63 sectors/track, 17882 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sdb1 * 1 17882 143637133+ 83 Linux
    Disk /dev/sdc (Sun disk label): 255 heads, 127 sectors, 60075 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdc3 u 0 60075 972764437+ 5 Whole disk
    /dev/sdc7 0 60075 972764437+ 4 SunOS usr
    Disk /dev/sdc3 (Sun disk label): 255 heads, 127 sectors, 60075 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdc3p3 u 0 60075 972764437+ 5 Whole disk
    /dev/sdc3p7 0 60075 972764437+ 4 SunOS usr
    Disk /dev/sdc7 (Sun disk label): 255 heads, 127 sectors, 60075 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdc7p3 u 0 60075 972764437+ 5 Whole disk
    /dev/sdc7p7 0 60075 972764437+ 4 SunOS usr
    Disk /dev/sdd (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdd3 u 0 58178 942047265 5 Whole disk
    /dev/sdd7 0 58178 942047265 4 SunOS usr
    Disk /dev/sdd3 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdd3p3 u 0 58178 942047265 5 Whole disk
    /dev/sdd3p7 0 58178 942047265 4 SunOS usr
    Disk /dev/sdd7 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdd7p3 u 0 58178 942047265 5 Whole disk
    /dev/sdd7p7 0 58178 942047265 4 SunOS usr
    Disk /dev/sde (Sun disk label): 255 heads, 127 sectors, 60707 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sde3 u 0 60707 982998097+ 5 Whole disk
    /dev/sde7 0 60707 982998097+ 4 SunOS usr
    Disk /dev/sde3 (Sun disk label): 255 heads, 127 sectors, 60707 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sde3p3 u 0 60707 982998097+ 5 Whole disk
    /dev/sde3p7 0 60707 982998097+ 4 SunOS usr
    Disk /dev/sde7 (Sun disk label): 255 heads, 127 sectors, 60707 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sde7p3 u 0 60707 982998097+ 5 Whole disk
    /dev/sde7p7 0 60707 982998097+ 4 SunOS usr
    Disk /dev/sdf (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdf1 0 9 145732+ 2 SunOS root
    /dev/sdf2 u 9 18 145732+ 3 SunOS swap
    /dev/sdf3 u 0 58178 942047265 5 Whole disk
    /dev/sdf7 18 58178 941755800 4 SunOS usr
    Disk /dev/sdf1 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdf1p1 0 9 145732+ 2 SunOS root
    /dev/sdf1p2 u 9 18 145732+ 3 SunOS swap
    /dev/sdf1p3 u 0 58178 942047265 5 Whole disk
    /dev/sdf1p7 18 58178 941755800 4 SunOS usr
    Disk /dev/sdf3 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdf3p1 0 9 145732+ 2 SunOS root
    /dev/sdf3p2 u 9 18 145732+ 3 SunOS swap
    /dev/sdf3p3 u 0 58178 942047265 5 Whole disk
    /dev/sdf3p7 18 58178 941755800 4 SunOS usr
    Disk /dev/sdg (Sun disk label): 255 heads, 127 sectors, 58494 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdg3 u 0 58494 947164095 5 Whole disk
    /dev/sdg7 0 58489 947083132+ 4 SunOS usr
    Disk /dev/sdg3 (Sun disk label): 255 heads, 127 sectors, 58494 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdg3p3 u 0 58494 947164095 5 Whole disk
    /dev/sdg3p7 0 58489 947083132+ 4 SunOS usr
    Disk /dev/sdg7 (Sun disk label): 255 heads, 127 sectors, 58494 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdg7p3 u 0 58494 947164095 5 Whole disk
    /dev/sdg7p7 0 58489 947083132+ 4 SunOS usr
    Disk /dev/sdh (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdh3 u 0 58178 942047265 5 Whole disk
    /dev/sdh7 0 58178 942047265 4 SunOS usr
    Disk /dev/sdh3 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdh3p3 u 0 58178 942047265 5 Whole disk
    /dev/sdh3p7 0 58178 942047265 4 SunOS usr
    Disk /dev/sdh7 (Sun disk label): 255 heads, 127 sectors, 58178 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdh7p3 u 0 58178 942047265 5 Whole disk
    /dev/sdh7p7 0 58178 942047265 4 SunOS usr
    Disk /dev/sdi (Sun disk label): 255 heads, 127 sectors, 57577 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdi3 u 0 57577 932315572+ 5 Whole disk
    /dev/sdi7 0 57576 932299380 4 SunOS usr
    Disk /dev/sdi3 (Sun disk label): 255 heads, 127 sectors, 57577 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdi3p3 u 0 57577 932315572+ 5 Whole disk
    /dev/sdi3p7 0 57576 932299380 4 SunOS usr
    Disk /dev/sdi7 (Sun disk label): 255 heads, 127 sectors, 57577 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdi7p3 u 0 57577 932315572+ 5 Whole disk
    /dev/sdi7p7 0 57576 932299380 4 SunOS usr
    Disk /dev/sdj (Sun disk label): 255 heads, 127 sectors, 58810 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdj3 u 0 58810 952280925 5 Whole disk
    /dev/sdj7 0 58810 952280925 4 SunOS usr
    Disk /dev/sdj3 (Sun disk label): 255 heads, 127 sectors, 58810 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdj3p3 u 0 58810 952280925 5 Whole disk
    /dev/sdj3p7 0 58810 952280925 4 SunOS usr
    Disk /dev/sdj7 (Sun disk label): 255 heads, 127 sectors, 58810 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdj7p3 u 0 58810 952280925 5 Whole disk
    /dev/sdj7p7 0 58810 952280925 4 SunOS usr
    Disk /dev/sdk (Sun disk label): 255 heads, 127 sectors, 58264 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdk3 u 0 58264 943439820 5 Whole disk
    /dev/sdk7 0 58264 943439820 4 SunOS usr
    Disk /dev/sdk3 (Sun disk label): 255 heads, 127 sectors, 58264 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdk3p3 u 0 58264 943439820 5 Whole disk
    /dev/sdk3p7 0 58264 943439820 4 SunOS usr
    Disk /dev/sdk7 (Sun disk label): 255 heads, 127 sectors, 58264 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdk7p3 u 0 58264 943439820 5 Whole disk
    /dev/sdk7p7 0 58264 943439820 4 SunOS usr
    Disk /dev/sdl (Sun disk label): 255 heads, 127 sectors, 59442 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdl3 u 0 59442 962514585 5 Whole disk
    /dev/sdl7 0 59442 962514585 4 SunOS usr
    Disk /dev/sdl3 (Sun disk label): 255 heads, 127 sectors, 59442 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdl3p3 u 0 59442 962514585 5 Whole disk
    /dev/sdl3p7 0 59442 962514585 4 SunOS usr
    Disk /dev/sdl7 (Sun disk label): 255 heads, 127 sectors, 59442 cylinders
    Units = cylinders of 32385 * 512 bytes
    Device Flag Start End Blocks Id System
    /dev/sdl7p3 u 0 59442 962514585 5 Whole disk
    /dev/sdl7p7 0 59442 962514585 4 SunOS usr
    [root@sgfsd055 ~]#

Maybe you are looking for

  • We need a one apple ID for many iPads

    We have a school in the Czech Republic 30 iPad and need one ID for all tablets to make themselves updated and transmitted purchases. Is it possible? school - http://www.sps-ub.cz We cooperate with apple Czech Republic. when we asked them an it failed

  • BOE XI 3.0 SDK connection

    Hi all, I am trying to connect via SDK to BO Edge 3.0, with the following code: import com.crystaldecisions.sdk.exception.SDKException; import com.crystaldecisions.sdk.framework.CrystalEnterprise; import com.crystaldecisions.sdk.framework.CrystalEnte

  • Why under print settings, media type, CD/DVD is grayed out? I cannot print on the DVD directly

    I have Photoshop Elements 6. Trying to print pictures on DVD. But under the Media options for printing the CD/DVD option is grayed out so I cannot click on it? any ideas? Thanks

  • Breeze xml??????

    After Apples help I noticed over 1600 breeze xml files in my documents. Can these be deleted? Is there an easy way to do this without clicking on 1600 files.Thanks.

  • What are the differences between StreamConnection and SocketConnection?

    hi guys. i desperately needs some explanation. i have google and the results are nt useful What are the differences between StreamConnection and SocketConnection? i have a j2se server using a serverconnection. the articles on the web are contradictor