个人工具

“UbuntuHelp:ActiveDirectoryWinbind-SADMS/zh”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(创建新页面为 '{{From|https://help.ubuntu.com/community/ActiveDirectoryWinbind-SADMS}} {{Languages|UbuntuHelp:ActiveDirectoryWinbind-SADMS}} == Introduction == The SADMS package allows for aut...')
 
 
(未显示2个用户的4个中间版本)
第1行: 第1行:
 +
{{Translation}}
 
{{From|https://help.ubuntu.com/community/ActiveDirectoryWinbind-SADMS}}
 
{{From|https://help.ubuntu.com/community/ActiveDirectoryWinbind-SADMS}}
 
{{Languages|UbuntuHelp:ActiveDirectoryWinbind-SADMS}}
 
{{Languages|UbuntuHelp:ActiveDirectoryWinbind-SADMS}}
== Introduction ==
+
== 介绍 ==
The SADMS package allows for automated joining to Active Directory through a GUI interface.  This page will describe how to install/troubleshoot using SADMS to join a Ubuntu machine to Active Directory. [http://sadms.sourceforge.net/]
+
SADMS package允许通过GUI图形界面自动加入到活动目录。本页将描述如何使用SADMS来安装/调试,将一台Ubuntu机器加入到活动目录。[http://sadms.sourceforge.net/]
==== Acquire the SADMS Ubuntu package ====
+
==== 获取SADMS Ubuntu package ====
Download the SADMS package from [http://sourceforge.net/project/showfiles.php?group_id=93499 sourceforge]
+
从下面的地址下载 SADMS package[http://sourceforge.net/project/showfiles.php?group_id=93499 sourceforge]
Current Ubuntu package as of this writing: [http://downloads.sourceforge.net/sadms/sadms-install-ubu-2.0.11.tar.gz?modtime=1182683519&big_mirror=0 sadms-install-ubu-2.0.11.tar.gz]
+
当前的Ubuntu package是: [http://downloads.sourceforge.net/sadms/sadms-install-ubu-2.0.11.tar.gz?modtime=1182683519&big_mirror=0 sadms-install-ubu-2.0.11.tar.gz]
== Installation ==
+
== 安装 ==
* Read the tuts from the SADMS site first, under the External Docs section.
+
* 首先在SADMS的网站阅读指导手册(tuts),就在External Docs章节下面。
* Extract Package
+
* 解压缩。
* Install Winbind dependency and run START script.
+
* 安装Winbind dependency并运行START脚本。
* check that nsswitch is correct.  Shadow should not reference winbind.  Shadow passwords will be retrieved through the pam implementation of winbind.
+
* 检查nsswitch是否正确。 Shadow不应引用winbind。Shadow密码将通过winbind的pam implementation恢复。
 
file: /etc/nsswitch.conf
 
file: /etc/nsswitch.conf
 
<pre><nowiki>
 
<pre><nowiki>
第21行: 第22行:
 
sudo ./START
 
sudo ./START
 
</nowiki></pre>
 
</nowiki></pre>
* Detect your Domain settings, fill in the missing information and Install.
+
* 检查您的域名设置,填写缺少的信息并安装。
* When you install samba's winbind to Pam, unselect the Pam_mount module as it doesn't seem to install properly through sadms in version 2.0.11, it causes graphical sudo authentications to fail.
+
* 当您将samba的winbind安装到Pam,不要选择Pam_mount模块,因为它像是不能通过sadms 2.0.11版本正确安装,会导致图形的sudo认证失败。
==== Troubleshooting ====
+
====调试====
 
'''kdesudo and gksudo failing'''
 
'''kdesudo and gksudo failing'''
 
The pam module pam_mount.so refers to a config file located in /etc/security - pam_mount.conf.
 
The pam module pam_mount.so refers to a config file located in /etc/security - pam_mount.conf.
第41行: 第42行:
 
sudo apt-get remove nscd
 
sudo apt-get remove nscd
 
</nowiki></pre>
 
</nowiki></pre>
== External Docs ==
+
 
 +
== 外部文件 ==
 
[http://sadms.sourceforge.net/tut-sadms.html install tutorial from SADMS site]
 
[http://sadms.sourceforge.net/tut-sadms.html install tutorial from SADMS site]
 
[http://sadms.sourceforge.net/tut-pam.html install-PAM tutorial from SADMS site]
 
[http://sadms.sourceforge.net/tut-pam.html install-PAM tutorial from SADMS site]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年8月10日 (一) 14:48的最新版本

介绍

SADMS package允许通过GUI图形界面自动加入到活动目录。本页将描述如何使用SADMS来安装/调试,将一台Ubuntu机器加入到活动目录。[1]

获取SADMS Ubuntu package

从下面的地址下载 SADMS packagesourceforge 当前的Ubuntu package是: sadms-install-ubu-2.0.11.tar.gz

安装

  • 首先在SADMS的网站阅读指导手册(tuts),就在External Docs章节下面。
  • 解压缩。
  • 安装Winbind dependency并运行START脚本。
  • 检查nsswitch是否正确。 Shadow不应引用winbind。Shadow密码将通过winbind的pam implementation恢复。

file: /etc/nsswitch.conf

passwd:         compat winbind
group:          compat winbind
shadow:         compat
sudo apt-get install winbind
sudo ./START
  • 检查您的域名设置,填写缺少的信息并安装。
  • 当您将samba的winbind安装到Pam,不要选择Pam_mount模块,因为它像是不能通过sadms 2.0.11版本正确安装,会导致图形的sudo认证失败。

调试

kdesudo and gksudo failing The pam module pam_mount.so refers to a config file located in /etc/security - pam_mount.conf. pam_mount.conf appears to be configured incorrectly and causing kdesudo and gksudo to break. One must either decipher pam_mount.conf or disable pam from mounting shares at login. /etc/pam.d/common-auth: comment out this line

auth required pam_mount.so

(http://ubuntuforums.org/archive/index.php/t-215791.html) No Logon Servers This is caused by a problem with name resolution of the logon server. The name service cache daemon (nscd) can interfere with winbind, as winbind maintains its own cache. Remove it.

sudo apt-get remove nscd

外部文件

install tutorial from SADMS site install-PAM tutorial from SADMS site