当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.setreuid()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。

os.setreuid()Python中的方法用于设置当前进程的真实有效用户ID。


Unix之类的操作系统中的每个用户都由不同的整数标识,该唯一数字称为UserID。真实的用户ID代表进程所有者的帐户。它定义了此过程可以访问的文件。有效用户ID通常与真实用户ID相同,但有时会进行更改以使非特权用户能够访问只能由root用户访问的文件。

注意: os.setreuid()该方法仅在UNIX平台上可用,并且该方法的函数通常仅对超级用户可用。
超级用户是指具有运行或执行操作系统中所有程序的所有权限的root用户或管理用户。

用法: os.setreuid(ruid, euid)

参数:
ruid:一个整数值,表示当前进程的新用户ID。
euid:一个整数值,表示当前进程的新有效用户ID。

返回类型:此方法不返回任何值。

代码:os.setreuid()方法的使用
# Python program to explain os.setreuid() method  
  
# importing os module  
import os 
  
  
# Get the current process’s  
# real user id 
# using os.getuid() method 
ruid = os.getuid() 
  
# Get the current process’s  
# effective user id. 
# using os.geteuid() method 
euid = os.geteuid() 
  
  
# Print the current process’s 
# real and effective user id. 
print("Real user id of the current process:", ruid) 
print("Effective user id of the current process:", euid) 
  
  
# Change the current process’s 
# real and effective user ids 
# using os.setreuid() method 
ruid = 100
euid = 200
os.setreuid(ruid, euid) 
print("\nReal and effective user ids changed\n") 
  
  
# Get the current process’s  
# real and effective user ids 
ruid = os.getuid() 
euid = os.geteuid() 
  
  
# Print the current process’s 
# real and effective user id. 
print("Real user id of the current process:", ruid) 
print("Effective user id of the current process:", euid)
输出:
Real user id of the current process:0
Effective user id of the current process:0

Real and effective user ids changed

Real user id of the current process:100
Effective user id of the current process:200

os.setreuid() method output



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.setreuid() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。