Difference between revisions of "Samba4/OSX"
(→Compiling Samba4) |
(→Compiling Samba4) |
||
Line 11: | Line 11: | ||
tar -xvjf samba-4.0.0alpha14.tar.gz | tar -xvjf samba-4.0.0alpha14.tar.gz | ||
cd samba-4.0.0alpha14/source4 | cd samba-4.0.0alpha14/source4 | ||
+ | python_select python26 | ||
export PKG_CONFIG_PATH=/opt/local/lib/pkgconfig | export PKG_CONFIG_PATH=/opt/local/lib/pkgconfig | ||
./configure | ./configure | ||
make | make | ||
sudo make install | sudo make install | ||
− | |||
./setup/provision --realm=samdom.example.com --domain=SAMDOM --adminpass=SOMEPASSWORD --server-role='domain controller' | ./setup/provision --realm=samdom.example.com --domain=SAMDOM --adminpass=SOMEPASSWORD --server-role='domain controller' | ||
Revision as of 12:40, 31 January 2011
Under Construction. Right now, this page is a short list of notes.
Contents
Dependencies
- MacPorts
- Binaries...
We may need more or less ports. Will test on a fresh install. Wget is not a dependency of Samba4
sudo port install python26 python_select gnutls readline talloc wget
Compiling Samba4
You can use the Git instructions as in the general guide, or
wget http://download.samba.org/samba/ftp/samba4/samba-4.0.0alpha14.tar.gz tar -xvjf samba-4.0.0alpha14.tar.gz cd samba-4.0.0alpha14/source4 python_select python26 export PKG_CONFIG_PATH=/opt/local/lib/pkgconfig ./configure make sudo make install ./setup/provision --realm=samdom.example.com --domain=SAMDOM --adminpass=SOMEPASSWORD --server-role='domain controller'