Results 1 to 4 of 4

Thread: I need help installing a SH file

  1. #1
    Join Date
    Dec 2013
    Beans
    62

    I need help installing a SH file

    The name of the program is Emboidermodder.


    Any help is welcome.
    I forgot how to install a .sh file.


    Thanks.

  2. #2
    Join Date
    Jun 2014
    Beans
    7,383

    Re: I need help installing a SH file

    An sh file is simply a script which you make executable and run in a terminal. More info on where yo got it and what it does might help someone to help you.

  3. #3
    Join Date
    Dec 2013
    Beans
    62

    Re: I need help installing a SH file

    Thanks, Yancek.
    I'm trying to install a software called "Embroidermodder".

  4. #4
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,822
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: I need help installing a SH file

    An .sh file is usually a shell script. Usually, as there are no hard rules for filename extensions. You just put it in a directory that's in your PATH and make sure it has execute permissions for all who want to use it. Use
    Code:
    echo $PATH
    to see a colon-separated list of directories where you can put it, but avoid the directories used for stuff installed by the package manager. In other words, put it in ~/bin, ~/.local/bin (both for one user) or /usr/local/bin (for all users), unless you can think of a good reason to put it somewhere else. If installing for all users, you give read and execute permission to all, but make the file owned by root and only give root write permissions: 0755. Once you've done so, you can execute the file in the terminal.

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
  •