在Linux系統中,使用Python 3進行用戶管理需要利用os
和pwd
模塊
import os
import pwd
username = "newuser"
password = "newpassword"
uid = pwd.getpwnam(username).pw_uid
gid = pwd.getpwnam(username).pw_gid
# 創建用戶組
os.system(f"groupadd {username}")
# 添加用戶到用戶組
os.system(f"usermod -aG {username} newgroup")
# 設置密碼
os.system(f"echo '{password}' | chpasswd")
# 設置默認shell
os.system(f"chsh -s /bin/bash {username}")
import os
import pwd
username = "username"
# 獲取用戶ID
uid = pwd.getpwnam(username).pw_uid
# 刪除用戶組
os.system(f"groupdel {username}")
# 刪除用戶
os.system(f"userdel -r {username}")
import os
import pwd
username = "username"
new_password = "newpassword"
new_shell = "/bin/bash"
# 獲取用戶ID
uid = pwd.getpwnam(username).pw_uid
# 設置密碼
os.system(f"echo '{new_password}' | chpasswd")
# 設置默認shell
os.system(f"chsh -s {new_shell} {username}")
import pwd
# 獲取所有用戶信息
users = pwd.getpwall()
for user in users:
print(user)
請注意,這些示例僅適用于Linux系統。在Windows系統中,您需要使用pywin32
庫進行用戶管理。