kapitainsky / RcloneBrowser

Simple cross platform GUI for rclone. Supports macOS, GNU/Linux, BSD family and Windows.
https://github.com/kapitainsky/RcloneBrowser
MIT License
2.28k stars 218 forks source link

On Linux Mint, Appimage starts and Immediately exits #168

Open kendoori opened 3 years ago

kendoori commented 3 years ago

If I run from the CLI, this is what I see:

image

kapitainsky commented 3 years ago

What OS you are on? What Windows manager you are using?

On 10 May 2021, at 23:08, kendoori @.***> wrote:

If I run from the CLI, this is what I see:

https://user-images.githubusercontent.com/2447420/117730609-99f5fa80-b1ba-11eb-9855-1d4d1fe4520d.png — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADXJHOWH2YNGTP5VAI6BYETTNBKMDANCNFSM44SU6KJA.

kendoori commented 3 years ago

Linux Mint 20.1 Cinnamon

On Tue, May 11, 2021 at 2:00 AM kapitainsky @.***> wrote:

What OS you are on? What Windows manager you are using?

On 10 May 2021, at 23:08, kendoori @.***> wrote:

If I run from the CLI, this is what I see:

< https://user-images.githubusercontent.com/2447420/117730609-99f5fa80-b1ba-11eb-9855-1d4d1fe4520d.png

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub < https://github.com/kapitainsky/RcloneBrowser/issues/168>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/ADXJHOWH2YNGTP5VAI6BYETTNBKMDANCNFSM44SU6KJA .

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-837881867, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPDMN5EU5NO3AFR4V43TNDBXHANCNFSM44SU6KJA .

kapitainsky commented 3 years ago

Thx. I will test and try to find what the problem is.

On 11 May 2021, at 12:39, kendoori @.***> wrote:

Linux Mint 20.1 Cinnamon

On Tue, May 11, 2021 at 2:00 AM kapitainsky @.***> wrote:

What OS you are on? What Windows manager you are using?

On 10 May 2021, at 23:08, kendoori @.***> wrote:

If I run from the CLI, this is what I see:

< https://user-images.githubusercontent.com/2447420/117730609-99f5fa80-b1ba-11eb-9855-1d4d1fe4520d.png

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub < https://github.com/kapitainsky/RcloneBrowser/issues/168>, or unsubscribe < https://github.com/notifications/unsubscribe-auth/ADXJHOWH2YNGTP5VAI6BYETTNBKMDANCNFSM44SU6KJA .

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-837881867, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPDMN5EU5NO3AFR4V43TNDBXHANCNFSM44SU6KJA .

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838322714, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADXJHOU536MEK54SERK5APTTNEJQRANCNFSM44SU6KJA.

kapitainsky commented 3 years ago

I tested and it works on vanilla fresh Mint installation:

Screenshot 2021-05-11 at 14 56 39

I suspect some software you installed set some QT variables. Could you try to run it this way:

QT_STYLE_OVERRIDE="" ./rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

kendoori commented 3 years ago

Thanks for the fast response.

Still doesn't work: https://youtu.be/w0LehJiy_tI

On Tue, May 11, 2021 at 10:08 AM kapitainsky @.***> wrote:

I tested and it works on vanilla fresh Mint installation:

[image: Screenshot 2021-05-11 at 14 56 39] https://user-images.githubusercontent.com/15635386/117828781-0d0a7a00-b26a-11eb-83e9-d68c5ea41330.png

I suspect some software you installed set some QT variables. Could you try to run it this way:

QT_STYLE_OVERRIDE="" ./rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838539656, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPEB2BOYXJW3N7ULVQ3TNE26NANCNFSM44SU6KJA .

kapitainsky commented 3 years ago

can you try also:

sudo apt install --reinstall qt5ct

kendoori commented 3 years ago

Same behavior. Should I install from source?

On Tue, May 11, 2021 at 10:32 AM kapitainsky @.***> wrote:

can you try also:

sudo apt install --reinstall qt5ct

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838582026, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPFDHWNFGFD2Q7UBG53TNE5XVANCNFSM44SU6KJA .

kapitainsky commented 3 years ago

Indeed installing from source is the best option - it is very easy and fast:

sudo apt update && sudo apt -y install git g++ cmake make
git clone https://github.com/kapitainsky/RcloneBrowser.git
cd RcloneBrowser
mkdir build && cd build
cmake ..
make --jobs=$(nproc --all)
sudo make install

I will do some digging and try to improve next AppImage release.

kapitainsky commented 3 years ago

I can see that there are similar issues with other Qt apps on Mint e.g. https://newsgroup.xnview.com/viewtopic.php?t=40677

Ideally AppImage should be self-sufficient but this is theory:) Let's see if it can be improved moving forward.

kendoori commented 3 years ago

Similar behavior after building from source: https://youtu.be/j1l8XlP_H3g

On Tue, May 11, 2021 at 10:46 AM kapitainsky @.***> wrote:

I can see that there are similar issues with other Qt apps on Mint e.g. https://newsgroup.xnview.com/viewtopic.php?t=40677

Ideally AppImage should be self-sufficient but this is theory:) Let's see if it can be improved moving forward.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838603807, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPCZAOEJIUPUSL7N3ZTTNE7NXANCNFSM44SU6KJA .

kapitainsky commented 3 years ago

ok - I am building now new AppImage in my new dev environment - will post link when ready

kapitainsky commented 3 years ago

sorry it will take a bit longer than I thought - I should have something in the next few days.

kapitainsky commented 3 years ago

either way I would still like to understand why it is failing on your system so I can improve its interoperability in the future.

Would you mind to share with me what QT variables are set on your system?

env | grep QT

Also if you could try one more option:

QT_QPA_PLATFORMTHEME="" ./rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

kendoori commented 3 years ago

QT_ACCESSIBILITY=1 QT_QPA_PLATFORMTHEME=qt5ct QT_STYLE_OVERRIDE=kvantum

Here's what I see when I run with you command:

[image: image.png]

On Tue, May 11, 2021 at 2:02 PM kapitainsky @.***> wrote:

either way I would still like to understand why it is failing on your system so I can improve its interoperability in the future.

Would you mind to share with me what QT variables are set on your system?

env | grep QT

Also if you could try one more option:

QT_QPA_PLATFORMTHEME="" ./rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838921636, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPCGOIO6LHO4DOSQRU3TNFWMBANCNFSM44SU6KJA .

kapitainsky commented 3 years ago

I can't see any image... only [image: image.png]

kendoori commented 3 years ago

https://i.imgur.com/wdkeoAt.png

On Tue, May 11, 2021 at 2:48 PM Kenny Schiff @.***> wrote:

QT_ACCESSIBILITY=1 QT_QPA_PLATFORMTHEME=qt5ct QT_STYLE_OVERRIDE=kvantum

Here's what I see when I run with you command:

[image: image.png]

On Tue, May 11, 2021 at 2:02 PM kapitainsky @.***> wrote:

either way I would still like to understand why it is failing on your system so I can improve its interoperability in the future.

Would you mind to share with me what QT variables are set on your system?

env | grep QT

Also if you could try one more option:

QT_QPA_PLATFORMTHEME="" ./rclone-browser-1.8.0-a0b66c6-linux-x86_64.AppImage

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/issues/168#issuecomment-838921636, or unsubscribe https://github.com/notifications/unsubscribe-auth/AASVQPCGOIO6LHO4DOSQRU3TNFWMBANCNFSM44SU6KJA .