The reliance of mobile specific applications can and will impair an user experience while traversing and interacting with certain applications. It can deemed rather difficult at times to interact with mobile applications that correspond to investment opportunities such as stock brokerage applications. I have the propensity to perform a search query on the web pertaining to applicable mobile applications would have a kin on the desktop. Certain mobile applications can create a bad user experience, but it could be negated or improved by finding another platform in order to provide a better user experience and navigation. One surprising reveal is Webull has a desktop application available for linux, more specifically for Debian/Ubuntu Linux distributions. For Debian and kin linux distributions, the installation is fairly simplistic and straightforward to where the utilization of the terminal should be non-existent.
It is viable to download Webull Desktop Applications for Fedora Linux, but it does have some rather complexity to the installation process. This tutorial is designed to aid in ironing out the complexities. The use of the terminal is a necessity for this particular installation. There is problematic occurrence during the post installation, and it will be discussed at the end of the tutorial. For simplicity, it would be conducive just to copy and past these commands into the terminal, yet the will be some nuances to the commands to due pathways. Two asterisks will be used to convey the pathways will be differ from this tutorial to and the reader's machine.
mkdir Applications
sudo dnf install alien -y
The "-y" is a flag for dnf package manager meaning yes. It will automatically proceed to download the package and install. If you want to view the package and it dependencies prior to download and installation then simply remove the flag.
cd Applications && ls
sudo alien –r 'Webull Desktop_9.3.0_9100000072_global_x64signed_**XXXX.deb'
The double asterisk is applicable, copy and paste your actual unique name of the Webull program. Every download request generates a unique licensed key which is associated in the name of the program when requested to be downloaded from the source.
This command will convert the debian based package into an rpm package. The RPM package manager is native to the Fedora based distributions. The conversion will allow the Webull desktop to be operable once installed.
To confirm the rpm is fully converted, type the command
ls
sudo ln -s /usr/lib64/libcurl.so.4 /usr/lib64/libcurl-gnutls.so.4
ls -l /usr/lib64/libcurl-gnutls.so.4
ls
Remember to replace the double asterisk with the RPM package name
sudo rpm -ivh --nodeps --replacefiles **WebullDesktop-9.3.0-2.amd64.rpm
As of now, there isn't exactly a way to automatically update the software. Once I find a viable solution this section of the tutorial will be updated. There are a few potential solutions keep the software up-to-date are listed below.
Post installation of the Webull desktop program a problem is the operating system will download updates, but won't be able to apply the updates. There seems to be a permission error where Qemu and Webull claim ownership of the directory /usr/share/applications. I haven't look too much into a work around, but I have been deleting the RPM and updating the system then reinstalling the RPM afterwards.