Come attivare la condivisione file Windows™ compatibile nel Mybook risuscitato.
(Questo articolo è solo in inglese. Se qualcuno è interessato me lo faccia sapere che lo traduco in italiano.)

How to add Windows™ compatible file sharing in the Revived Mybook.

Before installing Samba, it is suitable to install CUPS, too.
To install Samba and the web administration tool, SWAT, we use this command:

root@mybook:~# apt-get install swat
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  openbsd-inetd samba samba-common samba-doc tcpd update-inetd
Suggested packages:
  samba-doc-pdf
Recommended packages:
  smbldap-tools
The following NEW packages will be installed:
  openbsd-inetd samba samba-common samba-doc swat tcpd update-inetd
0 upgraded, 7 newly installed, 0 to remove and 19 not upgraded.
Need to get 14.4MB of archives.
After unpacking 32.3MB of additional disk space will be used.
. . .

During the installation, installer ask for:

  • Workgroup/Domain
  • If you want to use WINS coming from DHCP

As the installation ends, you have Samba ready to work. If you haven’t SWAT running, use this command:

dpkg-reconfigure openbsd-inetd

that reads /etc/inetd.conf file and set inetd to automatically start at system boot.

Now you can start managing shares and users, pointing your browser to: http://ip-of-your-mybook:901/. You asked for login/password (that is root/root password).
Remember that Samba requires that Unix user must exist before you can add it to Samba users.
To create Unix user you can use:

# useradd -m username

that adds user “username” to Unix users and create (with -m switch) the home directory.
In this case you can assign users to private directories, and every user can manage his files, accessing with Samba password.
You can refer to immense documentation in the Samba website.

That’s all.