Hi All,
I have a linux script which installs rpm and configures certain services.It basically configures and copies binaries (rpms files) to launches a webrowser GUI; thru an ip.
Now I have a new requirement to add a desktop shortcut in linux to launch the GUI .I tried with an help this command:
ln -s TARGET /root/Desktop/MyAppliction i.e
ln -s 127.0.0.1:5448/MyAppliction/ /root/Desktop/MyAppliction

But this is giving error on duble click of the shortcut (error:Link broken etcetc)

I know how to do this with launcher application. but this needs to be implemented through script.Can anyone extend help

Thanks in advance !