Results 1 to 4 of 4

Thread: New to Ubuntu, need to do programming

  1. #1
    Join Date
    Nov 2008
    Beans
    1

    Red face New to Ubuntu, need to do programming

    Hey. I had to switch over from Windows rather suddenly and I have a project to do that I used to do in Visual Basic C#. Now I have no idea what to do. Most everything on Ubuntu runs just fine and I've figured out most of what I need. This however I have no clue what to do. I downloaded some stuff for Mono but I can't seem to find it or run it. I'm a noob and need some fairly watered down simple guidance if someone could help me out I'd be really grateful, otherwise my odds of passing this college course are slim to none. Thanks!

  2. #2
    Join Date
    Aug 2006
    Beans
    13,354
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: New to Ubuntu, need to do programming

    I suggest reposting the question in the Programming Talk Section. Might get faster and more practical responses.

  3. #3
    Join Date
    Jul 2008
    Location
    /$home
    Beans
    1,074
    Distro
    Ubuntu Development Release

    Re: New to Ubuntu, need to do programming

    Applications>Accessories>Terminal
    The first step is to uncompress the files-

    Code:
    tar xvfz nameoffile.tar.gz
    or another way to do this-

    when you download the file, in the downloads window, double-click on the file. (This will bring up another window), then click the extract button to extract, (this will bring up another window) to browse to where you would like to extract then to. For this example select Desktop and click extract.

    The 2nd step is to compile-
    For this enter the terminal Application>Accessories>Terminal

    Code:
    cd Desktop
    Code:
    cd nameoffolder
    (that was extracted to desktop) there will usually be a readme.txt in it that give the install instructions

    then from inside the folder type (3 seperate commands)

    Code:
    ./configure
    Code:
    make
    Code:
    sudo make install
    Code:
    https://help.ubuntu.com/community/CompilingEasyHowTo

  4. #4
    Join Date
    Oct 2006
    Location
    /dev/null
    Beans
    1,574
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: New to Ubuntu, need to do programming

    "monodevelop" is the package containing the most popular IDE for C# development. Install the "mono-2.0-devel" package for the compiler itself.

    It'll appear in the Applications/Programming menu.

Tags for this Thread

Bookmarks

Posting Permissions

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