This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
未加入域的 VDA
设置概述
只有 Citrix DaaS 支持未加入域的 VDA。必须使用 Machine Creation Services (MCS),才能在 Citrix DaaS 中创建未加入域的 VDA。简短的步骤如下:
- 在还要安装 VDA 软件包的模板 VM 上创建主映像。可以使用单个映像来创建已加入域和未加入域的 VDA。
- 使用主映像创建计算机目录。选择 MCS 作为计算机部署方法,然后选择未加入域作为要在目录中创建的计算机的标识。
有关详细信息,请参阅使用 Machine Creation Services (MCS) 创建 Linux VM 和计算机标识。
适用于未加入域的 VDA 的功能
在未加入域的 VDA 上创建具有指定属性的本地用户
打开未加入域的 VDA 上托管的会话时,VDA 会自动创建具有默认属性的本地用户。VDA 将根据您用于登录 Citrix Workspace 应用程序的用户名创建本地用户。还可以指定用户属性,包括用户的用户标识符 (UID)、组 ID (GID)、主目录和登录 shell。要使用此功能,请完成以下步骤:
-
运行以下命令以启用该功能:
/opt/Citrix/VDA/bin/ctxreg create -k "HKLM\Software\Citrix\VirtualDesktopAgent\LocalMappedAccount" -t "REG_DWORD" -v "CreateWithUidGid" -d "0x00000001" --force <!--NeedCopy-->
-
在 VDA 的安装路径下的
/var/xdl/getuidgid.sh
脚本中指定以下属性:属性 必需或可选 说明 uid
必需 用户标识符 (UID) 是由 Linux 分配给系统中的每个用户的编号。它决定用户可以访问哪些系统资源。 gid
必需 组标识符 (GID) 是用于表示特定组的编号。 homedir
可选 Linux 主目录是特定用户的目录。 shell
可选 登录 shell 是在用户登录其用户帐户时提供给用户的 shell。 下面是
getuidgid.sh
脚本的示例:注意:
请确保您在脚本中指定的属性有效。
#!/bin/bash ############################################################################### # # Citrix Virtual Apps & Desktops For Linux Script: Get uid and gid for the user # # Copyright (c) Citrix Systems, Inc. All Rights Reserved. # export LC_ALL="en_US.UTF-8" function get_uid_gid_for_user() { echo "uid:12345" echo "gid:1003" echo "homedir:/home/$1" echo "shell:/bin/sh" } get_uid_gid_for_user $1 <!--NeedCopy-->
共享
共享
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.