I'm looking for a little help with Ubuntu 18.04. I installed a program using the below terminal commands:
su
"password"
cd Documents
chmod +x WatchPower64.bin
./WatchPower64.bin
The program does work as expected once installed. It has installed to the /root/WatchPower folder. There are some jar and lax files in this folder plus jre and lib folders. If I close the program/reboot the machine I have to repeat the process to install the program as I can't figure out (being an ubuntu novice!) how to create shortcuts etc. When I 'hover' over the taskbar the program shows as 'com-zerog-lax-LAX' if that helps?
Could I get some advice on how to create a desktop shortcut or a taskbar link to launch the program quicker please?
/usr/local/bin
. You still need to ensure proper permissions. You should then be able to create a shortcut, just as you would with any other program. – Artur Meinild Jul 19 '21 at 12:53su
will not work on an Ubuntu system, because the root account is not enabled. – vanadium Jul 19 '21 at 13:39WatchPower64.bin
is a binary installer that you ran? Did the installer display to you the command to run program? If the program is installed in/root/WatchPower
folder, there should be some main executable file in this folder - browse its contents and try to identify the executable. You should use this executable as command to run the program again without reinstalling. Maybe there's some help file there? BTW. Does the program really needs to be installed in root's folder and run as root? Generally one shouldn't run programs as root unless absolutely necessary. – raj Jul 19 '21 at 14:03