I've installed on a P4 1.8 ghz 512 ram dual hard drives. Installed Samba. I've got internet access through the hub but cant figure out how to get the machines to talk to each other. Have googled but only get answers for feisty fawn and the interface difference is confusing me. Should I just find feisty fawn. Any help will be much appreciated.
Announcement
Collapse
No announcement yet.
Help setting Jaunty Jackalope up as a file server on windows small office networ
Collapse
This topic is closed.
X
X
-
Re: Help setting Jaunty Jackalope up as a file server on windows small office networ
As you say, "Samba" is the term of art that you are looking for. Search this forum, Ubuntu Forums, or Google. You start the daemons withCode:sudo /etc/init.d/samba start
Code:sudo /etc/init.d/samba restart
Configuration of the /etc/samba/smb.conf file can be tricky, depending on how much security your network requires. For a simple 3-machine home network, behind a router (which has had its factory default IP address changed), I use this smb.conf so I can get to my Linux system from the Windows machines:
[global]
workgroup = WORKGROUP
interfaces = eth0
map to guest = bad user
[Data]
path = /home/dibl
read only = no
guest ok = yes
case sensitive = no
strict locking = no
force user = dibl
[Epson_84]
printing = cups
path = /var/tmp
printable = yes
guest ok = yes
guest only = yes
[Documents]
path = /home/dibl
writeable = yes
browseable = yes
guest ok = yes
- Top
- Bottom
Comment