PDA

View Full Version : Saving KNOPPIX configurations in HD???



kayser
01-12-2006, 08:30 AM
I have bee able to read and write onto my NTFS formatted HD in Knoppix by "ntfsmount".

I did it by installing "fuse-2.4.1.tar.gz" http://fuse.sourceforge.net/ and "ntfsprogs-1.12.1.tar.gz"http://www.linux-ntfs.org/content/view/19/37/
with the following command:

tar zxvf fuse-2.4.1.tar.gz
cd fuse-2.4.1
./configure && make && sudo make install

tar zxvf ntfsprogs-1.12.1.tar.gz
cd ntfsprogs-1.12.1.tar.gz
./configure --enable-fuse-module && make && sudo make install

now, I am able to write to my ntfs drive by:

mkdir /mnt/c
ntfsmount /mnt/c -o dev=/dev/hda1,fmask=0111,dmask=0

However, my goal is to save my configurations (printer,ip and desktop) into my HD so that I don't have to config it everytime.
Also, I don't have a USB thumbdrive / floppy.

Can anyone teach me how to do so?