- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: samba
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 04:06 AM
10-30-2001 04:06 AM
samba
What could be wrong?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 04:59 AM
10-30-2001 04:59 AM
Re: samba
First you have to share something on the samba server.
Edit your /etc/smb.conf (modify to suit the location of your smb.conf file, can be in /etc/samba/smb.conf as well or other places).
Put in the following lines:
security = share
guest account = ftp
[shared folder]
comment = <BR />path = /path_to_the_shared_dir<BR />browseable = yes<BR />writable = no<BR />guest ok = yes<BR /><BR />then restart samba (/etc/rc.d/init.d/smb restart) and there you go.<BR /><BR />E.<BR /><BR />(by the way, http://name is another thing, samba is for using file systems over network, http is the protocol for the www)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2001 02:46 AM
11-03-2001 02:46 AM
Re: samba
The result of testparm gives (for public directory) comment=.., public=yes, writable=no and nothing more.
In the smb.conf file i entered browseable=yes, guest only=OK apart from the above.
I still cant get to see the share in N/w Nbhood.
As for the http://netbios name, i just wanted to convey that there is no name resolution error from other machines, which some people may think.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2001 07:59 AM
11-15-2001 07:59 AM
Re: samba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 03:03 AM
03-12-2002 03:03 AM
Re: samba
have you tried to enable plain text passwords on the windows boxes or to use smbpasswd to create passwords for the samba users ?
In my oppinion one of those has to be done.
Christoph
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2002 03:08 PM
03-12-2002 03:08 PM
Re: samba
I would suggest you post your smb.conf.
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 10:56 AM
03-13-2002 10:56 AM
Re: samba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 05:54 AM
08-05-2002 05:54 AM
Re: samba
is the workgroup name correct in smb.conf ?
Do you have a windows version that use encrypted passwords by default ? In this case you need to enable encryption in samba as well, or plaintext pw in windows, which is sort of registry hack I believ.
Rgds Jarle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2002 06:19 AM
08-05-2002 06:19 AM
Re: samba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2002 01:41 AM
08-08-2002 01:41 AM
Re: samba
That you can see the Linux m/c's name on the Windows Network Neighbourhood means that the Windows has been able to recognise it correctly.
After that, when you click on the plus(+) sign on the Windows Network Neighbourhood, client implementation of SMB on Windows (Workstation process), send your username and password with which you have logged into the Windows domain. Samba then sends those to PDC for authentication (depending upon smb.conf configuration).
After successful authentication, Samba maps the Windows userid to a valid user account on Linux. For this purpose, it consults a user map file name of which has to be given in he smb.conf file.
Sample smb.conf file :
workgroup =
netbios name = LINUXSRVR
security = SERVER
password server =
username map =
Contents of usermap ;
The shared directory that is mentioned in the smb.conf file, has to have at least read permission for the Linux user account.
Hope it helps.
Soumen Ghos