summaryrefslogtreecommitdiff
path: root/packages/samba/files/Managing-Samba.txt
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2006-05-25 15:53:23 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-25 15:53:23 +0000
commit9125d5edcf62b504cb876afb8e70fd25ee01d157 (patch)
treebdf1fc67a270c1acfb086e560f68d46cfe596af0 /packages/samba/files/Managing-Samba.txt
parent4b946fa17c434ce61b9686888758a284d73223fc (diff)
samba: Add samba-essential, a cut-down bare-bone samba server
Diffstat (limited to 'packages/samba/files/Managing-Samba.txt')
-rw-r--r--packages/samba/files/Managing-Samba.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/samba/files/Managing-Samba.txt b/packages/samba/files/Managing-Samba.txt
new file mode 100644
index 0000000000..079cf34e4b
--- /dev/null
+++ b/packages/samba/files/Managing-Samba.txt
@@ -0,0 +1,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 ;)