René's URL Explorer Experiment


Title: Bug: AppImage injects bundled libs into system git's environment, breaking on modern distros · Issue #644 · github/app · GitHub

Open Graph Title: Bug: AppImage injects bundled libs into system git's environment, breaking on modern distros · Issue #644 · github/app

X Title: Bug: AppImage injects bundled libs into system git's environment, breaking on modern distros · Issue #644 · github/app

Description: On Arch Linux (and likely other rolling-release distros), all git operations fail with: git: /tmp/appimage_extracted_.../usr/lib/libpcre2-8.so.0: no version information available (required by git) git-remote-https: /tmp/appimage_extracte...

Open Graph Description: On Arch Linux (and likely other rolling-release distros), all git operations fail with: git: /tmp/appimage_extracted_.../usr/lib/libpcre2-8.so.0: no version information available (required by git) ...

X Description: On Arch Linux (and likely other rolling-release distros), all git operations fail with: git: /tmp/appimage_extracted_.../usr/lib/libpcre2-8.so.0: no version information available (required by git) ...

Opengraph URL: https://github.com/github/app/issues/644

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Bug: AppImage injects bundled libs into system git's environment, breaking on modern distros","articleBody":"On Arch Linux (and likely other rolling-release distros), all git operations fail with:\n\n```\ngit: /tmp/appimage_extracted_.../usr/lib/libpcre2-8.so.0: no version information available (required by git)\ngit-remote-https: /tmp/appimage_extracted_.../usr/lib/libssl.so.3: version `OPENSSL_3.2.0' not found (required by /usr/lib/libcurl.so.4)\ngit-remote-https: /tmp/appimage_extracted_.../usr/lib/libssl.so.3: version `OPENSSL_3.5.0' not found (required by /usr/lib/libngtcp2_crypto_ossl.so.0)\nfatal: remote helper 'https' aborted session\n```\n\nThis practically means all sessions fail upon creation. I documented in [this comment](https://github.com/GitHubAppPrivatePreview/github-app/discussions/1#discussioncomment-16602928) in detail.\n\n**Root cause:** When the AppImage spawns git subprocesses, it passes its extracted lib directory (e.g. `/tmp/appimage_extracted_.../usr/lib`) via `LD_LIBRARY_PATH`. This causes the system git binary to load the AppImage's outdated bundled `libssl` and `libpcre2` instead of system ones, which on my Arch installation are incompatible.\n\n**Workaround:** Wrapping `/usr/bin/git` to strip AppImage paths from `LD_LIBRARY_PATH` before execution resolves the issue:\n```bash\nsudo mv /usr/bin/git /usr/bin/git.real\nsudo tee /usr/bin/git \u003c\u003c 'EOF'\n#!/bin/bash\nexport LD_LIBRARY_PATH=$(echo \"$LD_LIBRARY_PATH\" | tr ':' '\\n' | grep -v '/tmp/appimage' | tr '\\n' ':' | sed 's/:$//')\nexec /usr/bin/git.real \"$@\"\nEOF\nsudo chmod +x /usr/bin/git\n```\n\nI also needed to add additional flags:\n```\nAPPIMAGE_EXTRACT_AND_RUN=1  LD_PRELOAD=/usr/lib64/libwayland-client.so.0:/usr/lib64/libwayland-egl.so.1:/usr/lib64/libwayland-server.so.0:/usr/lib64/libwayland-cursor.so.0 ./GitHub-Copilot-linux-x64.appimage\n```\n\nThis workaround should not be required for general users. Suggested fixes:\n- Sanitize `LD_LIBRARY_PATH` before spawning git subprocesses\n- Bundle a fully self-contained git inside the AppImage\n- Launch git in a clean environment via `env -i`\n\n**Environment:**\n- OS: Arch Linux\n- Kernel: 7.0.10-zen1-1-zen\n- OpenSSL 3.6.2\n- App: GitHub Copilot AppImage (linux-x64)","author":{"url":"https://github.com/jmoseley","@type":"Person","name":"jmoseley"},"datePublished":"2026-06-02T18:14:40.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/644/app/issues/644"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:fd6333e6-c98c-1fa4-7fdb-e79d8113ba97
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD244:29DF63:66A35D:8B2E65:6A627D6C
html-safe-nonce7f07627c2ad7660b648967135d8a8d6b9129f8c439bc4d2b7b8b08a0676ad4cd
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEMjQ0OjI5REY2Mzo2NkEzNUQ6OEIyRTY1OjZBNjI3RDZDIiwidmlzaXRvcl9pZCI6IjU1OTM5OTEwMTg0MzIzMzExMTYiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac246ba2890a816f2fa822b16d6da02131bb6976b66f46f91d8e60d5611fb0204e
hovercard-subject-tagissue:4573908392
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/github/app/644/issue_layout
twitter:imagehttps://opengraph.githubassets.com/32751411e0416806195f6207cd461ba03d7ce19837766aa9dd01dda4f3a4b4a8/github/app/issues/644
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/32751411e0416806195f6207cd461ba03d7ce19837766aa9dd01dda4f3a4b4a8/github/app/issues/644
og:image:altOn Arch Linux (and likely other rolling-release distros), all git operations fail with: git: /tmp/appimage_extracted_.../usr/lib/libpcre2-8.so.0: no version information available (required by git) ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejmoseley
hostnamegithub.com
expected-hostnamegithub.com
None54d77223ecd96549586d00f1e91ee7d05feebf27ea430279a9c4ba4b7de1a93c
turbo-cache-controlno-preview
go-importgithub.com/github/app git https://github.com/github/app.git
octolytics-dimension-user_id9919
octolytics-dimension-user_logingithub
octolytics-dimension-repository_id1212958625
octolytics-dimension-repository_nwogithub/app
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1212958625
octolytics-dimension-repository_network_root_nwogithub/app
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release4d79f1b99472a521fc5fb66e9fdc3ce742937dff
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/github/app/issues/644#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgithub%2Fapp%2Fissues%2F644
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgithub%2Fapp%2Fissues%2F644
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=github%2Fapp
Reloadhttps://github.com/github/app/issues/644
Reloadhttps://github.com/github/app/issues/644
Reloadhttps://github.com/github/app/issues/644
Please reload this pagehttps://github.com/github/app/issues/644
github https://github.com/github
apphttps://github.com/github/app
Notifications https://github.com/login?return_to=%2Fgithub%2Fapp
Fork 115 https://github.com/login?return_to=%2Fgithub%2Fapp
Star 1.9k https://github.com/login?return_to=%2Fgithub%2Fapp
Code https://github.com/github/app
Issues 1.8k https://github.com/github/app/issues
Discussions https://github.com/github/app/discussions
Models https://github.com/github/app/models
Security and quality 0 https://github.com/github/app/security
Insights https://github.com/github/app/pulse
Code https://github.com/github/app
Issues https://github.com/github/app/issues
Discussions https://github.com/github/app/discussions
Models https://github.com/github/app/models
Security and quality https://github.com/github/app/security
Insights https://github.com/github/app/pulse
Bug: AppImage injects bundled libs into system git's environment, breaking on modern distroshttps://github.com/github/app/issues/644#top
https://github.com/redsun82
https://github.com/jmoseley
jmoseleyhttps://github.com/jmoseley
on Jun 2, 2026https://github.com/github/app/issues/644#issue-4573908392
this commenthttps://github.com/GitHubAppPrivatePreview/github-app/discussions/1#discussioncomment-16602928
redsun82https://github.com/redsun82
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.