SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

Remote access service
Remote access serviceRemote access service
Remote access service
Apoorw Pandey
 
Process management in os
Process management in osProcess management in os
Process management in os
Miong Lazaro
 

Was ist angesagt? (20)

FILE SERVER
FILE SERVERFILE SERVER
FILE SERVER
 
Nfs
NfsNfs
Nfs
 
Remote access service
Remote access serviceRemote access service
Remote access service
 
Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1) Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1)
 
IP tables and Filtering
IP tables and FilteringIP tables and Filtering
IP tables and Filtering
 
Linux booting Process
Linux booting ProcessLinux booting Process
Linux booting Process
 
Operating system 02 os as an extended machine
Operating system 02 os as an extended machineOperating system 02 os as an extended machine
Operating system 02 os as an extended machine
 
Memory management
Memory managementMemory management
Memory management
 
Server configuration
Server configurationServer configuration
Server configuration
 
Sun NFS , Case study
Sun NFS , Case study Sun NFS , Case study
Sun NFS , Case study
 
Gnome and kde
Gnome and kdeGnome and kde
Gnome and kde
 
11. dfs
11. dfs11. dfs
11. dfs
 
Network File System in Distributed Computing
Network File System in Distributed ComputingNetwork File System in Distributed Computing
Network File System in Distributed Computing
 
Linux file system
Linux file systemLinux file system
Linux file system
 
INTER PROCESS COMMUNICATION (IPC).pptx
INTER PROCESS COMMUNICATION (IPC).pptxINTER PROCESS COMMUNICATION (IPC).pptx
INTER PROCESS COMMUNICATION (IPC).pptx
 
1 introduction to windows server 2016
1  introduction to windows server 20161  introduction to windows server 2016
1 introduction to windows server 2016
 
Process management in os
Process management in osProcess management in os
Process management in os
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administration
 
Client-Server Computing
Client-Server ComputingClient-Server Computing
Client-Server Computing
 
Linux standard file system
Linux standard file systemLinux standard file system
Linux standard file system
 

Andere mochten auch

Linux network file system (nfs)
Linux   network file system (nfs)Linux   network file system (nfs)
Linux network file system (nfs)
Raghu nath
 
NETWORK FILE SYSTEM
NETWORK FILE SYSTEMNETWORK FILE SYSTEM
NETWORK FILE SYSTEM
Roshan Kumar
 

Andere mochten auch (20)

Samba
SambaSamba
Samba
 
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
 
Nfs
NfsNfs
Nfs
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer Protocol
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)
 
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
 

Ähnlich wie Samba server

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
 
Samba server installation and File sharing
Samba server installation and File sharingSamba server installation and File sharing
Samba server installation and File sharing
Eagle 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 mode
B Sasi Kumar
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
vinod31dec
 
Tutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk WebhostingTutorial CentOS 5 untuk Webhosting
Tutorial CentOS 5 untuk Webhosting
Beni Krisbiantoro
 

Ähnlich wie 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 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
 
Network File System (NFS)
Network File System (NFS)Network File System (NFS)
Network File System (NFS)
 

Mehr von Santosh Khadsare

Mehr von 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
 

Kürzlich hochgeladen

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 

Kürzlich hochgeladen (20)

Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
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
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 

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