Linux/Tipps/Gentoo/Installation: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Linux/Tipps/Gentoo/Installation (Quelltext anzeigen)
Version vom 3. Januar 2008, 19:28 Uhr
, 3. Januar 2008→Samba
Thomas (Diskussion | Beiträge) (→NFS) |
Thomas (Diskussion | Beiträge) (→Samba) |
||
Zeile 274: | Zeile 274: | ||
==Samba== | ==Samba== | ||
Quelle: http://gentoo-wiki.com/HOWTO_Setup_Samba | |||
Falls man eine Web-Admin-GUI ("Swat") für Samba möchte, in '''/etc/portage/package.use''': | |||
net-fs/samba swat | |||
Dann | |||
emerge samba | |||
Dann '''/etc/samba/smb.conf''' anlegen: | |||
[global] | |||
workgroup = <Name der Arbeitsgruppe> | |||
printcap name = cups | |||
disable spoolss = Yes | |||
show add printer wizard = No | |||
printing = cups | |||
cups options = raw | |||
print command = | |||
lpq command = %p | |||
lprm command = | |||
[printers] | |||
comment = All Printers | |||
path = /var/tmp | |||
create mask = 0600 | |||
printable = Yes | |||
browseable = No | |||
[homes] | |||
valid users = %S | |||
read only = No | |||
browseable = No | |||
Ein Read-Only Share hinzufügen (Beispiel): | |||
[work] | |||
path = /work | |||
Dann Passwort für '''root''' setzen: | |||
smbpasswd -a root | |||
Für jeden weiteren Samba-Benutzer: | |||
smbpasswd -a <Benutzer> | |||
Dann: | |||
/etc/init.d/samba start | |||
rc-update add samba default | |||
===Swat=== | |||
emerge xinetd | |||
'''/etc/xinetd.d/swat''': | |||
disable = '''no''' | |||
Dann: | |||
/etc/init.d/xinetd start | |||
rc-update add xinetd default | |||
Dann kommt man mit http://localhost:901/ zur Swat-GUI. | |||
==D-Bus== | ==D-Bus== |