mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2026-03-24 12:56:59 +00:00
[GH-ISSUE #180] [Bug] [ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so': /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found #95
Labels
No labels
2024
2025
2026
acct mgmt
AI
automation
bug
calendar
ci
CJK
cloud
code-block
collaboration
copy-paste
database
data migration
data sync
deploy
desktop
develop
develop
documentation
duplicate
editor
editor-plugin
emoji
export
files
flutter-only
follow-up
formula
good first issue for devs
good first issue for experienced devs
grid
hacktoberfest
HACKTOBERFEST-ACCEPTED
help wanted
i18n
icons
images
importer
improvements
infra
install
integrations
IR
kanban board
login
look and joy
mentorship
mobile
mobile
needs design
new feature
new feature
non-coding
notes
notifications
onboarding
organization
P0+
permission
platform-linux
platform-mac
platform-windows
plugins
program
pull-request
Q1 25
Q1 26
Q2 24
Q2 25
Q3 24
Q3 25
Q4 24
Q4 25
react
regression
rust
rust
Rust-only
Rust-only
Rust-starter
Rust-starter
self-hosted
shortcuts
side panel
slash-menu
sync v2
table
tablet
task
tauri
templates
tests
themes
translation
v0.5.6
v0.5.8
v0.5.9
v0.6.0
v0.6.1
v0.6.4
v0.6.7
v0.6.8
v0.7.1
v0.7.4
v0.7.4
v0.7.5
v0.7.6
v0.7.7
v0.7.8
v0.8.0
v0.8.4
v0.8.5
v0.8.9
web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
AppFlowy-IO/AppFlowy#95
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dyrnq on GitHub (Dec 19, 2021).
Original GitHub issue: https://github.com/AppFlowy-IO/AppFlowy/issues/180
Originally assigned to: @MikeWallaceDev on GitHub.
Describe the bug
run ./app_flowy on debian 11 report exception and the interface is blank
To Reproduce
./app_flowyScreenshots

Desktop (please complete the following information):
Additional context
None
@PabloCastellano commented on GitHub (Dec 19, 2021):
I've hit the same issue. Looks like libdart_ffi requires
glibc >= 2.32while this version is not available in some common linux distributions yet. In my case I'm using Linux Mint 20.1.For the record, glibc 2.33 is available on Debian testing and Ubuntu 21.04:
@MikeWallaceDev commented on GitHub (Dec 19, 2021):
Thank you @dyrnq for reporting this, and you @PabloCastellano for reporting all of that information!
I will add a note in the installation page. There's not much we can really do at this point.
@valmormn commented on GitHub (Jan 21, 2022):
Same problem here on Ubuntu! 💩
@MikeWallaceDev commented on GitHub (Jan 21, 2022):
@valmormn which version of Ubuntu?
@zicklag commented on GitHub (Jan 25, 2022):
I'm getting the same issue on Pop!_OS ( Ubuntu ) 20.04 LTS.
Is it possible we could reduce the required glibc version to the older version, or otherwise bundle glibc 2.32 in the
libfolder with the distribution?@changchichung commented on GitHub (May 27, 2022):
same issue in ubuntu 22.04
@valmormn commented on GitHub (May 29, 2022):
Ubuntu 20.04 LTS.
But the new release 0.0.4_beta.3 works fine! 🎉
@Random72IsTaken commented on GitHub (Jun 17, 2022):
I did this on Ubuntu 22.04.
~/Downloads/AppFlowy/app_flowyand saw thelibsslwhatever not being found.ldd ~/Downloads/AppFlowy/lib/libdart_ffi.sowhich was first read to reach the error and shown the missing 2 library links, which Ubuntu has new versions of:sudo find / -name "libssl*", which had found that thattorguardapp has them in itslibdirectory!LD_LIBRARY_PATHvariable is used to find those libraries and initially echoing it has an empty result!LD_LIBRARY_PATH="/opt/torguard/lib" ~/Downloads/AppFlowy/app_flowyand it worked!/usr/local/lib, then touched 2 conf files for them like so:sudo nano /etc/ld.so.conf.d/libcrypto.so.1.1.confwith only/usr/local/libinside.sudo nano /etc/ld.so.conf.d/libssl.so.1.1.confwith only/usr/local/libinside.export LD_LIBRARY_PATH="/usr/local/lib, I guess, then runsudo ldconfigto save it all! 😋Credits: dave1 and HeadOnFire (from Laravel community)