Windows XP's /etc/hosts file
To my surprise, XP has an equivalent to unix' "/etc/hosts" file. you can find it here: c:\WINDOWS\system32\drivers\etc\hosts'
more ...To my surprise, XP has an equivalent to unix' "/etc/hosts" file. you can find it here: c:\WINDOWS\system32\drivers\etc\hosts'
more ...Just install samba server:
apt-get install samba
edit the config:
nano /etc/samba/smb.conf
set security to "share"
security = share
and guest account to nobody
guest account = nobody
then you just need to create your share like this:
[guest share]
comment = a guest share
path = /path/to/files
browseable …