LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Closed Thread
  Search this Thread
Old 04-21-2011, 03:59 PM   #1
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
OK, I had to post this.


As you will probably notice this post will be made from a Winblows Vshitsta machine. So, a long story shortened, after a long long time I needed to delete a folder in Vshitsta and of course things weren't simple.

Thing didn't want to be deleted, so I used Google, I found a page and these were the instructions;

Quote:
1. Right click on folder (Context menu appears.)
2. Select "Properties" ("[Folder Name] Properties" dialog appears.)
3. Click the "Security" tab.
4. Click "Advanced" button (Advanced Security Settings for [Folder Name] appears.)
5. Click "Owner" tab.
6. Click "Edit" button.
7. Click new owner's name in "Change owner to" box.
8. Click box to check "Replace owner on subcontainers and objects".
9. Click "Apply" button. ("Changing ownership of..." progress message appears.)
10. Click "Yes" to acknowledge "Windows Security" warning.
11. Click OK to close topmost "Advanced Security Settings" dialog.
12. Click "Permissions" tab (first tab) on current "Advanced Security Settings" dialog.
13. Click "Edit" button.
14. Click to select the Administrator in the "Permission Entries" box.
15. NOTE: If "Administrator" appears more than once, select the one that has "Subfolders and files only" in the "Apply To" column.
16. Click Edit button. ("Permission Entry for [Folder Name]" dialog appears.)
17. Click to check "Apply these permissions to objects..." option.
18. Click to check ALL the boxes in the "Allow" column.
19. Click "OK" (Dialog box closes, return to "Advance Security Settings" dialog.)
20. Click to check "Include inheritable permissions..." option.
21. Click to check "Replace all existing inheritable permissions..." option.
22. Click "Apply" button. ("Windows Security" confirmation dialog appears.)
23. Click "Yes" to confirm that you wish to continue.
24. Watch progress indicator on the "Windows Security: Setting security information..." dialog.
25. When all security information has been applied, the progress indicator dialog will close automatically.
26. You are now at the "Advanced Security Settings for [Folder Name]" dialog box... the "Permissions" tab should be visible.
27. Click "OK" and the dialog box closes, revealing the previous dialog box.
28. Click "OK" and the dialog box closes, revealing the "Properties" dialog box.
29. Click "OK" and the "Properties" dialog box closes.
30. Return to Windows Explorer and delete the folder.
Did that........ and guess what, folder is still there. Original link is here.

Man, we who use Linux are really happy people.
 
Old 04-21-2011, 04:15 PM   #2
Alexvader
Member
 
Registered: Oct 2009
Location: Japan
Distribution: Arch, Debian, Slackware
Posts: 994

Rep: Reputation: 94
Geezzz... by this trend, only a PhD in SW Engineering will be able to Create/Delete a folder in W8...

And then they say Slackware is complicated... LMAO...


++1

Last edited by Alexvader; 04-21-2011 at 04:17 PM.
 
Old 04-21-2011, 04:16 PM   #3
silvyus_06
Member
 
Registered: Oct 2010
Distribution: Ubuntu 10.04 , Linux Mint Debian Edition , Microsoft Windows 7
Posts: 390

Rep: Reputation: 50
and the point is...?
 
Old 04-21-2011, 04:17 PM   #4
SL00b
Member
 
Registered: Feb 2011
Location: LA, US
Distribution: SLES
Posts: 375

Rep: Reputation: 112Reputation: 112
Wow. 30 steps to fail to accomplish what could be achieved in Linux by a single, simple command string. It's a fantastic platform.
 
Old 04-21-2011, 04:17 PM   #5
Coresay
LQ Newbie
 
Registered: Apr 2011
Distribution: CentOS
Posts: 8

Rep: Reputation: 13
Dude, I was recently going through a similar routine to delete a file that I as Administrator don't even have access rights to even though it was my process that created it.

I'm seriously thinking about going on a crusade against Microsoft. How can a company that is so monstrous put out such crap software. The reality that Microsoft dominates the OS landscape is testament to everything that is wrong with the world.
 
Old 04-21-2011, 04:29 PM   #6
SigTerm
Member
 
Registered: Dec 2009
Distribution: Slackware 12.2
Posts: 379

Rep: Reputation: 234Reputation: 234Reputation: 234
Quote:
Originally Posted by alan_ri View Post
So, a long story shortened, after a long long time I needed to delete a folder in Vshitsta and of course things weren't simple.
Those instructions are written for newbies.

A shorter version:
  • If the folder cannot be deleted due to the lack of security permissions, acquire full access permission for the folder.
  • If the folder cannot be deleted because it is being used by another program, locate and close/kill the program.
  • delete folder.

Quote:
Originally Posted by silvyus_06 View Post
and the point is...?
The point is to fail to understand the problem, but still feel "superior" to windows users for absolutely no reason.

Quote:
Originally Posted by SL00b View Post
Wow. 30 steps to fail to accomplish what could be achieved in Linux by a single, simple command string.
The equivalent action on linux would be trying to delete root owned 0x700 perm folder from non-admin account.
 
Old 04-21-2011, 04:40 PM   #7
Telengard
Member
 
Registered: Apr 2007
Location: USA
Distribution: Kubuntu 8.04
Posts: 579
Blog Entries: 8

Rep: Reputation: 148Reputation: 148
Wink

Quote:
Originally Posted by SL00b View Post
Wow. 30 steps to fail to accomplish what could be achieved in Linux by a single, simple command string. It's a fantastic platform.
Exactly what I was thinking. Windows required 30 steps (and even more unique mouse clicks) to do what is roughly equivalent to this:

Code:
# chown -R 'me:me' SOMEDIR
# chmod -R 'u+rw' SOMEDIR
 
Old 04-21-2011, 04:58 PM   #8
elliott678
Member
 
Registered: Mar 2005
Location: North Carolina
Distribution: Arch
Posts: 977

Rep: Reputation: 74
Quote:
Originally Posted by Telengard View Post
Exactly what I was thinking. Windows required 30 steps (and even more unique mouse clicks) to do what is roughly equivalent to this:

Code:
# chown -R 'me:me' SOMEDIR
# chmod -R 'u+rw' SOMEDIR
Even easier if you just "rm -rf" as root.
 
Old 04-21-2011, 05:15 PM   #9
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733

Original Poster
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
Quote:
Originally Posted by SigTerm View Post
Those instructions are written for newbies.

A shorter version:
  • If the folder cannot be deleted due to the lack of security permissions, acquire full access permission for the folder.
And what do you think I was trying to do?

Quote:
Originally Posted by SigTerm View Post
  • If the folder cannot be deleted because it is being used by another program, locate and close/kill the program.
  • delete folder.
Actually, I did that too and I still couldn't delete it.

Quote:
Originally Posted by SigTerm View Post
The point is to fail to understand the problem, but still feel "superior" to windows users for absolutely no reason.
Actually, the only problem here is you failing to understand me and YES I do feel superior to Winblows users, generally speaking that is.

Someone said what's the point? Well if you can read and if you can think, you should see the point.
 
Old 04-21-2011, 05:31 PM   #10
SigTerm
Member
 
Registered: Dec 2009
Distribution: Slackware 12.2
Posts: 379

Rep: Reputation: 234Reputation: 234Reputation: 234
Thumbs down

Quote:
Originally Posted by alan_ri View Post
YES I do feel superior to Winblows users
Well, this isn't my problem.

Quote:
Originally Posted by alan_ri View Post
Someone said what's the point? Well if you can read and if you can think, you should see the point.
There is no point. It is the same old crap - saying "They aren't using my OS, so I'm better, mwahaha" while seeing only one side of the coin. Anyway, discussing this will be pointless. Have a nice day.
 
Old 04-21-2011, 05:38 PM   #11
Coresay
LQ Newbie
 
Registered: Apr 2011
Distribution: CentOS
Posts: 8

Rep: Reputation: 13
Quote:
Originally Posted by SigTerm View Post
Those instructions are written for newbies.[*]If the folder cannot be deleted because it is being used by another program, locate and close/kill the program.
This is another one of my complaints. For 15 years we've been dealing with this! Why does Windows not tell us which damn process it is that has the file open???!!!!!! They recently bought the company that was thoughtful enough to provide us with a tool to do just that (HandleEx by SysInternals) yet they still don't incorporate that much needed functionality into the explorer!!! This is completely unacceptable. Microsoft is a technology black hole.

Edit: I suppose the reason they don't incorporate said functionality is because it is the Windows explorer.exe process itself that is the culprit 99/100 and they would first have to fix a bug or two that have been open for over a decade.

Last edited by Coresay; 04-21-2011 at 05:42 PM.
 
Old 04-21-2011, 05:44 PM   #12
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by alan_ri View Post
YES I do feel superior to Winblows users
You do feel superior to a different person, just because he/she uses Windows?n Sorry I have to say that, but in my eyes that is a rather poor attitude.

Also, comparing the GUI approach to a problem with the CLI approach on a totally different system isn't very fair. It would be fairer to compare it with a CLI approach on Windows (for example using SUBINACL and deltree).
 
Old 04-21-2011, 05:46 PM   #13
alan_ri
Senior Member
 
Registered: Dec 2007
Location: Croatia
Distribution: Debian GNU/Linux
Posts: 1,733

Original Poster
Blog Entries: 5

Rep: Reputation: 127Reputation: 127
Quote:
Originally Posted by SigTerm View Post
There is no point. It is the same old crap - saying "They aren't using my OS, so I'm better, mwahaha" while seeing only one side of the coin. Anyway, discussing this will be pointless. Have a nice day.
It sure ain't crap and I've seen both sides of the coin, actually I've seen it so well that I don't want to see the other side ever again.

Yes, discussing this would be pointless.
A nice day to you too!

@Coresay

What you said in post #11 is so very true.

@TobiSGD

You don't understand me, I was speaking about the people like a guy in the computer shop in my city, when I asked him does he know what is Live CD, he just stared at me and he works in a fscking computer shop where they have only fscking Winblows and is one of the biggest fscking computer shops in my city. And he and many others like him think they are smart.

I'm sick of fscking Winbloshitows. EOD.

Last edited by alan_ri; 04-21-2011 at 06:07 PM.
 
Old 04-21-2011, 05:59 PM   #14
Telengard
Member
 
Registered: Apr 2007
Location: USA
Distribution: Kubuntu 8.04
Posts: 579
Blog Entries: 8

Rep: Reputation: 148Reputation: 148
Quote:
Originally Posted by TobiSGD View Post
Also, comparing the GUI approach to a problem with the CLI approach on a totally different system isn't very fair.
That's true. I didn't know everyone was going to take this thread so seriously. I don't feel superior to Windows users, but I don't have to deal with many of them. I use Linux and my girlfriend has an iMac. There are Windows computers in the house, but they just kind of sit there powered down most of the time.
 
Old 04-21-2011, 11:53 PM   #15
Coresay
LQ Newbie
 
Registered: Apr 2011
Distribution: CentOS
Posts: 8

Rep: Reputation: 13
Unix is a real OS. Windows isn't. Microsoft are fraudsters and scammers preying on the ignorant and the weak... like drug pushers. I can understand how the common home user could get suckered into using Windoz, but how can there still be so many enterprise users??? They have to get a clue, especially since we now have products like OpenOffice, Firefox and Thunderbird. Humanity can't progress with Microsoft. It must be voted off the boat.
 
  


Closed Thread


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
VectorLinux user, must make post before I can post url The Headacher LinuxQuestions.org Member Intro 2 07-02-2011 11:55 AM
Forum suggested I post a first post. So here it is. Linux user Michigan. MixAndMatch LinuxQuestions.org Member Intro 3 01-20-2010 05:52 PM
Suggestion: Minimum post count to post in old inactive threads Eternal_Newbie LQ Suggestions & Feedback 5 04-28-2008 09:34 AM
i dont want to post here but i guess i have to to post relevent links in another thre sluckz LinuxQuestions.org Member Intro 8 10-02-2007 12:55 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 12:54 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration