I think paging faults are always memory related. Maybe when you're copying them, it's filling memory with the virtual filesystem junk and that's causing it. Also, unless you're very confident your program isn't flawed, post your code. My guess is that it's from not having a swap partition though.
swap was on when I was doing this though.. then I tried it without it, but it still didn't work anyway. I would give you the actual error, but I don't have a copy of it 
anywho, here's the script.
Code:
<?php
set_time_limit(0);
$mp3list = file('/win4/lists/linux.m3u');
while(list($line, $mp3) = each($mp3list)) {
$mp3 = trim($mp3);
$mp3file = ereg_replace("/win4/mp3/", "", $mp3);
copy($mp3, '/mp3/'.$mp3file);
echo "Copying" . $mp3 . "...\n";
}
?>
Bookmarks