Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Linux, Apache, MySQL, PHP
  4. Linux tutorials

Linux tutorials

Scheduled Pinned Locked Moved Linux, Apache, MySQL, PHP
sysadminlinuxquestion
7 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    matjame
    wrote on last edited by
    #1

    Hi guys. I am TOTALLY new on Linux and we just bought a new Linux server at the office and I have to install some application on it. I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them. Your assistance will be appreciated guys. :(( :((

    kagiso

    J N S 3 Replies Last reply
    0
    • M matjame

      Hi guys. I am TOTALLY new on Linux and we just bought a new Linux server at the office and I have to install some application on it. I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them. Your assistance will be appreciated guys. :(( :((

      kagiso

      J Offline
      J Offline
      Jimmanuel
      wrote on last edited by
      #2

      Exe files are programs that are compiled for Windows. You need programs that are compiled to run on Linux, simply taking an exe and trying to run it on Linux won't work. Wherever you got the applications from that you're trying to install, you need to go back there and get different versions. Different Linux distributions have different ways to help you install software. Most have some sort of online repository for software and you use a nice GUI to select the apps you want to install, click a button and viola, the apps are installed. Another common thing is that different distributions have their own installer packages - kind of like Microsoft's MSI files. The idea is that everything you need to install an app is packaged in one file and all you have to do is launch that file. Red Hat's ".rpm" files and Debian's ".deb" files are two types that are pretty standard nowadays. If you're TOTALLY new on Linux then I strongly suggest you try to find a mentor in your company or get some kind of beginners book to help you.


      Last modified: 6hrs 16mins after originally posted --

      :Badger:

      1 Reply Last reply
      0
      • M matjame

        Hi guys. I am TOTALLY new on Linux and we just bought a new Linux server at the office and I have to install some application on it. I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them. Your assistance will be appreciated guys. :(( :((

        kagiso

        N Offline
        N Offline
        N a v a n e e t h
        wrote on last edited by
        #3

        matjame wrote:

        I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them.

        Some of the EXE files can be executed using wine[^] but not all. Since you are new to LINUX world, I would suggest to start with UBUNTU. It has got simple UI and almost easy to configure. You will get frequent updates and the synaptic package manager makes software installations painless. :)

        Navaneeth How to use google | Ask smart questions

        M 1 Reply Last reply
        0
        • M matjame

          Hi guys. I am TOTALLY new on Linux and we just bought a new Linux server at the office and I have to install some application on it. I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them. Your assistance will be appreciated guys. :(( :((

          kagiso

          S Offline
          S Offline
          Sebastian Schneider
          wrote on last edited by
          #4

          First of all, Windows executables (.exe) won't natively run on Linux. Contrary to what others said, WINE isn't the only way of running Windows binaries. If the binaries are .NET-programs, they might actually run if you have the MONO runtimes properly installed. This is mostly limited to console apps, though. However, you can always install Windows into a virtual machine and run your software there. If the software is popular, there might be a Linux version, as a binary package or source code. Source code is mostly offered as tarballs (.tar.gz) and requires a compilation after extraction. Under linux, extracting the source-code, changing into the source dir and executing the commands ./configure make make install should configure the toolchain, build the software and install it for you. If you are missing compononents necessary for the build, the output of configure and make will tell you. Binary packages are usually suitable for one or more distributions. The most famous formats are .deb (Debian-based) and .rpm (Redhat-Package-Manager). DEBs are usually installed with synaptic, aptitude or dpkg, RPMs with yast or another redhat package manager. On Debian-based systems, "apt-get install product" will try to retrieve and install a binary package by the name of "product", resolving dependencies and showing the results for you.

          Cheers, Sebastian -- "If it was two men, the non-driver would have challenged the driver to simply crash through the gates. The macho image thing, you know." - Marc Clifton

          1 Reply Last reply
          0
          • N N a v a n e e t h

            matjame wrote:

            I need to install and other applcations but unfortunately it does not recognize the exe files as installable files. How do I go about installing them.

            Some of the EXE files can be executed using wine[^] but not all. Since you are new to LINUX world, I would suggest to start with UBUNTU. It has got simple UI and almost easy to configure. You will get frequent updates and the synaptic package manager makes software installations painless. :)

            Navaneeth How to use google | Ask smart questions

            M Offline
            M Offline
            matjame
            wrote on last edited by
            #5

            Yeah..I have went through all that.....I now know how to install packages in Linux (CentOS Red Hat)....The problem is that..I have packages already on my desktop and want to install them

            kagiso

            N 1 Reply Last reply
            0
            • M matjame

              Yeah..I have went through all that.....I now know how to install packages in Linux (CentOS Red Hat)....The problem is that..I have packages already on my desktop and want to install them

              kagiso

              N Offline
              N Offline
              N a v a n e e t h
              wrote on last edited by
              #6

              matjame wrote:

              .The problem is that..I have packages already on my desktop and want to install them

              Is that in a RPM format? When you install packaged manually, you will run into dependency issues. The package you are installing may be dependent on several other packages and you need to install the dependencies first. :)

              Navaneeth How to use google | Ask smart questions

              M 1 Reply Last reply
              0
              • N N a v a n e e t h

                matjame wrote:

                .The problem is that..I have packages already on my desktop and want to install them

                Is that in a RPM format? When you install packaged manually, you will run into dependency issues. The package you are installing may be dependent on several other packages and you need to install the dependencies first. :)

                Navaneeth How to use google | Ask smart questions

                M Offline
                M Offline
                matjame
                wrote on last edited by
                #7

                Thanx Navaneeth..I just went to the CentOS site and got the RPMs and the other applications and they got installed automatically. Now I can install again but I am trying now to install from my desktop. Which is still giving me a problem by the way..you can help me with that if you know how. Thank you again for your assistance. Appreciated

                kagiso

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups