Skocz do zawartości

Uruchamianie I Konfigurowanie Samby


piotrino

Rekomendowane odpowiedzi

Witam, mam fedorę 11, zainstalowałem sambę ale nie mogę jej uruchomić a tym bardziej skonfigurować...W jaki sposób mogę uruchomić (graficznie) sambę w celu skonfigurowania jej?

 [piotrino@localhost ~]$ su
Password: 
[root@localhost piotrino]# service smb start
Uruchamianie usług SMB: 
[root@localhost piotrino]# smbt ree
bash: smbt: command not found
[root@localhost piotrino]# cd /etc/samba
[root@localhost samba]# dir
lmhosts  smb.conf  smbusers
[root@localhost samba]# cat smb.conf
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# For a step to step guide on installing, configuring and using samba, 
# read the Samba-HOWTO-Collection. This may be obtained from:
#  http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
#
# Many working examples of smb.conf files can be found in the 
# Samba-Guide which is generated daily and can be downloaded from: 
#  http://www.samba.org/samba/docs/Samba-Guide.pdf
#
# Any line which starts with a; (semi-colon) or a # (hash) 
# is a comment and is ignored. In this example we will use a #
# for commentry and a; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not made any basic syntactic errors. 
#
#---------------
# SELINUX NOTES:
#
# If you want to use the useradd/groupadd family of binaries please run:
# setsebool -P samba_domain_controller on
#
# If you want to share home directories via samba please run:
# setsebool -P samba_enable_home_dirs on
#
# If you create a new directory you want to share you should mark it as
# "samba-share_t" so that selinux will let you write into it.
# Make sure not to do that on system directories as they may already have
# been marked with othe SELinux labels.
#
# Use ls -ldZ /path to see which context a directory has
#
# Set labels only on directories you created!
# To set a label use the following: chcon -t samba_share_t /path
#
# If you need to share a system created directory you can use one of the
# following (read-only/read-write):
# setsebool -P samba_export_all_ro on
# or
# setsebool -P samba_export_all_rw on
#
# If you want to run scripts (preexec/root prexec/print command/...) please
# put them into the /var/lib/samba/scripts directory so that smbd will be
# allowed to run them.
# Make sure you COPY them and not MOVE them so that the right SELinux context
# is applied, to check all is ok use restorecon -R -v /var/lib/samba/scripts
#
#--------------
#
#======================= Global Settings =====================================

[global]

# ----------------------- Netwrok Related Options -------------------------
#
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
#
# server string is the equivalent of the NT Description field
#
# netbios name can be used to specify a server name not tied to the hostname
#
# Interfaces lets you configure Samba to use multiple interfaces
# If you have multiple network interfaces then you can list the ones
# you want to listen on (never omit localhost)
#
# Hosts Allow/Hosts Deny lets you restrict who can connect, and you can
# specifiy it as a per share option as well
#
workgroup = MYGROUP
server string = Samba Server Version %v

;	netbios name = MYSERVER

;	interfaces = lo eth0 192.168.12.2/24 192.168.13.2/24 
;	hosts allow = 127. 192.168.12. 192.168.13.

# --------------------------- Logging Options -----------------------------
#
# Log File let you specify where to put logs and how to split them up.
#
# Max Log Size let you specify the max size log files should reach

# logs split per machine
log file = /var/log/samba/log.%m
# max 50KB per log file, then rotate
max log size = 50

# ----------------------- Standalone Server Options ------------------------
#
# Scurity can be set to user, share(deprecated) or server(deprecated)
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.

security = user
passdb backend = tdbsam


# ----------------------- Domain Members Options ------------------------
#
# Security must be set to domain or ads
#
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Use password server option only with security = server or if you can't
# use the DNS to locate Domain Controllers
# The argument list may include:
#   password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
#   password server = *


;	security = domain
;	passdb backend = tdbsam
;	realm = MY_REALM

;	password server = <NT-Server-Name>

# ----------------------- Domain Controller Options ------------------------
#
# Security must be set to user for domain controllers
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
#
# Domain Logons let Samba be a domain logon server for Windows workstations. 
#
# Logon Scrpit let yuou specify a script to be run at login time on the client
# You need to provide it in a share called NETLOGON
#
# Logon Path let you specify where user profiles are stored (UNC path)
#
# Various scripts can be used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
#
;	security = user
;	passdb backend = tdbsam

;	domain master = yes 
;	domain logons = yes

# the login script name depends on the machine name
;	logon script = %m.bat
# the login script name depends on the unix user used
;	logon script = %u.bat
;	logon path = \\%L\Profiles\%u
# disables profiles support by specifing an empty path
;	logon path =		  

;	add user script = /usr/sbin/useradd "%u" -n -g users
;	add group script = /usr/sbin/groupadd "%g"
;	add machine script = /usr/sbin/useradd -n -c "Workstation (%u)" -M -d /nohome -s /bin/false "%u"
;	delete user script = /usr/sbin/userdel "%u"
;	delete user from group script = /usr/sbin/userdel "%u" "%g"
;	delete group script = /usr/sbin/groupdel "%g"


# ----------------------- Browser Control Options ----------------------------
#
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
#
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
#
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
;	local master = no
;	os level = 33
;	preferred master = yes

#----------------------------- Name Resolution -------------------------------
# Windows Internet Name Serving Support Section:
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
#
# - WINS Support: Tells the NMBD component of Samba to enable it's WINS Server
#
# - WINS Server: Tells the NMBD components of Samba to be a WINS Client
#
# - WINS Proxy: Tells Samba to answer name resolution queries on
#   behalf of a non WINS capable client, for this to work there must be
#   at least one	WINS Server on the network. The default is NO.
#
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups.

;	wins support = yes
;	wins server = w.x.y.z
;	wins proxy = yes

;	dns proxy = yes

# --------------------------- Printing Options -----------------------------
#
# Load Printers let you load automatically the list of printers rather
# than setting them up individually
#
# Cups Options let you pass the cups libs custom options, setting it to raw
# for example will let you use drivers on your Windows clients
#
# Printcap Name let you specify an alternative printcap file
#
# You can choose a non default printing system using the Printing option

load printers = yes
cups options = raw

;	printcap name = /etc/printcap
#obtain list of printers automatically on SystemV
;	printcap name = lpstat
;	printing = cups

# --------------------------- Filesystem Options ---------------------------
#
# The following options can be uncommented if the filesystem supports
# Extended Attributes and they are enabled (usually by the mount option
# user_xattr). Thess options will let the admin store the DOS attributes
# in an EA and make samba not mess with the permission bits.
#
# Note: these options can also be set just per share, setting them in global
# makes them the default for all shares

;	map archive = no
;	map hidden = no
;	map read only = no
;	map system = no
;	store dos attributes = yes


#============================ Share Definitions ==============================

[homes]
comment = Home Directories
browseable = no
writable = yes
;	valid users = %S
;	valid users = MYDOMAIN\%S

[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes

# Un-comment the following and create the netlogon directory for Domain Logons
;	[netlogon]
;	comment = Network Logon Service
;	path = /var/lib/samba/netlogon
;	guest ok = yes
;	writable = no
;	share modes = no


# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;	[Profiles]
;	path = /var/lib/samba/profiles
;	browseable = no
;	guest ok = yes


# A publicly accessible directory, but read only, except for people in
# the "staff" group
;	[public]
;	comment = Public Stuff
;	path = /home/samba
;	public = yes
;	writable = yes
;	printable = no
;	write list = +staff
[root@localhost samba]# 

Linux localhost.localdomain 2.6.29.4-167.fc11.i686.PAE #1 SMP Wed May 27 17:28:22 EDT 2009 i686 i686 i386 GNU/Linux

 

Myślę że problem jest w uruchomieniu samby, nie wiem czy dobrze mi się uruchamia samba, komendy do uruchamiania samby daję chyba dobrze....?

Odnośnik do komentarza
Udostępnij na innych stronach

  • Odpowiedzi 69
  • Created
  • Ostatniej odpowiedzi

Top Posters In This Topic

1.Regulamin rozdzial II pkt.2. a)-d) - zobowiązałeś się do przestrzegania, a jak widać masz to w nosie.

2.Używaj właściwych znaczników ( w tym przypadku codebox zamiast code)

3.Temat był tyle razy do znudzenia i w szczegółach omawiany na forum, że powinienem w ogóle skasować, ale w drodze wyjątku przeniosę do działu "Ośla łączka"

4.Całkowicie zła kolejność: nie "uruchomić Sambę w celu skonfigurowania" a skonfigurować w celu uruchomienia ;)

Odnośnik do komentarza
Udostępnij na innych stronach

4.Całkowicie zła kolejność: nie "uruchomić Sambę w celu skonfigurowania" a skonfigurować w celu uruchomienia ;)

 

Ok, zrozumiałem dostosuję się do punktów 1-2 :D , co do punktu 4, to muszę najpierw skonfigurować sambę żeby ją uruchomic....możesz mi podać przykład skonfigurowania samby? Poszukam na forum jeszcze....dzięki za odpowiedz...

 

I ostatnie pytanie....Czy jest możliwość przetestowania samby bez konieczności posiadania sieci lokalnej(udostępnienia zasobów itd..)?, aktualnie mam na jednym kompie dwa systemy fedore, i xp....ALe jak się domyślam bym musiał mieć przynajmniej dwa komputery zeby testować sambę....

 

P.S Podałem inną konfigurację przykładową wzięte z forum, ale dale nie chce mi się uruchomić samba...

[piotrino@localhost ~]$ su
Password: 
[root@localhost piotrino]# service smb start
Uruchamianie usług SMB: 
[root@localhost piotrino]#

 

P.S Od którego momentu w pliku smb.con muszę wpisac swoją konfigurację? Od lini GLOBAL?

To mój nowy plik po skonfigurowaniu:

# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# For a step to step guide on installing, configuring and using samba, 
# read the Samba-HOWTO-Collection. This may be obtained from:
#  http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
#
# Many working examples of smb.conf files can be found in the 
# Samba-Guide which is generated daily and can be downloaded from: 
#  http://www.samba.org/samba/docs/Samba-Guide.pdf
#
# Any line which starts with a ; (semi-colon) or a # (hash) 
# is a comment and is ignored. In this example we will use a #
# for commentry and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not made any basic syntactic errors. 
#
#---------------
# SELINUX NOTES:
#
# If you want to use the useradd/groupadd family of binaries please run:
# setsebool -P samba_domain_controller on
#
# If you want to share home directories via samba please run:
# setsebool -P samba_enable_home_dirs on
#
# If you create a new directory you want to share you should mark it as
# "samba-share_t" so that selinux will let you write into it.
# Make sure not to do that on system directories as they may already have
# been marked with othe SELinux labels.
#
# Use ls -ldZ /path to see which context a directory has
#
# Set labels only on directories you created!
# To set a label use the following: chcon -t samba_share_t /path
#
# If you need to share a system created directory you can use one of the
# following (read-only/read-write):
# setsebool -P samba_export_all_ro on
# or
# setsebool -P samba_export_all_rw on
#
# If you want to run scripts (preexec/root prexec/print command/...) please
# put them into the /var/lib/samba/scripts directory so that smbd will be
# allowed to run them.
# Make sure you COPY them and not MOVE them so that the right SELinux context
# is applied, to check all is ok use restorecon -R -v /var/lib/samba/scripts
#
#--------------
#
#======================= Global Settings =====================================


[ global ]
         workgroup = ROBINSNEST
         n e t b i o s name = ELASTIC
         n e t b i o s a l i a s e s = CDSERVER
         smb p o r t s = 139
         p r i n t c a p name = cups
         d i s a b l e s p o o l s s = Yes
         show add p r i n t e r w i z a r d = No
         p r i n t i n g = cups
         i n c l u d e = / e t c /samba/smb−%L . c o n f
[ homes ]
         comment = Home D i r e c t o r i e s
         v a l i d u s e r s = %S
         r e a d o n l y = No
         b r o w s e a b l e = No
[ office ]
         comment = Data
         path = / data
         r e a d o n l y = No
[ printers ]
         comment = A l l P r i n t e r s
         path = / var / s p o o l /samba
         c r e a t e mask = 0600
         g u e s t ok = Yes
         p r i n t a b l e = Yes
         u s e c l i e n t d r i v e r = Yes
         b r o w s e a b l e = No


# ----------------------- Netwrok Related Options -------------------------
#
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
#
# server string is the equivalent of the NT Description field
#
# netbios name can be used to specify a server name not tied to the hostname
#
# Interfaces lets you configure Samba to use multiple interfaces
# If you have multiple network interfaces then you can list the ones
# you want to listen on (never omit localhost)
#
# Hosts Allow/Hosts Deny lets you restrict who can connect, and you can
# specifiy it as a per share option as well
#
workgroup = MYGROUP
server string = Samba Server Version %v

;	netbios name = MYSERVER

;	interfaces = lo eth0 192.168.12.2/24 192.168.13.2/24 
;	hosts allow = 127. 192.168.12. 192.168.13.

# --------------------------- Logging Options -----------------------------
#
# Log File let you specify where to put logs and how to split them up.
#
# Max Log Size let you specify the max size log files should reach

# logs split per machine
log file = /var/log/samba/log.%m
# max 50KB per log file, then rotate
max log size = 50

# ----------------------- Standalone Server Options ------------------------
#
# Scurity can be set to user, share(deprecated) or server(deprecated)
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.

security = user
passdb backend = tdbsam


# ----------------------- Domain Members Options ------------------------
#
# Security must be set to domain or ads
#
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Use password server option only with security = server or if you can't
# use the DNS to locate Domain Controllers
# The argument list may include:
#   password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
#   password server = *


;	security = domain
;	passdb backend = tdbsam
;	realm = MY_REALM

;	password server = <NT-Server-Name>

# ----------------------- Domain Controller Options ------------------------
#
# Security must be set to user for domain controllers
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
#
# Domain Logons let Samba be a domain logon server for Windows workstations. 
#
# Logon Scrpit let yuou specify a script to be run at login time on the client
# You need to provide it in a share called NETLOGON
#
# Logon Path let you specify where user profiles are stored (UNC path)
#
# Various scripts can be used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
#
;	security = user
;	passdb backend = tdbsam

;	domain master = yes 
;	domain logons = yes

# the login script name depends on the machine name
;	logon script = %m.bat
# the login script name depends on the unix user used
;	logon script = %u.bat
;	logon path = \\%L\Profiles\%u
# disables profiles support by specifing an empty path
;	logon path =          

;	add user script = /usr/sbin/useradd "%u" -n -g users
;	add group script = /usr/sbin/groupadd "%g"
;	add machine script = /usr/sbin/useradd -n -c "Workstation (%u)" -M -d /nohome -s /bin/false "%u"
;	delete user script = /usr/sbin/userdel "%u"
;	delete user from group script = /usr/sbin/userdel "%u" "%g"
;	delete group script = /usr/sbin/groupdel "%g"


# ----------------------- Browser Control Options ----------------------------
#
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
#
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
#
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
;	local master = no
;	os level = 33
;	preferred master = yes

#----------------------------- Name Resolution -------------------------------
# Windows Internet Name Serving Support Section:
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
#
# - WINS Support: Tells the NMBD component of Samba to enable it's WINS Server
#
# - WINS Server: Tells the NMBD components of Samba to be a WINS Client
#
# - WINS Proxy: Tells Samba to answer name resolution queries on
#   behalf of a non WINS capable client, for this to work there must be
#   at least one	WINS Server on the network. The default is NO.
#
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups.

;	wins support = yes
;	wins server = w.x.y.z
;	wins proxy = yes

;	dns proxy = yes

# --------------------------- Printing Options -----------------------------
#
# Load Printers let you load automatically the list of printers rather
# than setting them up individually
#
# Cups Options let you pass the cups libs custom options, setting it to raw
# for example will let you use drivers on your Windows clients
#
# Printcap Name let you specify an alternative printcap file
#
# You can choose a non default printing system using the Printing option

load printers = yes
cups options = raw

;	printcap name = /etc/printcap
#obtain list of printers automatically on SystemV
;	printcap name = lpstat
;	printing = cups

# --------------------------- Filesystem Options ---------------------------
#
# The following options can be uncommented if the filesystem supports
# Extended Attributes and they are enabled (usually by the mount option
# user_xattr). Thess options will let the admin store the DOS attributes
# in an EA and make samba not mess with the permission bits.
#
# Note: these options can also be set just per share, setting them in global
# makes them the default for all shares

;	map archive = no
;	map hidden = no
;	map read only = no
;	map system = no
;	store dos attributes = yes


#============================ Share Definitions ==============================

[homes]
comment = Home Directories
browseable = no
writable = yes
;	valid users = %S
;	valid users = MYDOMAIN\%S

[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes

# Un-comment the following and create the netlogon directory for Domain Logons
;	[netlogon]
;	comment = Network Logon Service
;	path = /var/lib/samba/netlogon
;	guest ok = yes
;	writable = no
;	share modes = no


# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;	[Profiles]
;	path = /var/lib/samba/profiles
;	browseable = no
;	guest ok = yes


# A publicly accessible directory, but read only, except for people in
# the "staff" group
;	[public]
;	comment = Public Stuff
;	path = /home/samba
;	public = yes
;	writable = yes
;	printable = no
;	write list = +staff

Tłustym drukiem moja dopisana konfiguracja samby....

Odnośnik do komentarza
Udostępnij na innych stronach

Czy jest możliwość przetestowania samby bez konieczności posiadania sieci lokalnej(udostępnienia zasobów itd..)?
Tak, ale jaki to ma sens? Chyba tylko w celach poznawczych. Można to zrobić instalując oprogramowanie umożliwiające skonfigurowanie maszyn wirtualnych (mądrze brzmi, ale to nie jest tak trudne jak się wydaje) → http://wiki.fedora.pl/wiki/Poradnik#Wirtualizacja Dzięki temu możesz utworzyć w rzeczywistym systemie sieć wirtualną.

 

aktualnie mam na jednym kompie dwa systemy fedore, i xp....
Potrzebujesz Sambę czy chcesz z poziomu Fedory sięgać do dysków XP?

 

P.S Podałem inną konfigurację przykładową wzięte z forum, ale dale nie chce mi się uruchomić samba...
Nadal złe podejście. Najpierw poczytaj co to jest Samba, potem próbuj konfigurować. Tu nie ma jednej uniwersalnej konfiguracji dla wszystkich.

No i przede wszystkim jeśli masz w konfiguracji tak jak tutaj wkleiłeś np."r e a d o n l y" zamiast "readonly" czy "g u e s t ok" zamiast "guest ok", to nic dziwnego, że nie działa.

Odnośnik do komentarza
Udostępnij na innych stronach

Tak, ale jaki to ma sens? Chyba tylko w celach poznawczych. Można to zrobić instalując oprogramowanie umożliwiające skonfigurowanie maszyn wirtualnych (mądrze brzmi, ale to nie jest tak trudne jak się wydaje) → http://wiki.fedora.pl/wiki/Poradnik#Wirtualizacja Dzięki temu możesz utworzyć w rzeczywistym systemie sieć wirtualną.

Potrzebuję do celów poznawczych..... i chyba spróbuję zainstalować maszynę wirtualną. Jak zainstalujej virtuala, to jak się domyslam bym musiał na nim zainstalować windowsa????

Potrzebujesz Sambę czy chcesz z poziomu Fedory sięgać do dysków XP?

Sambę potrzebuję zeby z pozioum windowsa xp si ęgać do dysków ...Tylko raczej nie da rady, i będę musiał utworzyć chya w systemie fedora siec wirtualną(patrz punkt wyżej)

 

Nadal złe podejście. Najpierw poczytaj co to jest Samba, potem próbuj konfigurować. Tu nie ma jednej uniwersalnej konfiguracji dla wszystkich.

No i przede wszystkim jeśli masz w konfiguracji tak jak tutaj wkleiłeś np."r e a d o n l y" zamiast "readonly" czy "g u e s t ok" zamiast "guest ok", to nic dziwnego, że nie działa.

OK poprawię i dam znać

 

Po prostu chodzi mi zeby skonfigurować sambę i uruchomić (nawet wirtualnie) dla celów poznawczych i potestować ją....I dlatego bez waszej pomocy się raczej nie obędzie....

 

Serdecznie dzięki za pomoc , bardzo mi zależy na wskazówkach co i jak..... :rolleyes:

 

Podstawową konfigurację możesz otrzymać instalując i uruchamiając system-config-samba. Jeśli chcesz po prostu udostępnić katalogi w sieci lokalnej to narzędzie wystarczy. Trochę o sambie w 25 numerze dragoni.

 

Tzn że mogę bazować na podstawowej konfiguracji jaką mam(nic w tym nie zmieniając na początku) żeby uruchomic sambę???? Tylko ze jak uruchamiam z t a podstwową konfiguracja co mam to nie uruchamia mi się....tzn z tą konfiguracją podstawową

# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# For a step to step guide on installing, configuring and using samba, 
# read the Samba-HOWTO-Collection. This may be obtained from:
#  http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
#
# Many working examples of smb.conf files can be found in the 
# Samba-Guide which is generated daily and can be downloaded from: 
#  http://www.samba.org/samba/docs/Samba-Guide.pdf
#
# Any line which starts with a ; (semi-colon) or a # (hash) 
# is a comment and is ignored. In this example we will use a #
# for commentry and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not made any basic syntactic errors. 
#
#---------------
# SELINUX NOTES:
#
# If you want to use the useradd/groupadd family of binaries please run:
# setsebool -P samba_domain_controller on
#
# If you want to share home directories via samba please run:
# setsebool -P samba_enable_home_dirs on
#
# If you create a new directory you want to share you should mark it as
# "samba-share_t" so that selinux will let you write into it.
# Make sure not to do that on system directories as they may already have
# been marked with othe SELinux labels.
#
# Use ls -ldZ /path to see which context a directory has
#
# Set labels only on directories you created!
# To set a label use the following: chcon -t samba_share_t /path
#
# If you need to share a system created directory you can use one of the
# following (read-only/read-write):
# setsebool -P samba_export_all_ro on
# or
# setsebool -P samba_export_all_rw on
#
# If you want to run scripts (preexec/root prexec/print command/...) please
# put them into the /var/lib/samba/scripts directory so that smbd will be
# allowed to run them.
# Make sure you COPY them and not MOVE them so that the right SELinux context
# is applied, to check all is ok use restorecon -R -v /var/lib/samba/scripts
#
#--------------
#
#======================= Global Settings =====================================

[global]



# ----------------------- Netwrok Related Options -------------------------
#
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
#
# server string is the equivalent of the NT Description field
#
# netbios name can be used to specify a server name not tied to the hostname
#
# Interfaces lets you configure Samba to use multiple interfaces
# If you have multiple network interfaces then you can list the ones
# you want to listen on (never omit localhost)
#
# Hosts Allow/Hosts Deny lets you restrict who can connect, and you can
# specifiy it as a per share option as well
#
workgroup = MYGROUP
server string = Samba Server Version %v

;	netbios name = MYSERVER

;	interfaces = lo eth0 192.168.12.2/24 192.168.13.2/24 
;	hosts allow = 127. 192.168.12. 192.168.13.

# --------------------------- Logging Options -----------------------------
#
# Log File let you specify where to put logs and how to split them up.
#
# Max Log Size let you specify the max size log files should reach

# logs split per machine
log file = /var/log/samba/log.%m
# max 50KB per log file, then rotate
max log size = 50

# ----------------------- Standalone Server Options ------------------------
#
# Scurity can be set to user, share(deprecated) or server(deprecated)
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.

security = user
passdb backend = tdbsam


# ----------------------- Domain Members Options ------------------------
#
# Security must be set to domain or ads
#
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Use password server option only with security = server or if you can't
# use the DNS to locate Domain Controllers
# The argument list may include:
#   password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
#   password server = *


;	security = domain
;	passdb backend = tdbsam
;	realm = MY_REALM

;	password server = <NT-Server-Name>

# ----------------------- Domain Controller Options ------------------------
#
# Security must be set to user for domain controllers
#
# Backend to store user information in. New installations should 
# use either tdbsam or ldapsam. smbpasswd is available for backwards 
# compatibility. tdbsam requires no further configuration.
#
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
#
# Domain Logons let Samba be a domain logon server for Windows workstations. 
#
# Logon Scrpit let yuou specify a script to be run at login time on the client
# You need to provide it in a share called NETLOGON
#
# Logon Path let you specify where user profiles are stored (UNC path)
#
# Various scripts can be used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
#
;	security = user
;	passdb backend = tdbsam

;	domain master = yes 
;	domain logons = yes

# the login script name depends on the machine name
;	logon script = %m.bat
# the login script name depends on the unix user used
;	logon script = %u.bat
;	logon path = %LProfiles%u
# disables profiles support by specifing an empty path
;	logon path =          

;	add user script = /usr/sbin/useradd "%u" -n -g users
;	add group script = /usr/sbin/groupadd "%g"
;	add machine script = /usr/sbin/useradd -n -c "Workstation (%u)" -M -d /nohome -s /bin/false "%u"
;	delete user script = /usr/sbin/userdel "%u"
;	delete user from group script = /usr/sbin/userdel "%u" "%g"
;	delete group script = /usr/sbin/groupdel "%g"


# ----------------------- Browser Control Options ----------------------------
#
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
#
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
#
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
;	local master = no
;	os level = 33
;	preferred master = yes

#----------------------------- Name Resolution -------------------------------
# Windows Internet Name Serving Support Section:
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
#
# - WINS Support: Tells the NMBD component of Samba to enable it's WINS Server
#
# - WINS Server: Tells the NMBD components of Samba to be a WINS Client
#
# - WINS Proxy: Tells Samba to answer name resolution queries on
#   behalf of a non WINS capable client, for this to work there must be
#   at least one	WINS Server on the network. The default is NO.
#
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups.

;	wins support = yes
;	wins server = w.x.y.z
;	wins proxy = yes

;	dns proxy = yes

# --------------------------- Printing Options -----------------------------
#
# Load Printers let you load automatically the list of printers rather
# than setting them up individually
#
# Cups Options let you pass the cups libs custom options, setting it to raw
# for example will let you use drivers on your Windows clients
#
# Printcap Name let you specify an alternative printcap file
#
# You can choose a non default printing system using the Printing option

load printers = yes
cups options = raw

;	printcap name = /etc/printcap
#obtain list of printers automatically on SystemV
;	printcap name = lpstat
;	printing = cups

# --------------------------- Filesystem Options ---------------------------
#
# The following options can be uncommented if the filesystem supports
# Extended Attributes and they are enabled (usually by the mount option
# user_xattr). Thess options will let the admin store the DOS attributes
# in an EA and make samba not mess with the permission bits.
#
# Note: these options can also be set just per share, setting them in global
# makes them the default for all shares

;	map archive = no
;	map hidden = no
;	map read only = no
;	map system = no
;	store dos attributes = yes


#============================ Share Definitions ==============================

[homes]
comment = Home Directories
browseable = no
writable = yes
;	valid users = %S
;	valid users = MYDOMAIN%S

[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes

# Un-comment the following and create the netlogon directory for Domain Logons
;	[netlogon]
;	comment = Network Logon Service
;	path = /var/lib/samba/netlogon
;	guest ok = yes
;	writable = no
;	share modes = no


# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;	[Profiles]
;	path = /var/lib/samba/profiles
;	browseable = no
;	guest ok = yes


# A publicly accessible directory, but read only, except for people in
# the "staff" group
;	[public]
;	comment = Public Stuff
;	path = /home/samba
;	public = yes
;	writable = yes
;	printable = no
;	write list = +staff

 

-------------------

Nie pisz postów pod własnymi - korzystaj z przycisku [EDYTUJ] pod postem

Edytowane przez WalDo
łączenie postów
Odnośnik do komentarza
Udostępnij na innych stronach

Jak zainstalujej virtuala, to jak się domyslam bym musiał na nim zainstalować windowsa????
No jakiś system musisz mieć. Najlepiej utwórz dwie maszyny wirtualne, które będą się komunikować ze sobą. Na jednej windy na drugiej linux.

 

Sambę potrzebuję zeby z pozioum windowsa xp si ęgać do dysków ...
No właśnie, te trzy kropki. Do jakich dysków chcesz sięgnąć z Windowsa? Do partycji Fedory?

 

Odnośnik do komentarza
Udostępnij na innych stronach

Sambę potrzebuję zeby z pozioum windowsa xp si ęgać do dysków ...Tylko raczej nie da rady, i będę musiał utworzyć chya w systemie

 

Pod WindąTotal Commander widzi dyski linuksa. ext3 na pewno nie wiem jak ext4.

 

Odnośnik do komentarza
Udostępnij na innych stronach

No jakiś system musisz mieć. Najlepiej utwórz dwie maszyny wirtualne, które będą się komunikować ze sobą. Na jednej windy na drugiej linux.

Ok dzięki, zainstalowałem już virtuala boxa, ale przy próbie instalowania systemu wychodzi mi ten błąd:

Kernel driver not installed (rc=-1908)

The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Re-setup the kernel module by executing

'/etc/init.d/vboxdrv setup'

as root. Users of Ubuntu, Fedora or Mandriva should install the DKMS package first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel module if necessary.

Probowałem instalować przez yum ten sterownik ale nie może go znaleść w systemie(not found)

No właśnie, te trzy kropki. Do jakich dysków chcesz sięgnąć z Windowsa? Do partycji Fedory?
C

Chodzi mi dokładnie o udostępnianie zasobów systemowi windows....Po prostu chciałbym utworzyć serwer na fedorze żebym udostępniał dyski , foldery , pliki itd...drugiemu systemowi czyli xp....To tak jakbym miał oddzielnie serwer na fedorze(samba,ftp) i fizyczną sieć lokalną np z trzech komputerów(na każdym system windows) i żebym miał na serwerze skonfigurowane udostępnianie dysków itd...A z systemów windows pobierał z serwera samba przykładowe pliki ....Tylko w tym wypadku nie mam sieci lokalnej zeby to wszystko zrobic, to chciałbym choć na maszynie wirtualniej stworzyc dwa systemy i to wszystko skonfigurować dla celów "poznawczych"....Mam nadzieję ze rozumiesz o co mi chodzi...???? Prawdobodonie będę musiał w niedallekiej przyszłosici to wszystko zrobic w sieci lokalnej tzn.(osobo serwer(samba,ftp-na linuksie) skonfigurować to do udostępniania plików, folderów w sieci, i udostępnieć to w sieci lokalnej innym systemom(windowsom).

Chodzi mi o naczenie się tej konfiguracji samby na fedorze i udostępnienie plików w sieci (lokalnej)

Za bardzo nie znam się na tym, i dlatego proszę Cię o pomoc, pokierowanie w tym kierunku....BYłbym bardzo wdzięczny :rolleyes:

Odnośnik do komentarza
Udostępnij na innych stronach

Ok dzięki, zainstalowałem już virtuala boxa, ale przy próbie instalowania systemu wychodzi mi ten błąd:
No, cóż. jeśli chodzi o mnie, to nie licz na żadną pomoc dopóki nie przeczytasz poradnika na naszej wiki. A przede wszystkim nie wykonasz odpowiednich poleceń, które tam są podane (chodzi mi o VirtualBox szczególnie) oraz tych, o których jest powiedziane w komunikacie błędu. Krok po kroku.

I ogólnie zanim cokolwiek zaczniesz robić z wirtualizacją pod VirtualBox, to może poczytaj sobie trochę na ten temat → virtualbox.org

 

Jeśli chodzi o Sambę, to specjalistą nie jestem, ale i tu na forum i ogólnie w sieci są na ten temat setki artykułów (w tym również w j.polskim). Jest z tym tylko jeden problem, ten sam co zwykle. Trzeba znaleźć i (przede wszystkim) przeczytać dokładnie i ze zrozumieniem.

Odnośnik do komentarza
Udostępnij na innych stronach

No, cóż. jeśli chodzi o mnie, to nie licz na żadną pomoc dopóki nie przeczytasz poradnika na naszej wiki. A przede wszystkim nie wykonasz odpowiednich poleceń, które tam są podane (chodzi mi o VirtualBox szczególnie) oraz tych, o których jest powiedziane w komunikacie błędu. Krok po kroku.

I ogólnie zanim cokolwiek zaczniesz robić z wirtualizacją pod VirtualBox, to może poczytaj sobie trochę na ten temat → virtualbox.org

 

Jeśli chodzi o Sambę, to specjalistą nie jestem, ale i tu na forum i ogólnie w sieci są na ten temat setki artykułów (w tym również w j.polskim). Jest z tym tylko jeden problem, ten sam co zwykle. Trzeba znaleźć i (przede wszystkim) przeczytać dokładnie i ze zrozumieniem.

OK masz rację, idę na skróty....Wykonałem polecenia, które są padane w pliku:

 

[root@localhost /]# /etc/init.d/ vboxdrv
bash: /etc/init.d/: is a directory
[root@localhost /]# /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module                          [  OK  ]
Recompiling VirtualBox kernel module                       [FAILED]
  (Look at /var/log/vbox-install.log to find out what went wrong)
[root@localhost /]#

Rekompilacja się nie udała...

cups		   messages	       spooler
[root@localhost log]# cat vbox-install.log
Attempting to install using DKMS
 removing old DKMS module vboxdrv version  3.0.0

------------------------------
Deleting module version: 3.0.0
completely from the DKMS tree.
------------------------------
Done.

Creating symlink /var/lib/dkms/vboxdrv/3.0.0/source ->
                /usr/src/vboxdrv-3.0.0

DKMS: add Completed.

Error! Your kernel source for kernel 2.6.29.5-191.fc11.i686.PAE cannot be found at
/lib/modules/2.6.29.5-191.fc11.i686.PAE/build or /lib/modules/2.6.29.5-191.fc11.i686.PAE/source.
You can use the --kernelsourcedir option to tell DKMS where it's located.
Failed to install using DKMS, attempting to install without
Makefile:147: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.
[root@localhost log]# 

.Tego wyzej komunikatu nie mogę do konca zrozumiec...

[root@localhost /]# uname -a
Linux localhost.localdomain 2.6.29.5-191.fc11.i686.PAE #1 SMP Tue Jun 16 23:19:53 EDT 2009 i686 i686 i386 GNU/Linux
[root@localhost /]#

A resztę poczytam sobie "ze zrozumieniem". Pozdrawiam

 

P.S

 Users of Ubuntu, Fedora or Mandriva should install the DKMS package first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel module if necessary.

Z tego komunikatu wnioskuję ze nalezy najpierw zainstalować paczkę DKMS, a potem kompilajcja kernela....Skąd mam (_wziąść_ &#8594; wziąć) ORT tą paczkę DKMS??(poszukam w sieci na ten temat może coś znaję)

Odnośnik do komentarza
Udostępnij na innych stronach

PRZECZYTAJ poradnik. CAŁY. A skąd brać paczki tutaj → http://wiki.fedora.pl/wiki/Poradnik#Podsta...zanie_pakietami

Nie szukaj w sieci, bo sobie tylko śmietnik w systemie zrobisz. Wszystko masz pod ręką. Tylko przeczytać trzeba, przeczytać i zrozumieć.

Jeśli wykonałeś wszystkie polecenia, to DKMS masz już zainstalowany. Nie kopiuj w ciemno poleceń, patrz co w nich jest napisane.

 

Error! Your kernel source for kernel 2.6.29.5-191.fc11.i686.PAE cannot be found
Tu jest problem i niedomówienie na naszej lokalnej Wiki. Trzeba zainstalować kernel-PAE-devel zamiast kernel-devel. Zaraz to uzupełnię. Na razie wykonaj jako root
yum install kernel-PAE-devel
/etc/init.d/vboxdrv setup

 

[EDIT]

Na wiki poprawione.

Odnośnik do komentarza
Udostępnij na innych stronach

Nie szukaj w sieci, bo sobie tylko śmietnik w systemie zrobisz. Wszystko masz pod ręką. Tylko przeczytać trzeba, przeczytać i zrozumieć.

Jeśli wykonałeś wszystkie polecenia, to DKMS masz już zainstalowany. Nie kopiuj w ciemno poleceń, patrz co w nich jest napisane.

Wielkie dzięki . Wszystko działa, własnie instaluję sobie windowsa a potem fedorę....Miałeś rację nie doczytałem wszystkiego do konca, na drugi raz uważniej będę czytał a nie od razu pisał na forum :D

 

p.s Teraz jak zainstaluję na wirtualnej maszynie fedore na której zainstaluję i spróbuję skonfigurować sambę(do współdzielenia zasobów) a na windowsie(virtual box)-zebym pobierał pliki z serwera samby(która jest na fedorze)....Da radę to wszystko połączyć poprzez dwa systemy stworzone w virtual box....? Pozdrawiam

 

Czy wcześniej na windowsie co muszę mniej więcej skonfigurować zeby mi się windows z sambą łączył....?

Odnośnik do komentarza
Udostępnij na innych stronach

Windows Zobaczy to co udostępnisz Sambą, To zależy oczywiście od ustawnień. Jak Sambe skonfigurujesz, to w windzie dodaj nowe miejsce sieciowe i po wszystkim.

Skonfiguruj najpierw maszynę wirtualną, by miała dostęp do sieci.

 

... Wszystko działa, własnie instaluję sobie windowsa a potem fedorę....

 

Czy dobrze rozumie? <_< Chcesz na Windzie pod maszyną wirtualną instalować Fedore :lammer:

Nie polecam. To nie będzie chodzić jak powinno. Fedora zamulona przez Winde. W drugą stronę zawsze Hula. Tu nie przewiduje rewelacji. W ten sposób nie zobaczysz zalet systemu jakim, jest Linux.

 

 

Odnośnik do komentarza
Udostępnij na innych stronach

Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto

Jedynie zarejestrowani użytkownicy mogą komentować zawartość tej strony.

Zarejestruj nowe konto

Załóż nowe konto. To bardzo proste!

Zarejestruj się

Zaloguj się

Posiadasz już konto? Zaloguj się poniżej.

Zaloguj się

×
×
  • Dodaj nową pozycję...