SlideShare uma empresa Scribd logo
1 de 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

Mais conteúdo relacionado

Mais procurados

Disk and File System Management in Linux
Disk and File System Management in LinuxDisk and File System Management in Linux
Disk and File System Management in LinuxHenry Osborne
 
Linux Administration
Linux AdministrationLinux Administration
Linux AdministrationHarish1983
 
Chapter07 Advanced File System Management
Chapter07      Advanced  File  System  ManagementChapter07      Advanced  File  System  Management
Chapter07 Advanced File System ManagementRaja Waseem Akhtar
 
Bash shell scripting
Bash shell scriptingBash shell scripting
Bash shell scriptingVIKAS TIWARI
 
Apache web server
Apache web serverApache web server
Apache web serverSabiha M
 
User and groups administrator
User  and  groups administratorUser  and  groups administrator
User and groups administratorAisha Talat
 
File access methods.54
File access methods.54File access methods.54
File access methods.54myrajendra
 
System Administration: Introduction to system administration
System Administration: Introduction to system administrationSystem Administration: Introduction to system administration
System Administration: Introduction to system administrationKhang-Ling Loh
 
Install and configure linux
Install and configure linuxInstall and configure linux
Install and configure linuxVicent Selfa
 
Linux User Management
Linux User ManagementLinux User Management
Linux User ManagementGaurav Mishra
 
Dhcp presentation
Dhcp presentationDhcp presentation
Dhcp presentationSaqib Malik
 

Mais procurados (20)

Disk and File System Management in Linux
Disk and File System Management in LinuxDisk and File System Management in Linux
Disk and File System Management in Linux
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administration
 
Users and groups
Users and groupsUsers and groups
Users and groups
 
Chapter07 Advanced File System Management
Chapter07      Advanced  File  System  ManagementChapter07      Advanced  File  System  Management
Chapter07 Advanced File System Management
 
Iptables the Linux Firewall
Iptables the Linux Firewall Iptables the Linux Firewall
Iptables the Linux Firewall
 
Bash shell scripting
Bash shell scriptingBash shell scripting
Bash shell scripting
 
Apache web server
Apache web serverApache web server
Apache web server
 
User and groups administrator
User  and  groups administratorUser  and  groups administrator
User and groups administrator
 
File access methods.54
File access methods.54File access methods.54
File access methods.54
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
System Administration: Introduction to system administration
System Administration: Introduction to system administrationSystem Administration: Introduction to system administration
System Administration: Introduction to system administration
 
DHCP
DHCPDHCP
DHCP
 
Install and configure linux
Install and configure linuxInstall and configure linux
Install and configure linux
 
Linux User Management
Linux User ManagementLinux User Management
Linux User Management
 
DNS (Domain Name System)
DNS (Domain Name System)DNS (Domain Name System)
DNS (Domain Name System)
 
Presentation on linux
Presentation on linuxPresentation on linux
Presentation on linux
 
Squid server
Squid serverSquid server
Squid server
 
Systems Administration
Systems AdministrationSystems Administration
Systems Administration
 
Scripting Languages
Scripting LanguagesScripting Languages
Scripting Languages
 
Dhcp presentation
Dhcp presentationDhcp presentation
Dhcp presentation
 

Destaque (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
 
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
 
Domain name system
Domain name systemDomain name system
Domain name system
 
Dhcp ppt
Dhcp pptDhcp ppt
Dhcp ppt
 

Semelhante a 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
 

Semelhante a 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
 

Mais 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
 

Último

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 

Último (20)

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 

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