by labandaoculta » Sun Jan 09, 2022 7:34 pm
All, my Fusion 8HD lost the IDE port that communicates with the hard drive like a month ago. I have lost 12 years of experimenting, recording, tuning sounds, etc, which was disappointing. This post gave me hope to make at least keep using the Fusion, so I managed to do what here is said: I am running the Fusion only with the CF card. I had some other problems, like insert the CF card in the slot is not trivial, you can put it in the wrong position and push, thinking you are doing the right thing, but no, so I damaged the pins in the main CPU board, I had to re position them manually, and re solder the pins to the board. Now, it is working. The 4 GB card is in operation while the backup is in the 2 GB (so 2 GB and 4 GB works). Now, to change the string oVulmen.3 (hard drive) to oVulmen.2 (CF card) I did a script. The script program is below
find . -type f -name '*.af*' -exec bash -c '
for file do
rm -f temp
echo "$file"
sed "s/oVulem\x003/oVulem\x002/g" "$file" > temp
mv temp "$file"
done
' exec-bash {} +
What I did was install the Ubuntu application in my Windows 10 computer, create this script in the /root, and then browse there to the file's location under Program, Multisamples, I think Mixes and Patterns, copy this file in there and execute it. The trick is that the sed command allows to specify ONE character in hex, that is what I did. It works fantastic, in few minutes all Hollow Sun, HD freepacks and all other available packs were converted from HD to CF card. I have like 1.5 GB of sounds in my CF (though probably more than half are discardable for the type of music I write). Hope it helps....