Using a dreambox as a NAS

martinw01908

Regular Member
Joined
May 11, 2004
Messages
122
Reaction score
4
Points
18
Age
51
My Satellite Setup
Technomate 9100 and 90cm dish motorised
My Location
South East Midlands
Hello! There plenty of discussion about making the box mount a NAS or PC drive----- but is it possible to share a HDD fitted in a dreambox over the network making the box do the job of a NAS? Couldn't find this in the idiots guide.
 

mhku

Super Moderator
Staff member
Joined
Mar 8, 2005
Messages
4,712
Reaction score
20
Points
38
My Satellite Setup
TM Nano ~ sg2100
My Location
Midlands
By network do you mean your LAN?

The answer is yes but I've not done any Linux recently and haven't got time to look it up tonight. If Compufunk pops in to this thread he may be able to help :)

You may need samba running on your Dreambox (smb).
 

martinw01908

Regular Member
Joined
May 11, 2004
Messages
122
Reaction score
4
Points
18
Age
51
My Satellite Setup
Technomate 9100 and 90cm dish motorised
My Location
South East Midlands
Hi thanks yes I mean my LAN. I want my windows pc's to see it as a shared drive. I want it to perform as a kind of file server. How do I do it?
 

compufunk

Regular Member
Joined
May 7, 2008
Messages
1,658
Reaction score
1
Points
38
My Satellite Setup
DM 600-S, VU+ Duo,
Moteck SG2100, Fracarro Penta 85 dish, LG LH3000 42" TV + some computers
My Location
NW, Ireland
Yes, Its possible.

As mhku suggests, the easiest way to do it is by installing Samba. Its available for instalation throught the blue panel in most images.

Once installed you'll have to modify the config file to suit your needs. The file is called smb.conf and will be stored under either /etc or /etc/samba.

Here is my config
Code:
[global]
load printers = no
guest account = root
log file = /tmp/smb.log
security = share
server string = DreamBOX network services
workgroup = Dream
netbios name = DreamBOX
client code page=850
character set=iso8859-1
case sensitive=yes
preserve case=yes
short preserve case=yes

[root]
comment = Root file system
path = /
read only = no
public = yes
guest ok = yes

[Harddisk]
comment = Harddisk
path = /hdd
read only = no
public = yes
guest ok = yes

With the above config, when I browse to the dreambox I can see two directories. One of these is to access the file system in flash, the other is the harddisk. You can add as many shares as you like and there are lots of other options you can set. Read the Samba man page for more info.

PS: If there are kids (or adults) in your home who might come accross the shared directories, it would probably be advisable not to make the root file system available via a share. They could wreck things.
 
Top