惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
B
Blog RSS Feed
L
LangChain Blog
Jina AI
Jina AI
爱范儿
爱范儿
C
Check Point Blog
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
月光博客
月光博客
GbyAI
GbyAI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
A
About on SuperTechFans
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - chatbox-bin
2026-06-14 · via AUR Newest Packages

RocketDev commented on 2025-12-15 09:43 (UTC)

Got following error when running

> /opt/Chatbox/Chatbox-1.18.1-x86_64.AppImage
/tmp/.mount_ChatbonumKx3/xyz.chatboxapp.app: libc.so.6: version `GLIBC_ABI_DT_X86_64_PLT' not found (required by /usr/lib/libdl.so.2)
/tmp/.mount_ChatbonumKx3/xyz.chatboxapp.app: libc.so.6: version `GLIBC_ABI_DT_X86_64_PLT' not found (required by /usr/lib/libpthread.so.0)
/tmp/.mount_ChatbonumKx3/xyz.chatboxapp.app: libc.so.6: version `GLIBC_ABI_DT_X86_64_PLT' not found (required by /usr/lib/libm.so.6)

quest commented on 2025-08-17 23:51 (UTC)

Awesome, thank you for the fixes and updating the PKGBUILD!

quest commented on 2025-08-15 04:53 (UTC) (edited on 2025-08-15 20:57 (UTC) by quest)

Current package doesn't load the systray icon correctly.

We might want to simplify the PKGBUILD so that the AppImage isn't ripped apart.

_pkgname=Chatbox
pkgname="chatbox-bin"
pkgver=1.15.3
pkgrel=1
pkgdesc="User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...)"
arch=('x86_64')
url="https://chatboxai.app"
license=('GPL-3.0')
depends=('fuse2')
provides=("$pkgname")
conflicts=("chatbox-bin" "chatbox-git")
options=(!strip)
_appimage="${_pkgname}-${pkgver}-${arch}.AppImage"
_pkgid="xyz.chatboxapp.app"
source=("https://download.chatboxai.app/releases/${_appimage}")
noextract=("$_appimage")
sha512sums=('4becb6e1720e5a410119388e4d34cb7eabe28f198d272a6fc8cf53d27688df0dab607d2f1784f913a48f18cd9cd3da8e188074afb26de76be23ba21e018ab63e')

prepare() {
    # Make the AppImage executable
    chmod +x "$_appimage"

    # Extract the AppImage
    "./$_appimage" --appimage-extract

    # Update the Exec line in the desktop entry file and fix the icon.
    sed -i -E "s:Exec=AppRun:Exec=/opt/${_pkgname}/${_appimage}:" "squashfs-root/${_pkgid}.desktop"
    sed -i -E "s:StartupWMClass=Chatbox:StartupWMClass=${_pkgid}:" "squashfs-root/${_pkgid}.desktop"
}

package() {
    # Install the AppImage and create a symlink
    install -Dpm755 "${_appimage}" "${pkgdir}/opt/${_pkgname}/${_appimage}"
    install -dm755 "${pkgdir}/usr/bin"
    ln -s "/opt/${_pkgname}/${_appimage}" "${pkgdir}/usr/bin/${_pkgname}"

    # Install the desktop entry file
    install -Dm644 "${srcdir}/squashfs-root/${_pkgid}.desktop" "${pkgdir}/usr/share/applications/${_pkgid}.desktop"

    # Install the icon
    install -dm755 "${pkgdir}/usr/share/pixmaps/"
    cp --no-preserve=mode,ownership "${srcdir}/squashfs-root/${_pkgid}.png" "${pkgdir}/usr/share/pixmaps/${_pkgid}.png"
}

This updated PKGBUILD would just use the AppImage, be easier to maintain, and fix the system tray issue.

oech3 commented on 2025-08-02 17:43 (UTC)

Some deps might not detected by namcap (dlopen-ed?). Can you pacman -F dropped libs and add keeping Electron package guidelines? (sorry. I missed).

richin13 commented on 2025-05-31 04:05 (UTC) (edited on 2025-06-21 00:51 (UTC) by richin13)

For newest version 1.14.1

diff --git a/PKGBUILD b/PKGBUILD
index 5c454e9..282e594 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@

 _pkgname=Chatbox
 pkgname="chatbox-bin"
-pkgver=1.11.12
+pkgver=1.14.1
 pkgrel=1
 pkgdesc="User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...)"
 arch=('x86_64')
@@ -19,7 +19,7 @@ _appimage="${_pkgname}-${pkgver}-${arch}.AppImage"
 _pkgid="xyz.chatboxapp.app"
 source=("https://download.chatboxai.app/releases/${_appimage}")
 noextract=("$_appimage")
-sha512sums=('c382c4ca4e234683ef136190dc3efeea43213d203ab450c30feb37223de0b57ee29907671bcb99413b6c76b3b2bd92b660384544057b3a0618fb8e62f4f9d838')
+sha512sums=('0ce6ca2ca49fcfdf760b185a601f13fcd78e034238f7b7dc0db4c6734fb33736dacf84f4d7a6c2fe17962b60cb2f83a81dac48295aee5604280b468461e67bbf')

 prepare() {
     # Make the AppImage executable

edit: bump to 1.14.1

redponike commented on 2025-03-18 23:25 (UTC)

@yangtsesu Thank you for bringing this to my attention. I inherited the package but failed to check properly the license field. As I did not find a license file in the distributed binary, I contacted the developer and will update the license as soon as this situation is cleared up.

yangtsesu commented on 2025-02-11 01:14 (UTC)

The community edition of Chatbox is licensed under GPLv3, the binary version available for download from the official website is commercial software.

nezu commented on 2024-04-19 08:02 (UTC)

Why does this package include /usr/lib/libindicator.so.7? this file should be provided by libindicator-gtk2

MegaHotel commented on 2024-03-05 21:37 (UTC)

Getting this error on launch

Error launching app
Unable to find Electron app at /opt/Chatbox/resources/app.asar

Cannot find module '/opt/Chatbox/resources/app.asar'
Require stack:
- /usr/lib/electron22/resources/default_app.asar/main.js
-`

ilovesusu commented on 2024-02-28 16:22 (UTC)

chatbox-bin: 文件系统中存在 /usr/lib/libgconf-2.so.4 (由 gconf 所有)