I agree that it would be appropriate if Excito kept posting upgrades for the Bubba Server product. Well-known manufacturers of comparable products will supply software upgrades for their hardware, several years after a certain product has gone out of production.
But in the meantime, here is what I did to get my Bubba up and running with the Lenny software. I just want to add that I still consider myself to be a linux novice, though I am not afraid to use the command line if that gets things working. Therefor, I cannot guarantee that my suggestions will work for you...
After installing the image, I used the update function in the adminstation webpage to update the software. My software version is now 1.0.3.
To get access to the Bubba I needed to use SSH as described in the manual. So I checked that option for the main user (allow SSH login). After login, I used su to get root access as described in the manual.
Files can be edited by means of the nano editor
All the remedies I describe below are mentioned elsewhere in this site. I just thought it would be a help to gather them in one place. I don't use the mediatomb video server and the mail facilities, so I don't know if those will work after implementing the changes below.
First problem I encountered was the fact that the administration webpage does not allow setting a static IP address. It gets its address from the DHCP server on my home network. To get a static IP address I changed the /etc/network/interfaces file. At the same time I added a post-up statement (allmulti) to get my firefly media server to announce itself. So here is my /etc/network/interfaces file:
Code: Select all
# The loopback interface
auto lo
iface lo inet loopback
#The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
#set your static IP below
address 10.0.0.10
#set your default gateway IP here
gateway 10.0.0.1
netmask 255.255.255.0
#network 10.0.0.0
#broadcast 10.0.0.255
post-up ifconfig eth0 allmulti
I restarted my Bubba to make these changes take effect.
Second set of changes I had to make were in the /etc/samba/smb.conf file. First I made sure that the correct workgroup is specified under [global]. Thereafter, I went to the section ###Authentication### and found the statement
and changed that to
.
Next, I found the [homes] section (in the process, I changed [homes] to [home]) and set
to
in order to allow writing to my home share.
That's it. At this point I again restarted my Bubba and could see that everything was working as intended.
Hope this can help some of you that still hesitate to upgrade to Lenny.