
Thanks for the details here they helped me.
I use an iMac with my bubba server. I opened a Terminal window and on the command line I used:
ssh [IP address of my bubba server]
Got prompted for my bubba user password then I su'ed to root as you can see below.
================
Last login: Tue Dec 2 09:53:31 on console
MyMachine:~ jsilk$ ssh 192.168.6.4
Password:
Linux bubba 2.6.16.16 #1 Tue May 16 21:45:07 CEST 2006 armv4tl GNU/Linux
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Wed Nov 12 11:38:37 2008 from 192.168.6.5
jsilk@bubba:~$ su
Password:
================
Then I changed directory to /etc/samba/
I made a copy of the smb.conf file using the cp command. then I edited the smb.conf file using the vi command. In the 'Share Definitions' section I added a share called 'general' and used Martin's basic code and added some to ensure that any file in general has got read, write and execute permissions for all as that suited my needs for this particular share.
#======== Share Definitions ==============
[home]
comment = Home Directories
path = /home
browseable = yes
writable = yes
create mask = 0764
directory mask = 0755
public = no
guest ok = no
hide dotfiles = yes
user = @users
[storage]
comment = Common Media storage
writable = yes
guest ok = yes
public = yes
force group = users
force create mode = 0777
force directory mode = 0777
path = /var/samba/public
[general]
comment = Common storage
writable = yes
guest ok = yes
public = yes
force create mode = 0777
force directory mode =0777
hide dotfiles = yes
path = /home/general
===========
Cheers
Johan[/img]