Results 1 to 5 of 5

Thread: Problems Installing Gimp Plugins

  1. #1
    Join Date
    Nov 2010
    Location
    Massachusetts, USA
    Beans
    160
    Distro
    Kubuntu 10.04 Lucid Lynx

    Question Problems Installing Gimp Plugins

    I want to install some of the optional plugins for GIMP Image Editor. I've gotten as far as downloading the .scm files, but Kubuntu won't let me copy them to the necessary folders, which every "how-to" on the subject tells me to do. I tried downloading the .scm's directly to /home/username/.gimp-2.6/scripts, but when I clicked "OK" nothing happened. Then I tried downloading them to my "downloads" folder, dragging and dropping them into /home/username/.gimp-2.6/scripts or /usr/share/gimp/2.0/scripts and I was given the "Access denied!" message.

    Is there a terminal command (for instance, using sudo to get around the folder's defensiveness) that will install the files there?

    Thanks for any help you can give...
    -Val

  2. #2
    Join Date
    Nov 2004
    Location
    Maine
    Beans
    2,420
    Distro
    Kubuntu

    Re: Problems Installing Gimp Plugins

    Quote Originally Posted by Valkyr333 View Post
    I want to install some of the optional plugins for GIMP Image Editor. I've gotten as far as downloading the .scm files, but Kubuntu won't let me copy them to the necessary folders, which every "how-to" on the subject tells me to do. I tried downloading the .scm's directly to /home/username/.gimp-2.6/scripts, but when I clicked "OK" nothing happened. Then I tried downloading them to my "downloads" folder, dragging and dropping them into /home/username/.gimp-2.6/scripts or /usr/share/gimp/2.0/scripts and I was given the "Access denied!" message.

    Is there a terminal command (for instance, using sudo to get around the folder's defensiveness) that will install the files there?

    Thanks for any help you can give...
    the terminal command for copying a file is cp

    here how it would look for what your trying to do.
    Though if the destination is into your home directory us should not need root privilaged to do it for some reason it seems like you do so I'll do it that way :

    Code:
    sudo cp /home/<usr name>/Downloads/<filename> /home/username/.gimp-2.6/scripts
    * note: replace <usr name> with yours and <filename> witht he actual file name.

    if you want to move the file there it's exactly the same except you would use
    Code:
    mv
    instead of cp.

    Good luck
    Wireless script
    Dave
    Registered Linux User #462608
    Morse Code an early Digital Mode.

  3. #3
    Join Date
    Nov 2010
    Location
    Massachusetts, USA
    Beans
    160
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Problems Installing Gimp Plugins

    the terminal command for copying a file is cp

    here how it would look for what your trying to do.
    Though if the destination is into your home directory us should not need root privilaged to do it for some reason it seems like you do so I'll do it that way :

    Code:
    sudo cp /home/<usr name>/Downloads/<filename> /home/username/.gimp-2.6/
    Thanks for replying. I did this, but nothing seems to have changed. I realized I forgot a detail from earlier - I managed to add a file with the same name and copied the "code" part of the downloaded file into it manually earlier. I don't remember how I did that, but it didn't get results. When your advice from above didn't work with that file, I tried it on another plugin/script and it did work for that one. I'm assuming then that the presence of an identically-named file in the target directory is preventing the copy from being made. What would I do to purge that file so I can follow your instructions with respect to the original file?
    -Val

  4. #4
    Join Date
    Nov 2004
    Location
    Maine
    Beans
    2,420
    Distro
    Kubuntu

    Re: Problems Installing Gimp Plugins

    It should have given you a message that file already exists.

    the command for removing a file is rm

    thus would look something like this.
    Code:
    sudo rm /home/username/.gimp-2.6/scripts/<filename>
    you may want to go to this page and print a copy to keep on hand
    http://ss64.com/bash/
    Wireless script
    Dave
    Registered Linux User #462608
    Morse Code an early Digital Mode.

  5. #5
    Join Date
    Nov 2010
    Location
    Massachusetts, USA
    Beans
    160
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Problems Installing Gimp Plugins

    Ah, I've got it now.

    It turns out I was looking in "Filters" rather than "Tools," so that was my mistake. Thank you very much for the info, though. I'm sure the other things you said will come in handy in other operations. =)
    -Val

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
  •