Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default samba communication

    anyone has an experience in configuring samba such that samba is used
    to communicate between a unix

    and windows box?

    is it just this smb.conf?

    thanks
    yls177 Guest

  2. Similar Questions and Discussions

    1. PHP and Samba
      Hi, Is there an easy way for PHP to access (read and write) files on an arbitrary URL? What I want to do is to have a form that asks the user...
    2. Samba + win 2k
      Hi, After upgrading our client to win2k pro, I'm suddenly too stupid to set up Samba correctly on my Debian box. Is there a good site that would...
    3. Samba on SCO 5.0.7
      I installed the version of Samba included on the media kit. Everything works great with the exception of printing. We need to print to printers...
    4. sarge dependancy problems with dhcp3-client/samba/samba-common
      Just did an apt-get update; apt-get dist-upgrade dhcp3-client seems to be mutaully exclusive with samba/samba-common. Installing one takes out...
    5. VFS for Samba
      I am currently attempting to create a recycling bin for Samba on my redhat 8 machine using the recycle module (VFS). I am not exactly sure how to...
  3. #2

    Default Re: samba communication

    [email]yls177@hotmail.com[/email] (yls177) writes:
    > anyone has an experience in configuring samba such that samba is used
    > to communicate between a unix
    >
    > and windows box?
    Yes. It works very well :)
    > is it just this smb.conf?
    I would suggest that you wisited [url]http://www.amba.org[/url] or consulted a howto
    ([url]http://www.tldp.org/HOWTO/SMB-HOWTO.html[/url] should do)

    Good luck!

    --
    Øystein
    Øystein Folkvord Guest

  4. #3

    Default Re: samba communication

    On 23 May 2004 20:46:54 -0700, yls177 <yls177@hotmail.com> wrote:
    > anyone has an experience in configuring samba such that samba is used
    > to communicate between a unix and windows box?
    Yes, that's what it's for, for file and print sharing. Makes the
    unix box look like a Windows server, to windows clients.
    > is it just this smb.conf?
    Mosty. You might want to look into setting up 'swat', which gives
    you a web administration console for samba, and is one of the few
    web-based config tools that works intelligently. Prentice Hall
    publishes "The official Samba-3 howto and reference guide" which
    is excellent and has examples of pretty much any configuration
    you might want to try, and then some, or let us know where you get
    stuck and we'll give it a shot.

    Dave Hinz

    Dave Hinz Guest

  5. #4

    Default Re: samba communication

    Dave Hinz <DaveMay2004@duck-creek.net> wrote in message news:<2heg77FbvcinU1@uni-berlin.de>...
    > On 23 May 2004 20:46:54 -0700, yls177 <yls177@hotmail.com> wrote:
    > > anyone has an experience in configuring samba such that samba is used
    > > to communicate between a unix and windows box?
    >
    > Yes, that's what it's for, for file and print sharing. Makes the
    > unix box look like a Windows server, to windows clients.
    >
    > > is it just this smb.conf?
    >
    > Mosty. You might want to look into setting up 'swat', which gives
    > you a web administration console for samba, and is one of the few
    > web-based config tools that works intelligently. Prentice Hall
    > publishes "The official Samba-3 howto and reference guide" which
    > is excellent and has examples of pretty much any configuration
    > you might want to try, and then some, or let us know where you get
    > stuck and we'll give it a shot.
    >
    > Dave Hinz


    basically, i am a sap basis guy. and needs to shared some filesystems
    from unix to windows. so is learning/looking for some help.. i will
    post what i have learnt.. later.

    cheers
    yls177 Guest

  6. #5

    Default Re: samba communication

    On 24 May 2004 19:52:57 -0700, yls177 <yls177@hotmail.com> wrote:
    > Dave Hinz <DaveMay2004@duck-creek.net> wrote in message news:<2heg77FbvcinU1@uni-berlin.de>...
    >> Mosty. You might want to look into setting up 'swat', which gives
    >> you a web administration console for samba, and is one of the few
    >> web-based config tools that works intelligently.
    >
    > basically, i am a sap basis guy. and needs to shared some filesystems
    > from unix to windows. so is learning/looking for some help.. i will
    > post what i have learnt.. later.
    The sharing is pretty basic, authentication is where you need to decide
    how it's going to work. I prefer to have the Samba server get
    authentication information from the Windows domain, which means
    setting security = DOMAIN in the [global] section of the smb.conf.
    Depending on if your usernames map to their directory names, you
    can even have them go directly to the share, right into their
    own directory, instead of being presented with a list of them.

    Suggestion - start with no authentication, get the sharing working.
    Then, add domain authentication, tell the SMB server who the WINS
    server is and what domain it's in, tell the domain controller on
    the windows side that your SMB server is allowed to join the
    domain, and you should be good to go. This is alot easier
    in the Samba3 days than it was earlier.

    If you get stuck, post your smb.conf and a description, and
    someone here will probably have suggestions.

    Dave Hinz

    Dave Hinz Guest

  7. #6

    Default Re: samba communication

    Dave Hinz <DaveMay2004@duck-creek.net> wrote in message news:<2hh6ceFc9n1jU1@uni-berlin.de>...
    > On 24 May 2004 19:52:57 -0700, yls177 <yls177@hotmail.com> wrote:
    > > Dave Hinz <DaveMay2004@duck-creek.net> wrote in message news:<2heg77FbvcinU1@uni-berlin.de>...
    >
    > >> Mosty. You might want to look into setting up 'swat', which gives
    > >> you a web administration console for samba, and is one of the few
    > >> web-based config tools that works intelligently.
    > >
    > > basically, i am a sap basis guy. and needs to shared some filesystems
    > > from unix to windows. so is learning/looking for some help.. i will
    > > post what i have learnt.. later.
    >
    > The sharing is pretty basic, authentication is where you need to decide
    > how it's going to work. I prefer to have the Samba server get
    > authentication information from the Windows domain, which means
    > setting security = DOMAIN in the [global] section of the smb.conf.
    > Depending on if your usernames map to their directory names, you
    > can even have them go directly to the share, right into their
    > own directory, instead of being presented with a list of them.
    >
    > Suggestion - start with no authentication, get the sharing working.
    > Then, add domain authentication, tell the SMB server who the WINS
    > server is and what domain it's in, tell the domain controller on
    > the windows side that your SMB server is allowed to join the
    > domain, and you should be good to go. This is alot easier
    > in the Samba3 days than it was earlier.
    >
    > If you get stuck, post your smb.conf and a description, and
    > someone here will probably have suggestions.
    >
    > Dave Hinz
    i have 2 systems, one is windows W, and one is unix U. so in my unix
    system, smb.conf, i have listed the important information that is
    needed to communicate between the windows and unix system. basically,
    i am on sap and wanted to share /usr/sap/trans.



    workgroup = how can i identify this in my windows with my unix entry?
    hosts allow =
    guest account =
    password server = this entry will be the same as the above hosts allow
    interfaces = these are the network cards defined in my unix which will
    be used for communication
    [sapmnt]
    path = unix path to share between windows and unix?.. where is the
    windows defined?
    other list of parameters


    basically, the above is needed for my unix smb.conf.
    how about tings on the windows side?

    thanks
    yls177 Guest

  8. #7

    Default Re: samba communication

    On 31 May 2004 01:11:45 -0700, yls177 <yls177@hotmail.com> wrote:
    > Dave Hinz <DaveMay2004@duck-creek.net> wrote in message news:<2hh6ceFc9n1jU1@uni-berlin.de>...
    >>
    >> If you get stuck, post your smb.conf and a description, and
    >> someone here will probably have suggestions.
    >
    > i have 2 systems, one is windows W, and one is unix U.
    OK,
    > workgroup = how can i identify this in my windows with my unix entry?
    It's the NT domain that your users authenticate to when they login to their
    Windows boxes.
    > hosts allow =
    > guest account =
    > password server = this entry will be the same as the above hosts allow
    Start by allowing everything, and use your NT password server for this.
    Narrow down hosts after you get the basic connection going.
    > interfaces = these are the network cards defined in my unix which will
    > be used for communication
    Add this once you get it working. Just confuses things right now,
    and without knowing your environment I can't make a specific
    suggestion.
    > [sapmnt]
    > path = unix path to share between windows and unix?.. where is the
    > windows defined?
    Path is the unix path. The windows path will show up as, say, the
    L: drive, so the users will mount whatever you're sharing right to L:\
    >
    > basically, the above is needed for my unix smb.conf.
    > how about tings on the windows side?
    Go to network neighborhood, select your windows domain, and if you have
    Samba up and running, and advertised to it as a server, you'll see your
    samba server there, with the shares you've specified.

    Getting there?
    Dave Hinz
    Dave Hinz Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139