Package Details: megasync 5.5.0.0-2

Git Clone URL: https://aur.archlinux.org/megasync.git (read-only, click to copy)
Package Base: megasync
Description: Official MEGA desktop application for syncing with MEGA Cloud Drive
Upstream URL: https://github.com/meganz/MEGAsync/
Licenses: LicenseRef-Mega-Limited-Code-License
Submitter: son_link
Maintainer: dbermond
Last Packager: dbermond
Votes: 381
Popularity: 1.18
First Submitted: 2014-09-01 18:12 (UTC)
Last Updated: 2024-10-06 03:37 (UTC)

Sources (5)

Latest Comments

« First ‹ Previous 1 .. 11 12 13 14 15 16 17 18 19 20 21 .. 52 Next › Last »

bionor commented on 2020-09-14 12:01 (UTC)

@jpggsb

Try just running "env QT_SCALE_FACTOR=1 megasync" in the terminal and see if that works. If it does, just manually fix the *.desktop file yourself at the correct location (presumably "/usr/share/applications/megasync.desktop")

jpggsb commented on 2020-09-12 17:55 (UTC) (edited on 2020-09-12 18:05 (UTC) by jpggsb)

I tried your solution. But it doesn't work for me!

END OF THE INSTALLATION SEEMS TO BE OK! Paquets (1) megasync-4.3.3.0-2 Taille totale installée : 13.68 MiB Taille de mise à jour nette : 0.00 MiB

:: Procéder à l’installation ? [O/n] O (1/1) vérification des clés dans le trousseau [######################] 100% (1/1) vérification de l’intégrité des paquets [######################] 100% (1/1) chargement des fichiers des paquets [######################] 100% (1/1) analyse des conflits entre fichiers [######################] 100% (1/1) vérification de l’espace disque disponible [######################] 100% :: Traitement des changements du paquet… (1/1) réinstallation megasync [######################] 100% :: Exécution des crochets de post-transaction… (1/3) Arming ConditionNeedsUpdate... (2/3) Updating icon theme caches... (3/3) Updating the desktop file MIME type cache... erreur : missing 'libdmx' dependency for 'xorg-server-xdmx'

----- THEN I TRYED YOUR SOLUION sudo sed -i -r '/^TryExec/d;s|^(Exec=).*$|\1env QT_SCALE_FACTOR=1 megasync|g' /usr/share/applications/megasync.desktop [jpg@jpg-pc ~]$ cp /usr/share/applications/megasync.desktop ~/.config/autostart/ cp : voulez-vous écraser '/home/jpg/.config/autostart/megasync.desktop' ? O [jpg@jpg-pc ~]

$ megasync Erreur de segmentation (core dumped)

[jpg@jpg-pc ~]$ uname -r 5.4.64-1-MANJARO

THE CONTENT OF MEGASYNC IN .CONFIG SEEMS ALSO AS YOU PROPOSE [Desktop Entry] Type=Application Version=1.0 GenericName=File Synchronizer Name=MEGAsync Comment=Easy automated syncing between your computers and your MEGA cloud drive. Exec=env QT_SCALE_FACTOR=1 megasync Icon=mega Terminal=false Categories=Network;System; StartupNotify=false X-GNOME-Autostart-Delay=


DO YOU SEE ANYTHING WRONG ? THANK YOU !

bionor commented on 2020-09-07 21:32 (UTC)

I had the segmentation fault as well and I tried this I found on github and it worked for me :)

"you can fix this by adding the env variable in the launch file: e.g.: nano /usr/share/applications/megasync.desktop

and then replace "Exec=megasync" with "Exec=env QT_SCALE_FACTOR=1 megasync"

remove the TryExec line and save. you can then copy the megasync.desktop launch file to your autostart folder, e.g.:

cp /usr/share/applications/megasync.desktop ~/.config/autostart/

if you don't want to vi/nano, you can use sed, e.g.: sudo sed -i -r '/^TryExec/d;s|^(Exec=).*$|\1env QT_SCALE_FACTOR=1 megasync|g' /usr/share/applications/megasync.desktop

and then copy the changed file to your autostart folder.

this worked even with the latest deepin-qt5integration 5.1.0.1-2 installed."

jpggsb commented on 2020-09-06 20:50 (UTC) (edited on 2020-09-07 20:28 (UTC) by jpggsb)

Great that megasync 4.3.3.0-2 was just updated ! I installed it without problem, via yaourt. But on starting, I find this message : "segmentation error" (core dumped). Where is the problem ?

teacher4711 commented on 2020-09-02 18:32 (UTC)

For me too. Looking forward to the update.

UNP6GDXDXA commented on 2020-08-31 21:00 (UTC)

ServiDei's patch worked.

kinoe commented on 2020-08-26 18:35 (UTC)

Thank you ServiDei. Build ran smoothly. Hope this issue will be fixed.

ServiDei commented on 2020-08-26 18:01 (UTC) (edited on 2020-08-26 21:33 (UTC) by ServiDei)

@kinoe, I made file crashhandler.patch myself, so create it :) It's content in my previous comment.

kinoe commented on 2020-08-26 17:46 (UTC)

@ServiDei, sorry for not getting it! I don't find that crashhandler.patch in the downloaded snapshots :(

ServiDei commented on 2020-08-26 16:58 (UTC) (edited on 2020-08-26 17:59 (UTC) by ServiDei)

@kinoe, I've build megasync manually. I have modified PKGBUILD file to apply patch that I created.

Create file crashhandler.patch near PKGBUILD with following content:

--- a/control/CrashHandler.cpp  2020-08-25 23:54:25.714934834 +0300
+++ b/control/CrashHandler.cpp  2020-08-26 00:05:19.872082420 +0300
@@ -209,7 +210,7 @@
         oss << "Error info:\n";
         if (info)
         {
-            oss << sys_siglist[sig] << " (" << sig << ") at address " << std::showbase << std::hex << info->si_addr << std::dec << "\n";
+            oss << strsignal(sig) << " (" << sig << ") at address " << std::showbase << std::hex << info->si_addr << std::dec << "\n";
         }
         else
         {

Add lines 36-37 to PKGBUILD so prepare() function will look like this:

 27 prepare() {
 28     cd "MEGAsync"
 29     git submodule init
 30     git config submodule.src/MEGASync/mega.url "../meganz-sdk"
 31     git submodule update
 32 
 33     cd "src/MEGASync/mega"
 34     patch -Np1 -i "../../../../pdfium.patch"
 35 
 36     cd "../"
 37     patch -Np1 -i "../../../../crashhandler.patch"
 38 }