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
セットアップの概要
ドメイン非参加VDAは、Citrix DaaSでのみサポートされます。ドメイン非参加VDAをCitrix DaaSに作成するには、Machine Creation Services(MCS)を使用する必要があります。簡単な手順は次のとおりです:
- VDAパッケージもインストールするテンプレート仮想マシンにマスターイメージを作成します。単一のイメージを使用して、ドメイン参加済みVDAとドメイン非参加VDAの両方を作成できます。
- マスターイメージを使用して、マシンカタログを作成します。マシンの展開方法としてMCSを選択し、カタログで作成するマシンのIDとしてドメイン非参加を選択します。
詳しくは、「Machine Creation Services(MCS)を使用したLinux仮想マシンの作成」および「マシンID」を参照してください。
ドメイン非参加のVDAで利用可能な機能
ドメイン非参加のVDAで指定された属性を持つローカルユーザーを作成する
ドメイン非参加のVDAでホストされているセッションを開くと、VDAはデフォルトの属性を持つローカルユーザーを自動的に作成します。VDAは、Citrix Workspaceアプリへのログオンに使用したユーザー名に基づいてローカルユーザーを作成します。また、ユーザーのユーザー識別子(UID)、グループ識別子(GID)、ホームディレクトリ、ログインシェルなどのユーザー属性を指定することもできます。この機能を使用するには、次の手順を実行します:
-
次のコマンドを実行して、この機能を有効にします:
/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
オプション ログインシェルは、ユーザーアカウントへのログイン時にユーザーに提供されるシェルです。 次に、
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.