Apps :: Adding files permanently to be loaded in ram



I'm curious what you're trying to install.
though using different versions isn't recommended... here's something you could do without running mkwriteable or remastering

Code Sample
mkdir ~/bin ~/lib
ln -s /usr/lib/libcrypto.so.0.9.7 ~/lib/libcrypto.so.0.9.8
ln -s /path/to/my_binary ~/bin/my_binary
export PATH=$PATH:~/bin
export LD_LIBRARY_PATH=~/lib
my_binary

Thank you so much for your support! My application is now running perfectly :)

Fantastic forum this one, I love DSL more and more :)


original here.