how to create SAMBA server in fedora 9 linux ?
Answer Posted / dipesh kumar
service profile:
rpm: samba
samba-common (client side)
samba-swat
Daemon: smb
port number: samba 445
netbios 137 (udp)
138,139(tvp)
configuration file: /etc/samba/smb.conf
installation:
# rpm -ivh samba-3.......
# mkdir /samba (example note:share folder)
create share files in this folder
configuration:
# vi /etc/samba/smb.conf
Global settings
workgroup = WORKGROUP (if its domain envrn. enter
domain name )
Server string = samba for sharing (you can give
anything)
netbios name = localhost (give your server netbios name)
hosts allow = 192.168.0. (enter network ID or required
IPs)
Share Defanitions:(end of the line)
[samba]
comment = samba server
path = /samba
public = no/yes (if yes no need to enter valid
users, write list)
writable = yes
printable = no/yes
valid users = user1, user2 .......
write list = +user1, +user2 ........
(if there is ; bigining of the line remove it)
:wq!
# shmod 777 /samba
# service smb restart
# chkconfig smb on
# testparm
create user:
# useradd user1 -s /sbin/nologin
# smbpasswd -a user1 (or)
# touch /etc/samba/smbpasswd
# smbpasswd -a -c /etc/samba/smbpasswd user1
# service smb restart
# smbclient -U user1 //192.168.0.1/samba (if client is
linux)
# get/put
(if client is windows go to run \\192.168.0.1 enter
username and password)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How do I find hostname in linux?
How do I check cpu usage?
Who linux commands?
You want to know how many lines in the kickoff file contains ‘prize’. Which of the following commands will produce the desired results?
Suppose I lost a root password and I need to give it, I treid to change it through single usermode even though I am not get a password, then what is the otherprocedure to give a root password?
Which command is used to terminate a process?
What are grep commands?
How do I check dns entry?
Explain about communication features in UNIX?
How many commands are there in linux?
Brief about FTP hostname?
Is cmake a compiler?
How do I check my cpu speed?
What does mkdir do in linux?
What command used for showing user info like Login Name, Canonical Name, Home Directory,Shell etc in Linux?