PDA

View Full Version : network persistent home directory.



Powindah
06-24-2003, 03:18 PM
I wanted a larger home directory that was accessible over the network and internet(when I'm away from the office). This is what I hacked together.
There are probably alot of better ways of doing this, but I didnt really want to remaster the entire CD.
I hope some of you find it usefull.

/dev/sda1 is my 16MB memory card where I save my settings/configuration.

how to do it yourself
=-=-=-=-=-=-=-=-=-=-=
1) setup a share on a samba server with rw access.

2) mount /dev/sda1

3) vi /mnt/sda1/knoppix.sh and add the following at the end of the script:
mkdir /mnt/remotehome
mount -t smbfs -o username=remotehome,password=topsecret,workgroup=W HATEVER,gid=knoppix,uid=knoppix,fmask=700,dmask=70 0 //192.168.0.1/remotehome /mnt/remotehome
losetup /dev/loop0 /mnt/remotehome/home.img
mount -t ext3 /dev/loop0 /home/knoppix
chown -R knoppix.knoppix /home/knoppix

4) umount /mnt/sda1

5) mkdir /mnt/remotehome

6) mount -t smbfs -o username=remotehome,password=topsecret,workgroup=W HATEVER,gid=knoppix,uid=knoppix,fmask=700,dmask=70 0 //192.168.0.1/remotehome /mnt/remotehome

(this will give you 100MB, change to your own requirements)
7) dd if=/dev/zero of=/mnt/remotehome/home.img bs=1k count=100000

8) losetup /dev/loop0 /mnt/remotehome/home.img

9) mkfs.ext3 -c /dev/loop0 100000

shutdown your machine and reboot using "knoppix myconfig=scan" and everything should work smoothly.

...and yes, this could be alot prettier.

Przemo-c
08-22-2003, 08:06 PM
That post can help me a lot because my hard drive died and i thought about knoppix but running only from a floppy excludes installing new software can changing home dir as you described and having floppy for config files will allow me to install new sofware?. I've got some free space on my server and i am sharing it without setting it as my home dir. Now it will be better but i have a small question is it possible to set remote dir as a config source floppys arent reliable and they are slow. I thing that i will have to remaster cd but how to make that the config will be taken from the network without config (setting up interfaces etc) maybe setting basic config to get rest of the config from the net or even replacing already set with a new one?? It is hard for me to describe it so it wil be imposible to do it without some directions. So please help me. If you can.