當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。