Results 1 to 8 of 8

Thread: how to install something using .x files

  1. #1
    Join Date
    May 2009
    Beans
    213

    Angry how to install something using .x files

    Hey everyone,

    I was trying to install a program and the main file is "executable (application/x-executable)" as described when i right clicked it. I was wondering how to open such files? I have tried without success several options as i saw on the net but nothing worked so far.

    Dom

  2. #2
    Join Date
    Oct 2008
    Location
    New York
    Beans
    2,649
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: how to install something using .x files

    Is it a windows type .exe file? If so you cant open it in linux without using something like WINE.
    My Launchpad
    ----------------------------------------------------------------------------------------
    My Wiki Page

  3. #3
    Join Date
    May 2009
    Beans
    213

    Re: how to install something using .x files

    it is a .x executable file, not exe. the line that i wrote in parentheses is exactly what ubuntu says when i view properties of that file.

  4. #4
    Join Date
    May 2009
    Beans
    213

    Re: how to install something using .x files

    bump =]

  5. #5
    Join Date
    Oct 2005
    Location
    Jacksonville, FL
    Beans
    29,420

    Re: how to install something using .x files

    Where is that file located? Open a terminal and change to that directory. Then, post the output of this command, replacing filename with the actual name of that file.

    Applications -> Accessories -> Terminal
    Code:
    file filename
    In the world of Linux, who needs Windows and Gates...

    Got most of my golden beans at an auction on eBay (with a couple of free drinks).

  6. #6
    Join Date
    May 2009
    Beans
    213

    Re: how to install something using .x files

    The output says:

    inst.linux: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.0.0, not stripped
    domce@V1500:~/Desktop/Theocracy/linux$

  7. #7
    Join Date
    Oct 2005
    Location
    Jacksonville, FL
    Beans
    29,420

    Re: how to install something using .x files

    Make sure it has an executable permission first before you run it.

    Code:
    chmod 755 filename.x
    ./filename.x
    -or-
    sudo ./filename.x  <-- If you need root privilege.
    In the world of Linux, who needs Windows and Gates...

    Got most of my golden beans at an auction on eBay (with a couple of free drinks).

  8. #8
    Join Date
    May 2009
    Beans
    213

    Re: how to install something using .x files

    that seems to have worked. The program installed, but the terminal then asked this:


    Where is your sound card ? [/dev/dsp]

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
  •