Quote (clacker @ Oct. 04 2005,13:50) |
casio, I don't think it's anything you did. I've run into things similar to this as well. When you downloaded uucp from apt-get, it created the directory in RAM so things worked. Then when you remastered the directory became a symbolic link to the CD to save space. There is a script that is run to make the system writeable called /etc/init.d/mkwriteable that you can modify to add directories and files you want in RAM. Check and see if the /etc/uucp directory in your remaster is a symbolic link (does it show up in light blue when you run ls /etc/uucp or with an "l" at the start of its line when you run ls -l /etc/uucp). If it is a link, what I've done is to remove the link and copy the directory from /KNOPPIX. If that works then you can modify your remaster's mkwriteable script to include those commands. |
Quote (casio @ Oct. 09 2005,10:40) |
Clacker I may have done this wrong but when I entered the lines in mkwriteable file within in remastered Linux I added the following lines (copying these from other lines in the file) : cp -srd /KNOPPIX/etc/uucp /ramdisk ln -sf /ramdisk/etc/uucp / |
Quote (clacker @ Oct. 10 2005,15:45) | ||
I think the paths you used might be putting the files and their links in the wrong places, try this instead: cp -r /KNOPPIX/etc/uucp /ramdisk/etc ln -sf /ramdisk/etc/uucp /etc/uucp |
Code Sample |
mkdir test1 # makes a directory called test1 mkdir test2 # makes a directory called test2 cp -r test1 test2 # copies test1 into test2 ls test2/ # shows test1 as a subdirectory of test2 cp -r test1 test2/test3 # copies test1 into test2, #calling the new directory test3 rather than test1 ls test2/ # shows test1 & test3 as subdirectories of test2 |