User Profile

Collapse

Profile Sidebar

Collapse
ganeshp
ganeshp
Last Activity: Jul 11 '08, 10:37 AM
Joined: May 15 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ganeshp
    replied to GCC 4.3.1 installtion problem
    Thank you very much for your interest in answering my question.

    Assembler messages:
    The error during build was like "Error: no such instruction: `roundsd ..."

    I installed latest binutils from "ftp://sourceware.org/pub/binutils/snapshots "
    this latest binutils included the latest assembler (set the PATH variable to the directory where this assembler is located , actually the new as was...
    See more | Go to post

    Leave a comment:


  • ganeshp
    started a topic GCC 4.3.1 installtion problem

    GCC 4.3.1 installtion problem

    Hi All,

    I have installed gcc 4.3.1 compiler , but the assembler used to build gcc 4.3.1 was the one that came by default with SLES 10 SP1.

    Can anybody point me to the link from where i can download latest assembler ?

    Regards,
    See more | Go to post

  • ganeshp
    started a topic error using sunstudio compiler on suse linux

    error using sunstudio compiler on suse linux

    Hi ,

    When i try to build my appliation-1 and application-2 , I am experiencing below given errors

    OS:
    SUSE Linux Enterprise Server 10 (x86_64)
    VERSION = 10
    PATCHLEVEL = 1

    Compiler Version:
    cc: Sun Ceres C 5.10 Linux_i386 2008/03/24
    usage: cc [ options] files. Use 'cc -flags' for details

    Application1:
    Error:
    CC: Cannot find /comp/sun/sunstudioceres/bin/ccfe...
    See more | Go to post

  • ganeshp
    replied to mysql insert in to statement
    thank you very much

    Regards,
    Ganesh
    See more | Go to post

    Leave a comment:


  • ganeshp
    started a topic mysql insert in to statement

    mysql insert in to statement

    Hi All,

    INSERT INTO tab_name (ID,NAME) VALUES (0,"zero" );
    INSERT INTO tab_name (ID,NAME) VALUES (1,"one" );

    Can the above two statements be combined in to just one INSERT INTO statement

    Please help
    See more | Go to post

  • thank you so much ;
    i also tried disabling it by using yast (system services) and it worked

    thank you,
    Regards,
    Ganesh
    See more | Go to post

    Leave a comment:


  • Linux: command to be executed each time the system boots

    Hi All,

    I want the commad "chkconfig novell-zmd off" to be executed automatically each time the systems boots ;

    Should i write this command to some file or is there any other way
    Please let me know your thoughts on this

    Regards,
    Ganesh
    See more | Go to post

  • ganeshp
    started a topic Using mysqldb

    Using mysqldb

    Hi All,

    I have to move my database to a different system.

    Will using mysqldump to create a .sql file is going to dump only schema or is it going to dump data in the tables as well.

    I have stored many files in my database and i want to move both my schema as well as my data to a different system.

    I created a .sql fiile by command "mysqldump --user=root -p my_database > C:\my_database. sql...
    See more | Go to post

  • ganeshp
    started a topic Command to find type of RAM ?

    Command to find type of RAM ?

    Can we find the type of RAM using a Linux command ?

    ~Regards
    See more | Go to post

  • My code is a web application, this was written on windows using eclipse,
    Ant was used to build the code on windows.
    Tomcat is the web-server that i am using and it is running on windows.

    Say for example link for my web page is abc.com
    Here i ask user to specify absolute path of a file on his system.
    Now when the user is accessing my web-page form Linux box he enters the file path as
    /tmp/file.txt...
    See more | Go to post

    Leave a comment:


  • I tried to print the absolute path.

    Even thought i enter the path as "/tmp/file.txt"
    when i print the absolute path, the output is "c:\tmp\file.tx t"

    i.e. fp.getAbsoluteP ath() prints "c:\tmp\file.tx t" when i enter "/tmp/file.txt".

    I do not know how this conversion is taking place , because i am not making this conversion.

    does anybody know whats...
    See more | Go to post

    Leave a comment:


  • Thanks Debasis Jana for your interest.

    I am running it as a root user.
    Since the use is root, i guess there should be no previlage related issues.
    Also the permission for the file is rw-r-r. So any user should be able to read this file....
    See more | Go to post

    Leave a comment:


  • it is not a slash versus backslash issue.

    Has anyone used this kind of code on linux,
    i am really facing problems with this exists() API.
    it is really causing problems.

    I gave the path as /tmp/file.txt on linux and c:\file.txt on windows.
    On windows i get the correct answer but on linux the
    API returns false even when the file exists.

    Also for your information i am using "jdk1.5.0_1 3",...
    See more | Go to post

    Leave a comment:


  • ganeshp
    replied to Java code to delete a file is not working
    in Java
    What is it returns false , even if the file exists.

    My application generates many intermediate files , i want to delete them as and when i complete using them.

    Please post ways to delete a file.
    Please let me know your thoughts on this.

    Regards,
    Ganesh
    See more | Go to post

    Leave a comment:


  • ganeshp
    replied to Java code to delete a file is not working
    in Java
    I have not checked its return value....
    See more | Go to post

    Leave a comment:


  • ganeshp
    started a topic Java code to delete a file is not working
    in Java

    Java code to delete a file is not working

    Code to delete the file is given below:

    File file = new File(filePath);
    file.delete();

    But this code does not delete the file.
    Please post your thoughts on this issue.

    Regards,
    Ganesh
    See more | Go to post

  • File fp = new File(filePath);fp.exists() does not yeild proper result on Linux

    Below given is the code to check if a file exists.
    This code works on Windows but on Linux it fails even when the file exists.

    Please let me know if you have a solution or a work around for this.
    Has anybody experienced the same problem.

    boolean DoesTheFileExis t(String filePath)
    {
    File fp = new File(filePath);
    if(true == fp.exists())
    {
    return true;
    }...
    See more | Go to post

  • Yes it is OK
    thank you
    regards
    Ganesh...
    See more | Go to post

    Leave a comment:


  • ganeshp
    started a topic Can one java thread create another java thread?
    in Java

    Can one java thread create another java thread?

    hi All,

    I have crated a thread and in that tread i have created one more thread?
    is it ok to do this ?
    i am not getting any errors,

    regards,
    Ganesh
    See more | Go to post

  • ganeshp
    replied to How to install hibernate
    in Java
    Hi Srikanth,

    Even i had problems installing hibernate.
    I got it solved by following the below given steps.


    Step1:
    Download the hibernate

    Step2:
    Unzip the downloaded hibernate zip file

    Step3:
    In the unzipped folder open the build.bat file in any text editor.

    Step 4:
    In file build.bat You will find "java -cp "lib/ant-launcher-1.6.5.jar"...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...