Search:

Type: Posts; User: kaamos; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.15 seconds.

  1. Thread: Linker problems

    by kaamos
    Replies
    4
    Views
    326

    Re: Linker problems

    Did you actually try what was suggested before answering? Or read the part about build-essential in the wiki?
  2. Thread: Linker problems

    by kaamos
    Replies
    4
    Views
    326

    Re: Linker problems

    #include <stdio.h>
    #include <stdlib.h>
  3. Replies
    6
    Views
    236

    Re: If statement to look in another directory

    if [ -a "$THEFILE" ]; then
    cat "$THEFILE"
    else
    if [ -a "$OTHERDIR/$THEFILE" ]; then
    cat "$OTHERDIR/$THEFILE"
    else
    echo "$YOURERROR"
    fi
    fi
  4. Replies
    1
    Views
    372

    Re: install java6 in root

    Always install software from the repositories when possible. In this case the package you want is sun-java6-jdk. That installs the jdk to /usr/lib/jvm/java-6-sun and it is usable by all users and...
  5. Replies
    1,058
    Views
    351,051

    Re: What's your Favorite IDE?

    Eclipse might feel way too huge at first but the more you use it, the less of the stuff you find unnecessary. So I wouldn't call it bloated at all, just heavy and feature-packed. Once you get to know...
  6. Replies
    62
    Views
    5,216

    Re: Gnome 2.20 released

    Evolution uses libnotify! \o/ Finally...
  7. Replies
    76
    Views
    15,151

    Re: thoughts on IBM lotus symphony

    The icons are in /usr/share/icons/hicolor/ + ~/.local/share/icons/hicolor/ and the file associations in /usr/share/mime/application/
  8. Replies
    76
    Views
    15,151

    Re: thoughts on IBM lotus symphony

    IBM seems to be rolling out every possible desktop app as eclipse add-ons.. But it was STILL a surprise to notice that it was the case with this one as well!
  9. Re: Trying to compile a SDL C++ program for windows with mingw and g++

    Have you compiled SDL (and a whole bunch of other libraries that it needs) with mingw? You should have the mingw versions of the libs and headers in /usr/i586-mingw32msvc/
  10. Replies
    20
    Views
    2,374

    Re: How Do You Work in Linux?

    Nvu is hardly a professional tool, it is more aimed to the same group as Frontpage. Try for example aptana or some other eclipse-on-steroids IDE. Depends on your workflow, but you can probably...
  11. Replies
    6
    Views
    481

    Re: Building GTK from source

    You should be fine just by installing the package libgtk2.0-dev with synaptic. You can get a lot of useful packages with gnome-devel as well.
  12. Replies
    6
    Views
    481

    Re: Building GTK from source

    Is there a reason you are building it from source? Or is this just an academic venture? :)
  13. Replies
    2
    Views
    913

    Re: How to install Gcc in Ubuntu LTS 6.06

    Install the package "build-essential"
  14. Replies
    2
    Views
    331

    Re: Eclipse popularity

    I guess mostly it's about preference. I for one find the netbeans interface quite confusing, not to mention the awful font rendering (this really does matter when you use the program 8+ hours a day)...
  15. Replies
    141
    Views
    212,858

    Poll: Re: VMware vs VirtualBox vs QEMU?

    Since it was missing from the poll, I'll just answer here.. KVM all the way!
  16. Re: Post your system specs and tell us if you Ubuntu desktop is sluggish.

    ^ What he said.

    Intel Core 2 Duo E6400
    2gb DDR2 800Mhz
    Nvidia GeForce 7900 GS
    2x250gb HDDs in raid0 (software)
  17. Replies
    20
    Views
    11,613

    Re: Eclipse Problems with java.util.Scanner

    You need Java 1.5 or newer and make sure code compatibility in your eclipse project is also set to 1.5. You can also select which JRE a project uses.
  18. Replies
    2
    Views
    36,216

    Re: How do I install eclipse c++ plugin?

    Install the package eclipse-cdt with apt.
  19. Replies
    3
    Views
    643

    Re: What's with the lack of dev packages?

    Because dpkg -l lists installed packages.You can use


    apt-cache search vte|grep "\-dev"

    to search the repositories.
  20. Replies
    2
    Views
    846

    Re: My startup script doesn't work

    Are you missing a & after "firestarter --start-hidden" ?
  21. Replies
    0
    Views
    296

    Cross compiling trouble

    Hello,

    I'm trying to cross compile gtk for windows from ubuntu. I know there a gtk binary packages for windows, I'm just learning how to do this. So, I have a working cross compile enviroment...
  22. Replies
    6
    Views
    1,779

    Re: The "public static void main()" method.

    public static void main(String[] args){
    int numberOfCircles = 1;
    if(args.length>0)
    numberOfCircles = Integer.parseInt(args[0]);

    new Circles(numberOfCircles);...
  23. Replies
    15
    Views
    1,432

    Re: Problem Running .class and jar java files

    Your class should be declared public.
  24. Replies
    1
    Views
    1,353

    Re: Dia code generation

    Yep. Install the package dia2code.
  25. Replies
    3
    Views
    629

    Re: qtjava does not compile

    try this


    export LD_LIBRARY_PATH="/usr/lib:/usr/lib/jni/libqtjava"
    java -cp .:/usr/share/java/qtjava.jar ScribbleWindow


    The export might not even be needed.
Results 1 to 25 of 234
Page 1 of 10 1 2 3 4