Find the answer to your Linux question:
Results 1 to 8 of 8
May I please ask if it is possible to download and install update and individual packages for openSUSE 10.2 offline. Are there any IDE's similar to Visual Studio Express available ...
  1. #1
    Just Joined!
    Join Date
    Dec 2008
    Posts
    2

    General Comment

    May I please ask if it is possible to download and install update and individual packages for openSUSE 10.2 offline.

    Are there any IDE's similar to Visual Studio Express available for Linux.

  2. #2
    Just Joined!
    Join Date
    Dec 2007
    Posts
    22
    Hi,
    I am not sure about the openSUSE question(I use Slackware )
    For the Visual Studio IDE one, I have never used Visual Studio for programming, but fro linux there is KDevelop for many languages. There is also a program called 'Anjuta' I belive only for C/C++.

    Note: KDevelop has IDEs for quite a lot of languages.

    Regards,
    limac

  3. #3
    Just Joined! mhanan's Avatar
    Join Date
    Dec 2008
    Location
    San Diego CA
    Posts
    60

    You

    won't be able to download anything offline...

    However installation of any packages in YaST shouldn't be a problem.

  4. #4
    Trusted Penguin Cabhan's Avatar
    Join Date
    Jan 2005
    Location
    Seattle, WA, USA
    Posts
    3,230
    If you have your packages on a CD, you can use the CD as a YaST repository, allowing you to install offline. Also, if you download the RPMs, you can use YaST to run them, installing them via it.

    As for IDEs, there are lots of options out there. Eclipse is very popular for Java and some other languages. KDevelop and Anjuta are also around. The Mono project (an implementation of .NET) provides a C# and ASP.NET IDE. Finally, many of us don't use IDEs at all, and just write our code in Vim or Emacs and then use a Makefile to compile it.

    There are lots of choices, so I suggest trying some out and seeing what you think.
    DISTRO=Arch
    Registered Linux User #388732

  5. #5
    Linux User peteh's Avatar
    Join Date
    Oct 2006
    Location
    UK
    Posts
    337
    If you mean can you download first and then instal offline, then the answer is yes, if you go direct to the repos. However, doing it all through YAST takes care of any dependencies which might otherwise be a problem for you.
    I think SUSE is about to stop support for 10.2 (if it hasn't already). You may want to update.
    Pete

  6. #6
    Just Joined!
    Join Date
    Dec 2008
    Posts
    2
    How can I set Vim and emacs to compile the code for Visual Studio Express C++. Also, may I please ask if there is a documentation containing a description of all the possible compiler errors that Vim and emacs will output, similar to the msdn library.

  7. #7
    Trusted Penguin Cabhan's Avatar
    Join Date
    Jan 2005
    Location
    Seattle, WA, USA
    Posts
    3,230
    So Vim and Emacs are just text editors. Incredibly powerful text editors, but still just text editors.

    We then use GCC (GNU Compiler Collection) to actually do the compilation. For C code, you use "gcc", for C++ code, you use "g++", etc.

    So I might write a file called "project.c" with Vim, then run "gcc project.c", which will compile it, and if all succeeds, output an executable called "a.out" (the default name; this can be customized by passing options into gcc). If there are errors, gcc might post an error like "project.c:17:assigning pointer to type int without a cast" or some warning or error like that.

    If you Google, I'm sure you will find some guides on using gcc.
    DISTRO=Arch
    Registered Linux User #388732

  8. #8
    Trusted Penguin elija's Avatar
    Join Date
    Jul 2004
    Location
    Either at home or at work or down the pub
    Posts
    2,298
    Quote Originally Posted by w8678678 View Post
    How can I set Vim and emacs to compile the code for Visual Studio Express C++.
    Isn't that the .NET Managed C++?

    If so the closest you will get is mono but I don't know if it does the C++ yet, it does do C# and VB.Net
    If we hit that bullseye, the rest of the dominoes will fall like a house of cards. Checkmate! (Zapp Brannigan)


    My new blog. It's probably not as good as I think it is.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...