Results 1 to 6 of 6

Thread: Error "Unsupported operation" while copying "...." opeartion not supported

  1. #1
    Join Date
    Mar 2008
    Location
    India
    Beans
    28
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Error "Unsupported operation" while copying "...." opeartion not supported

    Hi all....

    I get this error while copying/cutting,.etc.. please help...

    Code:
    Error "Unsupported operation" while copying "...." opeartion not supported
    this is a problem with only one partition....
    and it has nothing to do with permissions i suppose...

    I had started a thread earlier but it did not help much...
    please please help me...

    thanks in advance

  2. #2
    Join Date
    Nov 2005
    Location
    Uppsala, Sweden
    Beans
    2,180
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Error "Unsupported operation" while copying "...." opeartion not supported

    Quote Originally Posted by amit.padhy View Post
    Hi all....

    I get this error while copying/cutting,.etc.. please help...

    Code:
    Error "Unsupported operation" while copying "...." opeartion not supported
    this is a problem with only one partition....
    and it has nothing to do with permissions i suppose...

    I had started a thread earlier but it did not help much...
    please please help me...

    thanks in advance
    That error is what you get when you try to move or copy/paste files into a target folder where you don't have write permission, or if the target file system is mounted as read-only.

  3. #3
    Join Date
    Aug 2007
    Location
    Post Falls. ID
    Beans
    21
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Error "Unsupported operation" while copying "...." opeartion not supported

    You can check the permissions by left-clicking on the file or folder and selecting properties. Then click on the permission tabs.

  4. #4
    Join Date
    Mar 2007
    Location
    New Zealand
    Beans
    25
    Distro
    Ubuntu 6.10 Edgy

    Re: Error "Unsupported operation" while copying "...." opeartion not supported

    Hi I get the same error Operation not supported by backend when I try to copy files to my newly formatted USB HDD.

    I am running Ubuntu 8.04 and have formatted the drive with Ext3.

    Why don't I have permission to write to my newly formated drive and how can I change this?

  5. #5
    Join Date
    Mar 2007
    Location
    New Zealand
    Beans
    25
    Distro
    Ubuntu 6.10 Edgy

    Re: Error "Unsupported operation" while copying "...." opeartion not supported

    Why would only Root be given access to this drive... is there something I have done wrong when using GParted to format the drive?

  6. #6
    Join Date
    Mar 2007
    Location
    New Zealand
    Beans
    25
    Distro
    Ubuntu 6.10 Edgy

    Re: Error "Unsupported operation" while copying "...." opeartion not supported

    This answer comes from a contributor in another forum. Thanks JBI.

    By default, the root folder on the new drive will be writable only by root.

    There are a number of ways you can deal with this. Assuming you are hot-plugging it, and it is auto-mounting itself as /media/disk, any of the following should work (do this with the drive mounted) --

    To make it writable by anyone:

    Code:
    sudo chmod go+w /media/disk

    To change the ownership, making it writable by your account only:

    Code:
    sudo chown myaccountname:mygroupname /media/disk

    To create a subfolder that is writable by your account, while leaving the root folder of the drive writable only by root:

    Code:
    sudo mkdir /media/disk/myfolder
    sudo chown myaccountname:mygroupname /media/disk/myfolder

    There's probably a way to do this through the GUI as well, but I've never bothered to figure out how since I'm comfortable with the CLI...

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
  •