PDA

View Full Version : Where do I have to put files that need rw filesystem?



Hans_Mono
03-30-2003, 10:13 AM
Hi
I want to include Zope to Knoppix.
Zope needs rw access and I just can't find out where I have to install it. If i put it into the /var folder it just is linked to the /ramdisk/var folder, so that I don't get rw access.
Do I have to install it anywhere else or do I have to change any config files?
Kind regards
Hans Mono

ted_munga
03-30-2003, 11:38 AM
I'm not sure if this is what your looking for as I'm still a newbie, but if you need wr access to
ramfiles you can add them in the miniroot.gz.

This is where knoppix loads some stuff into ram.
1.
mount boot.img boot -t msdos -o loop=/dev/loop0
2.
cp boot/miniroot.gz /tmp #or some other dir
3.
gunzip miniroot.gz
4.
mount miniroot mroot -t ext2 -o loop=/dev/loop1

Have a look though the linuxrc.

hope this helps

ted

Hans_Mono
03-30-2003, 06:27 PM
Thanks for your help.

That was exactly the thing i needed