SlideShare une entreprise Scribd logo
1  sur  30
Samba Server Setup




             SAMBA SERVER SETUP
Samba Server Setup

                     Samba Service



     File and Printer Sharing from LINIX to Windows
     Uses smb Daemon
     service smb start/stop/restart
Samba Server Setup

                  What is Samba??

  Samba is an Open Source Suite, that provides seamless file and
  print services to SMB/CIFS clients.
   • Samba is freely available.
   • With Samba, you can share a Linux files ystem with
      Windows and vice versa.
   • You can also share printers connected to either Linux or a
      system with Windows.
   • Samba enables a Linux or Unix server to function as a file
      server for client PCs running Windows software.
Samba Server Setup

                 What is Samba??

  What is SMB?
  • SMB stands for – Server Message Block.
  • It is a protocol by which a lot of PC-related machines
    share files and printers and other information such as
    lists of available files and printers.
  • Operating systems that support this natively include
    Windows, OS/2, and Linux.
  What is CIFS?
  • CIFS – Common Internet File System is a protocol
    that is basically an updated SMB.
Samba Server Setup

               Components of SMB

  smbd daemon: This provides the file and print services to SMB
  clients such as Windows NT or other Linux or Unix clients.
   • smb.conf: This is the configuration file for smbd.
   • nmbd daemon: This daemon provides NetBIOS
      nameserving and browsing support.
   • smbclient: This is an smb client program that implement a
      simple FTP-like client on a Linux or Unix box.
   • smbmount: This mounting program enables mounting of
      server directories on a Linux or Unix box.
Samba Server Setup

               Components of SMB


   • testparm: This utility is used to test the smb.conf
     configuration file.
   • smbstatus: This programs lists the current Samba
     connections.
   • SWAT: Swat allows a Samba administrator to configure the
     smb.conf file via a Web browser.
   • smbpasswd: This allows the user to change the password
     used for their SMB sessions.
Samba Server Setup

                    Installation and Setup

  The Samba Server package can be downloaded from the
  Samba website.
   • The file needs to be untared and then configured using
      a ./configure command in the source directory.
   • Then the smb.conf file should be created. The smb.conf file
      has three separate sections:
  [global] : This section controls parameters for the entire SMB
  server. It also provides default values for the other sections.
  Examples: workgroup = MYGROUP
         server string = Samba Server
Samba Server Setup

                  Installation and Setup

  Continued…
         hosts allow = 192.168.1 127.
         printcap name = /etc/printcap
         load printers = yes
         guest account = pcguest
         encrypt passwords = yes
         smb passwd file = /etc/samba/smbpasswd
  [homes]: This section allows network clients to connect to a
  user’s home directory without having an explicit entry in the
  smb.conf file.
  Examples:
          [homes]
             browseable = no
             writeable = yes
Samba Server Setup

                 Installation and Setup

  Continued…
  [printers]: This section is used to specify which printers
  are available.
  Examples:
     [printers]
     print ok = yes
     printer name = lp_mine
     path = /home/everyone

  The testparm program helps in testing the smb.conf
  file once it is configured.
Samba Server Setup

        Samba Server Configuration

     Use GUI Applications  Server Settings  Services  SMB
     Configuration File: /etc/samba/smb.conf
     Configuring File and Directory Sharing
     [share_name]
     comment = Fred's Home Directory
     path = /home/fred
     valid users = fred
     public = no
     writable = yes
     printable = no
Samba Server Setup

         Samba Server Configuration

      Configuring Printer Sharing

     [printer_share_name]
  comment = Fred's Printer
  valid users = fred
  path = /var/spool/samba
  printer = freds_printer
  public = no
  writable = no
  printable = yes
Samba Server Setup

          Authentication Methods


     Use       local    username/password       (stored    in
     /etc/samba/smbpasswd)
     To add a local user: smbpasswd –a fred (fred should be a
     user in /etc/passwd)
HOW TO CONNECT LINUX TO WINDOW
Step 1st. First we check there is samba server package is installed or not. We find package
samba* not installed. Then we install samba* package with help of yum server.




                   Here samba server is installing
Here samba* installation is completed.
Step 2nd. We have to create a DIRECTORY on / which one has to be shared. Then we create
a valid user who has been shared the directories.




                                      1.4
                                      Directory (/manoz) and valid (AARAV) user has been created.
Step 3rd. Now we get the knowledge of our system’s IP address and who has been made by us is being connecting or not.




1.5
Now we got system’s IP address. But there is error in connection. Now we have to
troubleshoot this connection error for this valid user.
Step 4th. In the next step we open the samba server configuration file.
                              Command: vim /etc/samba/conf/smb.conf




1.6
This is configuration file.
1.7
This is also a part of configuration file.
Step 5th. Last page of configuration file we make some changes here.




1.8
After saving changes safely we came out from this configuration file.
Step 6th. Now we check the context of directory (/manoz).
                          Command: ls –lZ /manoz




1.9
Context of the directory is default now we make it samba because directory is shared by particular Samba server.
Step 7th. For changing the context of the directory we have to set boolians of the samba server.




               1.10
               Using getsebool command we can turn on the Booleans of samba.
Step 8th. Now we set context of directory as samba.
Command: chcon –R –t samba_etc_t /manoz




    1.11
    Context changed of directory successfully.
Step 9th. Now we try to connect the user.
Command: smbclient //192.168.0.12/manoz –U AARAV




         1.12
         Connection is successfully done.
Step 10th. Check the shared directory.
Command: ls




      1.13
      Shared directory is there.
Samba Server Setup

           Samba Client Configuration


     Share the Samba Directory on Windows machine
     Share the Samba Filesystem on Unix machine by
     specifying in /etc/fstab
  server1:/smbdata /users/smbdata smbfs defaults 0 0
  or use
  smbmount //server1/smbdata /users/smbdata –o
  username=fred
Samba Server Setup

         Samba Basic Configuration

  # mkdir santosh

  # cd santosh

  # ls

  # touch a b c d    (touch – blank file creation)

  # ls
Samba Server Setup

          Samba Basic Configuration

  # nano /etc/samba/smb.conf
  (Go to end of config file i.e from public and remove the comments)
  Make following ammendment
  [santoshshare]        (by replacing [public])
  Comment = My share files
  Path = /santosh
  Public = yes
  Browseable = yes
  Valid users = santosh
  Writable = no
  Hosts allow = 192.168.1.         (only 3 octets)
  (save and exit)
Samba Server Setup

         Samba Basic Configuration


  # smb passwd –a santosh
  Passwd : abc123       (any password)
  Retype passwd : abc123
  # service smb restart
  Go to windows – run – and type
  – 192.168.1.111(samba server ip)
Samba Server Setup


         Samba Basic Configuration
            (Disable iptables)
  # iptables –L    (wiil display iptables)
  # iptables – F (wiil flush iptables)
  # service iptables save
  # service iptables stop
  # set enforce 0           (enforce policy)

  (now go to run in windows and type 192.168.1.111)
THANKS
• Click to edit Master text styles
  – Second level
     • Third level
        – Fourth level
            » Fifth level

Contenu connexe

Tendances

NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)udamale
 
Samba power point presentation
Samba power point presentationSamba power point presentation
Samba power point presentationMd Maksudur Rahman
 
IP tables and Filtering
IP tables and FilteringIP tables and Filtering
IP tables and FilteringAisha Talat
 
Peer To Peer Networking
Peer To Peer NetworkingPeer To Peer Networking
Peer To Peer Networkingicanhasfay
 
Linux command ppt
Linux command pptLinux command ppt
Linux command pptkalyanineve
 
Basic commands of linux
Basic commands of linuxBasic commands of linux
Basic commands of linuxshravan saini
 
File system Os
File system OsFile system Os
File system OsNehal Naik
 
Storage Management in Linux OS.ppt
Storage Management in Linux OS.pptStorage Management in Linux OS.ppt
Storage Management in Linux OS.pptRakesh Kadu
 
Linux basic commands with examples
Linux basic commands with examplesLinux basic commands with examples
Linux basic commands with examplesabclearnn
 
CLIENT SERVER IN OS.ppt
CLIENT SERVER IN OS.pptCLIENT SERVER IN OS.ppt
CLIENT SERVER IN OS.pptsuman yadav
 
SNMP(Simple Network Management Protocol)
SNMP(Simple Network Management Protocol)SNMP(Simple Network Management Protocol)
SNMP(Simple Network Management Protocol)Mohammad Awais Javaid
 
Iptables Configuration
Iptables ConfigurationIptables Configuration
Iptables Configurationstom123
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linuxnejadmand
 
Network management
Network managementNetwork management
Network managementMohd Arif
 

Tendances (20)

NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)
 
Samba power point presentation
Samba power point presentationSamba power point presentation
Samba power point presentation
 
IP tables and Filtering
IP tables and FilteringIP tables and Filtering
IP tables and Filtering
 
Apache ppt
Apache pptApache ppt
Apache ppt
 
Peer To Peer Networking
Peer To Peer NetworkingPeer To Peer Networking
Peer To Peer Networking
 
Linux command ppt
Linux command pptLinux command ppt
Linux command ppt
 
Linux file system
Linux file systemLinux file system
Linux file system
 
Basic commands of linux
Basic commands of linuxBasic commands of linux
Basic commands of linux
 
Filepermissions in linux
Filepermissions in linuxFilepermissions in linux
Filepermissions in linux
 
File system Os
File system OsFile system Os
File system Os
 
Storage Management in Linux OS.ppt
Storage Management in Linux OS.pptStorage Management in Linux OS.ppt
Storage Management in Linux OS.ppt
 
Linux basic commands with examples
Linux basic commands with examplesLinux basic commands with examples
Linux basic commands with examples
 
User management
User managementUser management
User management
 
CLIENT SERVER IN OS.ppt
CLIENT SERVER IN OS.pptCLIENT SERVER IN OS.ppt
CLIENT SERVER IN OS.ppt
 
SNMP(Simple Network Management Protocol)
SNMP(Simple Network Management Protocol)SNMP(Simple Network Management Protocol)
SNMP(Simple Network Management Protocol)
 
Nfs
NfsNfs
Nfs
 
Iptables Configuration
Iptables ConfigurationIptables Configuration
Iptables Configuration
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
 
Network management
Network managementNetwork management
Network management
 
snmp
snmpsnmp
snmp
 

En vedette (20)

Samba
SambaSamba
Samba
 
Presentation on samba server & apache server
Presentation on samba server & apache serverPresentation on samba server & apache server
Presentation on samba server & apache server
 
Introduction to samba
Introduction to samba Introduction to samba
Introduction to samba
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer Protocol
 
Rhel4
Rhel4Rhel4
Rhel4
 
NAS - Network Attached Storage
NAS - Network Attached StorageNAS - Network Attached Storage
NAS - Network Attached Storage
 
Linux network file system (nfs)
Linux   network file system (nfs)Linux   network file system (nfs)
Linux network file system (nfs)
 
Samba
SambaSamba
Samba
 
NETWORK FILE SYSTEM
NETWORK FILE SYSTEMNETWORK FILE SYSTEM
NETWORK FILE SYSTEM
 
Using samba
Using sambaUsing samba
Using samba
 
Web Servers (ppt)
Web Servers (ppt)Web Servers (ppt)
Web Servers (ppt)
 
Ftp server linux
Ftp server linuxFtp server linux
Ftp server linux
 
o samba
o sambao samba
o samba
 
Configuration DHCP
Configuration DHCPConfiguration DHCP
Configuration DHCP
 
Dynamic Host Configuration Protocol
Dynamic Host Configuration ProtocolDynamic Host Configuration Protocol
Dynamic Host Configuration Protocol
 
Dhcp presentation
Dhcp presentationDhcp presentation
Dhcp presentation
 
Web server
Web serverWeb server
Web server
 
Domain name system
Domain name systemDomain name system
Domain name system
 
Dhcp ppt
Dhcp pptDhcp ppt
Dhcp ppt
 
Linux Introduction (Commands)
Linux Introduction (Commands)Linux Introduction (Commands)
Linux Introduction (Commands)
 

Similaire à Samba server

Samba server linux (SMB) BY ROHIT MALAV
Samba server linux (SMB) BY ROHIT MALAVSamba server linux (SMB) BY ROHIT MALAV
Samba server linux (SMB) BY ROHIT MALAVRohit malav
 
samba server setup Pts ppt (rohit malav)
samba server setup Pts ppt (rohit malav)samba server setup Pts ppt (rohit malav)
samba server setup Pts ppt (rohit malav)Rohit malav
 
Samba server in sna
Samba server in snaSamba server in sna
Samba server in snaaamir lucky
 
Topic # 26 Samba Server.pptx
Topic # 26 Samba Server.pptxTopic # 26 Samba Server.pptx
Topic # 26 Samba Server.pptxAyeCS11
 
Samba Optimization and Speed Tuning f...
Samba Optimization and Speed Tuning f...Samba Optimization and Speed Tuning f...
Samba Optimization and Speed Tuning f...wensheng wei
 
Chapter 05
Chapter 05Chapter 05
Chapter 05cclay3
 
Samba server installation and File sharing
Samba server installation and File sharingSamba server installation and File sharing
Samba server installation and File sharingEagle Eyes
 
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
Cent os 5.1  - configuring samba 3.0 to use the ads security modeCent os 5.1  - configuring samba 3.0 to use the ads security mode
Cent os 5.1 - configuring samba 3.0 to use the ads security modeB Sasi Kumar
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guidevinod31dec
 
Tutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingTutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingBeni Krisbiantoro
 
Linux System Administration - NFS Server
Linux System Administration - NFS ServerLinux System Administration - NFS Server
Linux System Administration - NFS ServerSreenatha Reddy K R
 
Linux Based Network Proposal
Linux Based Network ProposalLinux Based Network Proposal
Linux Based Network ProposalChris Riccio
 
Solaris 10 administration 2 Configuring NFS
Solaris 10 administration 2 Configuring NFSSolaris 10 administration 2 Configuring NFS
Solaris 10 administration 2 Configuring NFSAhmedEidNassef
 

Similaire à Samba server (20)

Samba server linux (SMB) BY ROHIT MALAV
Samba server linux (SMB) BY ROHIT MALAVSamba server linux (SMB) BY ROHIT MALAV
Samba server linux (SMB) BY ROHIT MALAV
 
samba server setup Pts ppt (rohit malav)
samba server setup Pts ppt (rohit malav)samba server setup Pts ppt (rohit malav)
samba server setup Pts ppt (rohit malav)
 
Samba server in sna
Samba server in snaSamba server in sna
Samba server in sna
 
Meeting 9 samba
Meeting 9   sambaMeeting 9   samba
Meeting 9 samba
 
Samba tutorial
Samba tutorialSamba tutorial
Samba tutorial
 
Samba
SambaSamba
Samba
 
Topic # 26 Samba Server.pptx
Topic # 26 Samba Server.pptxTopic # 26 Samba Server.pptx
Topic # 26 Samba Server.pptx
 
Samba Optimization and Speed Tuning f...
Samba Optimization and Speed Tuning f...Samba Optimization and Speed Tuning f...
Samba Optimization and Speed Tuning f...
 
Chapter 05
Chapter 05Chapter 05
Chapter 05
 
Samba server installation and File sharing
Samba server installation and File sharingSamba server installation and File sharing
Samba server installation and File sharing
 
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
Cent os 5.1  - configuring samba 3.0 to use the ads security modeCent os 5.1  - configuring samba 3.0 to use the ads security mode
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
 
14 FILE Server
14 FILE Server14 FILE Server
14 FILE Server
 
FILE SERVER
FILE SERVERFILE SERVER
FILE SERVER
 
File Sever
File SeverFile Sever
File Sever
 
Tutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingTutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk Webhosting
 
Ch18 system administration
Ch18 system administration Ch18 system administration
Ch18 system administration
 
Linux System Administration - NFS Server
Linux System Administration - NFS ServerLinux System Administration - NFS Server
Linux System Administration - NFS Server
 
Linux Based Network Proposal
Linux Based Network ProposalLinux Based Network Proposal
Linux Based Network Proposal
 
Solaris 10 administration 2 Configuring NFS
Solaris 10 administration 2 Configuring NFSSolaris 10 administration 2 Configuring NFS
Solaris 10 administration 2 Configuring NFS
 

Plus de Santosh Khadsare (20)

Cyber fraud (netflix)
Cyber fraud (netflix)Cyber fraud (netflix)
Cyber fraud (netflix)
 
INTERNET SECUIRTY TIPS
INTERNET SECUIRTY TIPSINTERNET SECUIRTY TIPS
INTERNET SECUIRTY TIPS
 
INDIAN NATIONAL CYBER SECURITY POLICY (NCSP-2013)
INDIAN NATIONAL CYBER SECURITY POLICY (NCSP-2013)INDIAN NATIONAL CYBER SECURITY POLICY (NCSP-2013)
INDIAN NATIONAL CYBER SECURITY POLICY (NCSP-2013)
 
Linux forensics
Linux forensicsLinux forensics
Linux forensics
 
Network forensics1
Network forensics1Network forensics1
Network forensics1
 
Windowsforensics
WindowsforensicsWindowsforensics
Windowsforensics
 
Lec 1 apln security(4pd)
Lec  1 apln security(4pd)Lec  1 apln security(4pd)
Lec 1 apln security(4pd)
 
Smart card
Smart cardSmart card
Smart card
 
Guassvirus
GuassvirusGuassvirus
Guassvirus
 
IDS and IPS
IDS and IPSIDS and IPS
IDS and IPS
 
Webmail
WebmailWebmail
Webmail
 
Linux Forensics
Linux ForensicsLinux Forensics
Linux Forensics
 
Web server
Web serverWeb server
Web server
 
Firewall(linux)
Firewall(linux)Firewall(linux)
Firewall(linux)
 
Securitytips
SecuritytipsSecuritytips
Securitytips
 
Linux basics
Linux basicsLinux basics
Linux basics
 
Linuxfilesys
LinuxfilesysLinuxfilesys
Linuxfilesys
 
Linuxconcepts
LinuxconceptsLinuxconcepts
Linuxconcepts
 
Introtolinux
IntrotolinuxIntrotolinux
Introtolinux
 
New internet
New internetNew internet
New internet
 

Dernier

Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Dernier (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

Samba server

  • 1. Samba Server Setup SAMBA SERVER SETUP
  • 2. Samba Server Setup Samba Service File and Printer Sharing from LINIX to Windows Uses smb Daemon service smb start/stop/restart
  • 3. Samba Server Setup What is Samba?? Samba is an Open Source Suite, that provides seamless file and print services to SMB/CIFS clients. • Samba is freely available. • With Samba, you can share a Linux files ystem with Windows and vice versa. • You can also share printers connected to either Linux or a system with Windows. • Samba enables a Linux or Unix server to function as a file server for client PCs running Windows software.
  • 4. Samba Server Setup What is Samba?? What is SMB? • SMB stands for – Server Message Block. • It is a protocol by which a lot of PC-related machines share files and printers and other information such as lists of available files and printers. • Operating systems that support this natively include Windows, OS/2, and Linux. What is CIFS? • CIFS – Common Internet File System is a protocol that is basically an updated SMB.
  • 5. Samba Server Setup Components of SMB smbd daemon: This provides the file and print services to SMB clients such as Windows NT or other Linux or Unix clients. • smb.conf: This is the configuration file for smbd. • nmbd daemon: This daemon provides NetBIOS nameserving and browsing support. • smbclient: This is an smb client program that implement a simple FTP-like client on a Linux or Unix box. • smbmount: This mounting program enables mounting of server directories on a Linux or Unix box.
  • 6. Samba Server Setup Components of SMB • testparm: This utility is used to test the smb.conf configuration file. • smbstatus: This programs lists the current Samba connections. • SWAT: Swat allows a Samba administrator to configure the smb.conf file via a Web browser. • smbpasswd: This allows the user to change the password used for their SMB sessions.
  • 7. Samba Server Setup Installation and Setup The Samba Server package can be downloaded from the Samba website. • The file needs to be untared and then configured using a ./configure command in the source directory. • Then the smb.conf file should be created. The smb.conf file has three separate sections: [global] : This section controls parameters for the entire SMB server. It also provides default values for the other sections. Examples: workgroup = MYGROUP server string = Samba Server
  • 8. Samba Server Setup Installation and Setup Continued… hosts allow = 192.168.1 127. printcap name = /etc/printcap load printers = yes guest account = pcguest encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd [homes]: This section allows network clients to connect to a user’s home directory without having an explicit entry in the smb.conf file. Examples: [homes] browseable = no writeable = yes
  • 9. Samba Server Setup Installation and Setup Continued… [printers]: This section is used to specify which printers are available. Examples: [printers] print ok = yes printer name = lp_mine path = /home/everyone The testparm program helps in testing the smb.conf file once it is configured.
  • 10. Samba Server Setup Samba Server Configuration Use GUI Applications  Server Settings  Services  SMB Configuration File: /etc/samba/smb.conf Configuring File and Directory Sharing [share_name] comment = Fred's Home Directory path = /home/fred valid users = fred public = no writable = yes printable = no
  • 11. Samba Server Setup Samba Server Configuration Configuring Printer Sharing [printer_share_name] comment = Fred's Printer valid users = fred path = /var/spool/samba printer = freds_printer public = no writable = no printable = yes
  • 12. Samba Server Setup Authentication Methods Use local username/password (stored in /etc/samba/smbpasswd) To add a local user: smbpasswd –a fred (fred should be a user in /etc/passwd)
  • 13. HOW TO CONNECT LINUX TO WINDOW Step 1st. First we check there is samba server package is installed or not. We find package samba* not installed. Then we install samba* package with help of yum server. Here samba server is installing
  • 14. Here samba* installation is completed.
  • 15. Step 2nd. We have to create a DIRECTORY on / which one has to be shared. Then we create a valid user who has been shared the directories. 1.4 Directory (/manoz) and valid (AARAV) user has been created.
  • 16. Step 3rd. Now we get the knowledge of our system’s IP address and who has been made by us is being connecting or not. 1.5 Now we got system’s IP address. But there is error in connection. Now we have to troubleshoot this connection error for this valid user.
  • 17. Step 4th. In the next step we open the samba server configuration file. Command: vim /etc/samba/conf/smb.conf 1.6 This is configuration file.
  • 18. 1.7 This is also a part of configuration file.
  • 19. Step 5th. Last page of configuration file we make some changes here. 1.8 After saving changes safely we came out from this configuration file.
  • 20. Step 6th. Now we check the context of directory (/manoz). Command: ls –lZ /manoz 1.9 Context of the directory is default now we make it samba because directory is shared by particular Samba server.
  • 21. Step 7th. For changing the context of the directory we have to set boolians of the samba server. 1.10 Using getsebool command we can turn on the Booleans of samba.
  • 22. Step 8th. Now we set context of directory as samba. Command: chcon –R –t samba_etc_t /manoz 1.11 Context changed of directory successfully.
  • 23. Step 9th. Now we try to connect the user. Command: smbclient //192.168.0.12/manoz –U AARAV 1.12 Connection is successfully done.
  • 24. Step 10th. Check the shared directory. Command: ls 1.13 Shared directory is there.
  • 25. Samba Server Setup Samba Client Configuration Share the Samba Directory on Windows machine Share the Samba Filesystem on Unix machine by specifying in /etc/fstab server1:/smbdata /users/smbdata smbfs defaults 0 0 or use smbmount //server1/smbdata /users/smbdata –o username=fred
  • 26. Samba Server Setup Samba Basic Configuration # mkdir santosh # cd santosh # ls # touch a b c d (touch – blank file creation) # ls
  • 27. Samba Server Setup Samba Basic Configuration # nano /etc/samba/smb.conf (Go to end of config file i.e from public and remove the comments) Make following ammendment [santoshshare] (by replacing [public]) Comment = My share files Path = /santosh Public = yes Browseable = yes Valid users = santosh Writable = no Hosts allow = 192.168.1. (only 3 octets) (save and exit)
  • 28. Samba Server Setup Samba Basic Configuration # smb passwd –a santosh Passwd : abc123 (any password) Retype passwd : abc123 # service smb restart Go to windows – run – and type – 192.168.1.111(samba server ip)
  • 29. Samba Server Setup Samba Basic Configuration (Disable iptables) # iptables –L (wiil display iptables) # iptables – F (wiil flush iptables) # service iptables save # service iptables stop # set enforce 0 (enforce policy) (now go to run in windows and type 192.168.1.111)
  • 30. THANKS • Click to edit Master text styles – Second level • Third level – Fourth level » Fifth level