Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9185365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:15:34+00:00 2026-06-17T19:15:34+00:00

I just changed my file permissions using $ sudo chmod g+s filename and my

  • 0

I just changed my file permissions using $ sudo chmod g+s filename and my file permissions turned from drwxr-xr-x to drwxr-sr-x. How do I remove it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T19:15:35+00:00Added an answer on June 17, 2026 at 7:15 pm

    Change the + for adding a permission into a - to remove it:

    sudo chmod g-s filename
    

    If you want to do this programatically, you’ll need to use some bitwise operators. Normally it’s

    mode_without_suid = bitwise_and(existing_mode, bitwise_not(S_ISUID))
    

    where S_ISUID is 0o4000, a constant that uses mode bits above the typical rwx ones of something like 0644.

    For example, in python

    import os
    import stat
    
    def mode_details(m):
        return f"mode={oct(m)} = {stat.filemode(m)}"
    
    mode = os.stat('foo').st_mode
    print("old mode", mode_details(mode))
    
    new_mode = mode & ~stat.S_ISUID
    
    os.chmod('foo', new_mode)
    print("new mode", mode_details(new_mode))
    

    which prints

    old mode mode=0o104654 = -rwSr-xr--
    new mode mode=0o100654 = -rw-r-xr--
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I just changed the PageControl project from Apple's site here . The issue
I just built a setup.msi file using the Web Setup Project template within Visual
I am using moveItemAtPath call to change a file extension from .PDF to .pdf
When I pull change from my repositories, Git change the file permissions (actually, he
I changed the code shown below into ARC compatible. I just changed it as
I want to workaround the Webpage has expired issue. First, I just changed a
I have just installed a new ssl certificate on GlassFish 3. I also changed
Short: how are the keys changed when migrating to HR. Does just the App
Using PHPMyAdmin, I am trying to import a file via the following syntax... LOAD
I am trying to connect to an mdf file using the following connection string:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.