yeah, you can easily make your xbox a nas, but the problem i have is that it has basicly no security (password protected, etc.)
also, when i wrote that mini-tut, the guy was supposed to post back outlining the first-run of gentoox, but it never happened and i forgot. basicly, during this first run, it asks you what services you want on startup, and one of the services you can autostart is samba. thus acheiving a nas. i cant remember perfectly, but once your done with the first run, gentoox reboots, and when you launch gentoox again, samba will auto start.
then you configure samba, it really easy, if you didnt enable xfce (command line only), just run nano /etc/samba/smb.conf (as root/super user of course), or if you did enable xfce (so you have a desktop environment), just open /etc/samba/smb.conf with the text editor. now, exactly what you put in smb.conf depends on your install.
LINUX ONLY... (AKA NATIVE)
if you have a linux only install, just basicly make a folder somewhere named "Media" on the hard drive (in this example it is at /home/username/Media), and add this to your smb.conf:
CODE
[Media]
path = /home/username/Media
browsable = yes
public = yes
writable = yes
XBOX + LINUX (AKA FATX AKA GAMESAVE AKA LOOPBACK INSTALL)
now, if you want a xbox + linux nas (can still play xbox games), then your gonna have to make a folder on your F/G drive called Media that you want to share. then your gonna have to add/change some lines in the "/etc/fstab". first, make the folder /mnt/Fdrive (or whatever you want to call it). then, as root/super user, open up /etc/fstab. make sure this line is in it:
CODE
/dev/hda55 /mnt/Fdrive fatx defaults,rw,user,umask=0000 0 0
***make those spaces into tabs
of course, if you want to use the g drive, change "/dev/hda55" to "/dev/hda56" and change "/mnt/Fdrive" to "/mnt/Gdrive".
then you need to edit your /etc/samba/smb.conf. make sure it has this:
CODE
[Media]
path = /mnt/Fdrive/Media
browsable = yes
public = yes
writable = yes
of course, your also gonna have to specifically set up other stuff, but if you have done samba configuration before its easy.
then reboot, and you will have a NAS.