aboutsummaryrefslogtreecommitdiffstats
path: root/packages/samba/files/Managing-Samba.txt
blob: 079cf34e4b2a65b0d7647a72ba64332a35a0b822 (plain)
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
This device is running a bare-bone Samba server which allows easy
transfer of files and directories between any networked desktop PC and
your networked PDA.

Since it is generally a bad idea to allow everyone read and write access
to your PDA, you will have to configure at least one user to get access to
any shared folder but "tmp" (tmp is read-write for everyone).

How to create a Samba user with password:

- If you haven't already created a non-root user, do so now:
	root@poodle:/usr/bin# adduser testuser
	Changing password for testuser
	Enter the new password (minimum of 5, maximum of 8 characters)
	Please use a combination of upper and lower case letters and numbers.
	Enter new password: 
	Bad password: too short.

	Warning: weak password (continuing).
	Re-enter new password: 
	Password changed.
	root@poodle:/usr/bin# 
	
- Note that the password you entered will _not_ be your samba password.
  Samba uses its own password database.
  
- Add a Samba password for your user:
	root@poodle:/usr/bin# smbpasswd -a testuser
	New SMB password:
	Retype new SMB password:
	Added user testuser.
	root@poodle:/usr/bin# 

- Done ;)