Results 1 to 5 of 5

Thread: EXT4 permissions question

  1. #1
    Join Date
    Oct 2013
    Beans
    7

    EXT4 permissions question

    I recently put files on my external drive that is formatted as EXT4. I named the external drive Seagate

    I ran the command "sudo chmod -R 777 /media/myaccount/Seagate" , entered my password and the terminal didn't display anything.

    Did I use that command correctly? I do not know much about EXT4 or permissions. I know what the command does but I don't know if I was supposed to enter that or the /dev/sdb1 line.
    Last edited by b1001421; October 31st, 2013 at 07:01 PM.

  2. #2
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: EXT4 permissions question

    It probaby executed your command. There is no output in this case. Probe into the Seagate directory and check the permissions of the files and folders to see what happened.

  3. #3
    Join Date
    Aug 2010
    Beans
    12
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: EXT4 permissions question

    run
    ls -l
    in that directory and it will list the permissions since you wanted the files to be chmoded to 777 you should see something like:
    -rwxrwxrwx

  4. #4
    Join Date
    Feb 2009
    Location
    Dallas, TX
    Beans
    7,790
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: EXT4 permissions question

    Hi b1001421.
    Quote Originally Posted by b1001421 View Post
    ...entered my password and the terminal didn't display anything.
    Linux uses this philosophy to whether report success or not:
    No news is good news.
    (Inherited from Unix BTW).

    Most commands has a 'verbose' (-v) option that would report more information, specifically success reports. In this case, you could use:
    Code:
    sudo chmod -v -R 777 /media/myaccount/Seagate
    Hope it helps.
    Regards.

  5. #5
    Join Date
    Oct 2013
    Beans
    7

    Re: EXT4 permissions question

    Quote Originally Posted by merlyn2748 View Post
    run in that directory and it will list the permissions since you wanted the files to be chmoded to 777 you should see something like:
    Every file in the directory is showing drwxrwxrwx in the list. Thanks!

    Quote Originally Posted by papibe View Post
    Hi b1001421.

    Linux uses this philosophy to whether report success or not:

    (Inherited from Unix BTW).

    Most commands has a 'verbose' (-v) option that would report more information, specifically success reports. In this case, you could use:
    Code:
    sudo chmod -v -R 777 /media/myaccount/Seagate
    Hope it helps.
    Regards.
    Ah, I didn't even think of the verbose command. I did try it when I copied over a few more files and it showed everything! Thanks



    I really appreciate the help.
    Last edited by b1001421; October 31st, 2013 at 08:59 PM.

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
  •