Apps :: how to load firefox uci automatically



su -dsl -c is incorrect.  There should be a space between "-" and "dsl".  The hyphen might not be vital in DSL...what it does is su to dsl with dsl's environment.
Master Mikshaw

dónt run with "su - dsl -c"

who is wrong?

I load some DSL extensions at startup too. Here's part of my /opt/bootlocal.sh:
Code Sample
echo "Loading needed MyDSL packages into RAM..."
mydsl-load /pkg/dsl/*.dsl 2> /dev/null
echo 'Done.'
sleep 1
echo "Loading needed Debian packegas into RAM..."
dpkg -i /pkg/deb/*.deb 2> /dev/null
echo 'Done.'
sleep 1

Btw guys I thinks it's like this:
Code Sample
su -c 'echo "Hi This works."' - dsl

I had the same problem and I resolved in this way.
I moved mydsl-load line (without "su - dsl -c")from /opt/bootlocal.sh in /home/dsl/.bash_profile and it works

Next Page...
original here.