Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。
os.setregid()
Python中的方法用于设置当前进程的真实有效组ID。但是,我们可以使用以下命令分别设置当前流程的实际有效组IDos.setgid()
和os.setegid()
方法分别。
注意: os.setregid()
该方法仅在UNIX平台上可用,并且该方法的函数通常仅对超级用户可用。超级用户是指具有运行或执行操作系统中所有程序的所有权限的root用户或管理用户。
用法: os.setregid(rgid, egid)
参数:
rgid:一个整数值,代表当前进程的新组ID。
egid:一个整数值,表示当前进程的新有效组ID。
返回类型:此方法不返回任何值。
代码:os.setregid()方法的使用
# Python program to explain os.setregid() method
# importing os module
import os
# Get the current process’s
# real group id
# using os.getgid() method
rgid = os.getgid()
# Get the current process’s
# effective group id.
# using os.getegid() method
egid = os.getegid()
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
# Change the current process’s
# real and effective group ids
# using os.setregid() method
rgid = 100
egid = 200
os.setregid(rgid, egid)
print("\nReal and effective group ids changed\n")
# Get the current process’s
# real and effective group ids
rgid = os.getgid()
egid = os.getegid()
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
# We can also use os.setgid() and
# os.setegid() method to set the
# current process’s real and
# effective group ids respectively
# Change the current process’s
# real group id
# using os.setgid() method
rgid = 300
os.setgid(rgid)
# Change the current process’s
# effective group id
# using os.setegid() method
egid = 400
os.setegid(egid)
print("\nReal and effective group ids changed\n")
# Print the current process’s
# real and effective group ids.
print("Real group id of the current process:", rgid)
print("Effective group id of the current process:", egid)
输出:
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.setregid() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。