http://www.howtogeek.com/howto/ubuntu/install-samba-server-on-ubuntu/
If you want to share files between your Ubuntu and Windows computers, your best option is to use Samba file sharing.
To install, first open a terminal window and enter the following command:
sudo apt-get install samba smbfs
We’ve got samba installed, but now we’ll need to configure it to make it accessible. Run the following command to open the configuration file, substituting your editor of choice:
sudo gedit /etc/samba/smb.conf
Find this section in the file:
####### Authentication #######
# “security = user” is always a good idea. This will require a Unix account
# in this server for every user accessing the server. See
# /usr/share/doc/samba-doc/htmldocs/Samba-HOWTO-Collection/ServerType.html
# in the samba-doc package for details.
; security = user
Uncomment the security line, and add another line to make it look like this:
security = user
username map = /etc/samba/smbusers
This will set Samba to use the smbusers file for looking up the user list.
Create a Samba User
There are two steps to creating a user. First we’ll run the smbpasswd utility to create a samba password for the user.
sudo smbpasswd -a <username>
Next, we’ll add that username to the smbusers file.
sudo gedit /etc/samba/smbusers
Add in the following line, substituting the username with the one you want to give access to. The format is <ubuntuusername> = “<samba username>”. You can use a different samba user name to map to an ubuntu account, but that’s not really necessary right now.
<username> = “<username>”
Now you can create samba shares and give access to the users that you listed here
ps : you should check the "selinux" config , or there maybe "tree connect failed: NT_STATUS_BAD_NETWORK_NAME" error
from: http://hi.baidu.com/51cmdshell/blog/item/ee1114ae43b014c77cd92ac6.html
Ubuntu Samba服务安装与配置
2010年02月17日 星期三 12:14
一. Ubuntu samba配置的安装:
sudo apt-get install samba smbfs smbclient
二. 创建共享目录:
mkdir /home/komy/share
sodu chmod 777 /home/komy/share
三. 创建Ubuntu Samba配置文件:
1. 保存现有的配置文件
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
2. 修改现配置文件
sudo gedit /etc/samba/smb.conf
在smb.conf最后添加
[share]
path = /home/komy/share
available = yes
browsealbe = yes
public = yes
writable = yes
其实,更为简单的是在ubuntu下右击文件夹属性,在共享里设置共享,但实质上系统更改了smb.conf文件.
四. 创建Ubuntu samba帐户
sudo touch /etc/samba/smbpasswd
sudo smbpasswd -a komy #komy必须为系统中存在的账户
然后会要求你输入samba帐户的密码
如果没有第四步,当你登录时会提示 session setup failed: NT_STATUS_LOGON_FAILURE]
五. 重启Ubuntu samba服务器
sudo /etc/init.d/smbd restart
六. Ubuntu Samba配置测试
smbclient //localhost/share
七,Ubuntu Samba配置使用
可以到windows下输入ip使用了,在文件夹处输入 "\\" + "Ubuntu机器的ip或主机名" + "\\" + "share"
分享到:
相关推荐
Samba4在Ubuntu 20.04安装指南 本指南旨在解决Samba4在Ubuntu 20.04安装使用中的问题,提供完整的解决方案。以下是安装Samba4的详细步骤。 依赖包安装 在安装Samba4之前,需要安装依赖包。官网wiki地址提供了相关...
Samba是一种开源软件包,它实现了SMB(Server Message Block)协议,这是一种用于文件共享和打印服务的网络通信协议,最初由微软开发,广泛应用于Windows操作系统中。Samba通过模拟Windows网络服务器的功能,使得...
### Ubuntu 下安装 Samba 服务器 #### 概述 Samba 是一款开源软件包,它提供了文件和打印服务的功能,使 Linux 和 Unix 系统能够与 Windows 系统进行无缝集成。通过 Samba,用户可以在 Ubuntu 系统上设置共享目录...
ubuntu20.04无网安装samba 自我安装成功,如有缺依赖,可能还需要再下载其他的依赖包
Ubuntu 上建立 Samba 服务器以及交叉编译环境配置 在这篇文章中,我们将讨论如何在 Ubuntu 上建立 Samba 服务器,并配置交叉编译环境。本文将详细介绍建立 Samba 服务器的步骤,以及配置交叉编译环境的过程。 一、...
### Ubuntu下samba的使用 #### 一、安装与配置Samba服务器 ##### 1. 安装Samba服务器 要在Ubuntu系统上安装Samba服务器,可以使用以下命令: ```bash sudo apt-get install samba ``` 同时,为了能够在Ubuntu系统...
Ubuntu samba 服务配置 Ubuntu samba 服务配置是 Linux 操作系统中的一种常见服务配置方法,通过本指南,您将学习如何配置 Ubuntu samba 服务,以便在 Linux 和 Windows 平台之间实现文件共享。 安装 Ubuntu samba...
1. `sudo apt-get install samba`: 这个命令会安装Samba服务器的核心组件,包括必要的服务和库,使得Ubuntu系统能够提供SMB服务。 2. `sudo apt-get install smbfs`: 这个命令安装的是smbfs文件系统,它允许Linux...
面是我在Ubuntu6.06 LTS 下源码编译安装samba主要安装过程,本人第一次用Ubuntu,刚装上去时候,没有gcc编译环境。郁闷了半天。找出这一过程发了不少的时间。可能还有些不妥,不过我经过这样的安装达到了向windows共享...
在 Ubuntu 系统中,可以使用 apt-get 命令来安装 Samba,命令为:sudo apt-get install samba smbfs 其中,smbfs 是一个文件系统,用于共享文件和打印机。 2. 创建共享文件夹 创建一个文件夹用来共享文件,命令为...
server string = %h server (Samba, Ubuntu) security = user map to guest = bad user obey pam restrictions = yes passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *...
sudo apt-get install samba-common samba ``` 3. **共享文件夹设置**: 选择要共享的文件夹,右键选择“共享”。如果遇到权限问题,需要调整文件夹权限。例如,可以使用以下命令将 `/var/lib/samba/usershares`...
Samba 是一个免费软件,它能够在 Linux 和 UNIX 系统上实现 SMB(Server Message Block)协议,从而使得 Windows 用户能够轻松地访问局域网中的 Linux 主机进行文件共享或打印机共享等操作。Samba 由服务器端和...
一句 sudo apt-get install samba samba-client 就能全部装上 启动samba也很简单: sudo /etc/init.d/samba start 设置samba的密码, 可以先添加samba用户, 必须是系统用户。 smbpasswd -a yourname 三. 互访 1)...
Samba 是一款在 Linux 和 Unix 类操作系统上实现 SMB(Server Message Block)协议的软件包,它能够实现跨平台的文件共享和打印服务功能。对于 Ubuntu 用户来说,通过 Samba 可以方便地与运行 Windows 操作系统的...
配置ubuntu12.04 samba服务器的话,把必要的软件安装之后,还需要修改配置文件,可以先把系统的配置文件备份,这个拷贝过去替换系统的文件,把名字了。次配置文件本人一验证,可以使用,配置文件的最后12行是我自己...
ubuntu samba的安装,samba连接不上
Virtualbox下Ubuntu Samba配置
`sudo apt-get install samba smbfs` 设置配置文件 配置文件是 Samba 服务的核心配置文件,用于指定共享目录、用户权限和安全设置等。使用以下命令编辑配置文件: `sudo vi /etc/samba/smb.conf` 在配置文件中,...