Page 2 of 2

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 11:05 am
by pcfan
MXRobo wrote: Wed May 29, 2024 12:36 am @pcfan
IIRC, you had a little trouble setting up the DATA partition - or whatever was used.
You may want to include that link, or at least the part indicating what you did.

Also, IIRC, I would not have done it the way that you did, BUT that's mostly because I really only know my method.

IIRC, CB bailed me out.

Good Luck
let me know how to do this please.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 11:15 am
by CharlesV
that means you have no files in that folder / directory. In order to see your rights for that folder.. you need to be one folder above it and do this:

Code: Select all

ls -ld your_directory

ls is the list command.

- indicates the beginning of the command options.

l asks for a long list which includes the permissions.

d indicates that the list should concern the named directory itself; not its contents. If no directory name is given, the list output will pertain to the current directory.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 11:49 am
by DukeComposed
CharlesV wrote: Sat Jul 13, 2024 11:15 am you need to be one folder above it and do this:

Code: Select all

ls -ld your_directory

"ls -la" should also provide this info, since it will include the . and .. directories in its output.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 11:56 am
by CharlesV
DukeComposed wrote: Sat Jul 13, 2024 11:49 am
CharlesV wrote: Sat Jul 13, 2024 11:15 am you need to be one folder above it and do this:

Code: Select all

ls -ld your_directory

"ls -la" should also provide this info, since it will include the . and .. directories in its output.
Correct, I just wanted to get a little closer to 'the' folder', without all the other potential files etc.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 1:33 pm
by DukeComposed
CharlesV wrote: Sat Jul 13, 2024 11:56 am Correct, I just wanted to get a little closer to 'the' folder', without all the other potential files etc.
No disagreement there but if the directory is empty as we know it is, it wouldn't be a huge issue.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 3:02 pm
by MXRobo
pcfan wrote: Sat Jul 13, 2024 11:05 am
MXRobo wrote: Wed May 29, 2024 12:36 am @pcfan
...You may want to include that link, or at least the part indicating what you did...Good Luck
let me know how to do this please.
I just meant find your former url link and then simply paste it in a post.
I realize some time has elapsed since then, and others are addressing the issue.

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 5:48 pm
by pcfan
CharlesV wrote: Sat Jul 13, 2024 11:15 am that means you have no files in that folder / directory. In order to see your rights for that folder.. you need to be one folder above it and do this:

Code: Select all

ls -ld your_directory

ls is the list command.

- indicates the beginning of the command options.

l asks for a long list which includes the permissions.

d indicates that the list should concern the named directory itself; not its contents. If no directory name is given, the list output will pertain to the current directory.

Code: Select all

ls -ld
drwx------ 24 siloff siloff 4096 jul 13 17:58 .
Hope this is what you are asking. : )

Re: Cannot send files to the basket bin

Posted: Sat Jul 13, 2024 6:27 pm
by CharlesV
Yup.. and that shows that your group owner permissions are not Read+writable.

Have a look here at the permissions you should have for a folder / file.

https://linuxhandbook.com/linux-file-permissions/

Re: Cannot send files to the basket bin

Posted: Mon Jul 15, 2024 11:44 pm
by pcfan
CharlesV wrote: Sat Jul 13, 2024 6:27 pm Yup.. and that shows that your group owner permissions are not Read+writable.

Have a look here at the permissions you should have for a folder / file.

https://linuxhandbook.com/linux-file-permissions/
thank you so very much!. I will save this website as pdf so I can read it step by step.

Re: Cannot send files to the basket bin

Posted: Tue Jul 16, 2024 11:02 am
by CharlesV
Your very welcome