OpenSUSE 12.2 Samba Standalone Server With tdbsam Backend
OpenSUSE 12.2 Samba Standalone Server With tdbsam BackendVersion 1.0 This tutorial explains the installation of a Samba fileserver on OpenSUSE 12.2 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access. I do not issue any guarantee that this will work for you!
1 Preliminary NoteI'm using an OpenSUSE 12.2 system here with the hostname server1.example.com and the IP address 192.168.0.100.
2 Installing SambaWe can install Samba as follows: zypper install cups-libs samba Unfortunately Samba conflicts with the package patterns-openSUSE-minimal_base-conflicts. Therefore we must choose to uninstall that package: Problem: samba-3.6.7-48.12.1.x86_64 requires samba-client >= 3.6.7, but this requirement cannot be provided Edit the smb.conf file: vi /etc/samba/smb.conf Make sure you have the following lines in the [global] section:
This enables Linux system users to log in to the Samba server. (If you get the message You do not have a valid vim binary package installed. Please install either "vim", "vim-enhanced" or "gvim"., please run zypper install vim to install vi and try again. ) Then create the system startup links for Samba and start it: systemctl enable smb.service
3 Adding Samba SharesNow I will add a share that is accessible by all users. Create the directory for sharing the files and change the group to the users group: mkdir -p /home/shares/allusers At the end of the file /etc/samba/smb.conf add the following lines: vi /etc/samba/smb.conf
If you want all users to be able to read and write to their home directories via Samba, add the following lines to /etc/samba/smb.conf (make sure you comment out or remove the other [homes] section in the smb.conf file!):
Now we restart Samba: systemctl restart smb.service
4 Adding And Managing UsersIn this example, I will add a user named tom. You can add as many users as you need in the same way, just replace the username tom with the desired username in the commands. useradd tom -m -G users Set a password for tom in the Linux system user database. If the user tom should not be able to log in to the Linux system, skip this step. passwd tom -> Enter the password for the new user. Now add the user to the Samba user database: smbpasswd -a tom -> Enter the password for the new user. Now you should be able to log in from your Windows workstation with the file explorer (address is \\192.168.0.100 or \\192.168.0.100\tom for tom's home directory) using the username tom and the chosen password and store files on the Linux server either in tom's home directory or in the public shared directory.
5 Links
|




Recent comments
6 hours 19 min ago
13 hours 1 min ago
16 hours 51 min ago
18 hours 30 min ago
1 day 2 hours ago
1 day 12 hours ago
1 day 13 hours ago
1 day 16 hours ago
1 day 21 hours ago
1 day 21 hours ago