📜  Python| os.getuid() 和 os.setuid() 方法

📅  最后修改于: 2022-05-13 01:55:46.008000             🧑  作者: Mango

Python| os.getuid() 和 os.setuid() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

os 模块中的所有函数在文件名和路径无效或不可访问的情况下,或具有正确类型但操作系统不接受的其他参数的情况下引发OSError

Python中的os.getuid()方法用于获取当前进程的真实用户 ID,而os.setuid()方法用于设置当前进程的真实用户 ID。

用户 ID :在类 Unix 操作系统中,用户由称为用户 ID 的唯一值标识。用户 ID 用于确定用户有权访问的系统资源。

注意: os.setuid()os.getuid()方法仅在 UNIX 平台上可用,并且os.setuid()方法的功能通常仅对超级用户可用,因为只有超级用户可以更改用户 ID。
超级用户是指具有在操作系统中运行或执行任何程序的所有权限的 root 用户或管理用户。

os.getuid() 方法

代码 #1:使用 os.getuid() 方法
# Python program to explain os.getuid() method 
  
# importing os module 
import os
  
# Get the real user ID
# of the current process
# using os.getuid() method
uid = os.getuid()
  
# Print the real user ID
# of the current process
print("Real user ID of the current process:", uid)
输出:
Real user ID of the current process: 1000

Getuid 方法输出

os.setuid() 方法

代码 #2:使用 os.setuid() 方法
# Python program to explain os.setuid() method 
  
# importing os module 
import os
  
# Get the real user ID
# of the current process
# using os.getuid() method
uid = os.getuid()
  
# Print the real user ID
# of the current process
print("Real user ID of the current process:", uid)
  
# Set real user ID
# of the current process
# using os.setuid() method
uid = 1500
os.setuid(uid)
print("Real user ID changed")
  
  
# Print the real user ID
# of the current process
print("Real user ID of the current process:", os.getuid())
输出:
Real user ID of the current process: 0
Real user ID changed
Real user ID of the current process: 1500

设置终端输出