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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - x3d

基于 Maxwell 实现 MySQL 数据实时迁移到 Mongodb 本地开发环境 通过Podman 手动从头搭建 Ubuntu 容器镜像 intel ax203/ax201 无线网卡驱动 firmware 居然有问题 Direct firmware load for iwlwifi-bz-b0-hr-b0-94.ucode failed with error -2 在安卓平板上搭建 webdav 服务 近期不要选aliyun cloud linux 镜像 一点 PHP 中优雅的将JSON/XML/YAML 等数据反序列化成指定的类对象 开始收割了 PHP Composer 虚拟依赖包 - 实现按需载入钉钉对应功能模块的 php sdk 盘点之原地踏步三 盘点之原地踏步二 盘点之原地踏步一:weui 的一点探索 apijson 初探 Apache Synapse ESB erupt api Think3 ORM 《超文本和超链接》的时间线整理 MEAF框架概念检索工具 现代企业架构框架MEAF初次解读
deepin 23 一个可用 mysql-workbench 版本 8.0.36
x3d · 2026-01-03 · via 博客园 - x3d

最近开始逐渐从两年的纯编码工作状态开始切换到研发管理状态,Linux下各种国内群件的运行成为一个问题,最终发现只有Deepin是最好的选择,因为钉钉(仅x11)、企微(统信Wine)。另外飞书的Linux客户端在各分发版本下适配居然极好,是没有想到的。

但是,Deepin 23 开始不再依赖 Debian,尽管其软件库版本大致与 Debian 11 或 12 相当。Deepin 阉割掉Debian庞大的lib库后,从 Deb系切换过来的用户就要开始忍受相应的阉党生活(本来在Linux下日子已经逐渐好起来了,到“不折腾”的状态,现在又得小折腾)。比如 mysql-workbench 。

之所以不提Deepiin 25,是因为安装体验过后发现,IT运维界的铁律-“永远选次新版”仍然有效,有点新东西,但是也有更多新问题 - svg图标渲染问题,导致桌面异常。

1、下载 mysql-workbench

https://downloads.mysql.com/archives/workbench/

Ubuntu Linux 23.10 (x86, 64-bit), DEB Package Dec 20, 2023 24.3M

(mysql-workbench-community_8.0.36-1ubuntu23.10_amd64.deb)

直接安装,会出错。

依赖: libjpeg8 (>= 8c) 但是它将不会被安装
依赖: libmysqlclient21 (>= 8.0.11) 但无法安装它

2、安装依赖

libjpeg8

https://pkgs.org/download/libjpeg8

wget -c http://archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu10_amd64.deb

wget -c http://archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb

sudo apt install ./libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ./libjpeg8_8c-2ubuntu10_amd64.deb -y

libmysqlclient21

https://pkgs.org/download/libmysqlclient21


wget -c http://archive.ubuntu.com/ubuntu/pool/main/m/mysql-8.0/libmysqlclient21_8.0.44-0ubuntu0.22.04.2_amd64.deb

sudo apt install ./libmysqlclient21_8.0.44-0ubuntu0.22.04.2_amd64.deb -y

3、安装

sudo apt install ./mysql-workbench-community_8.0.36-1ubuntu23.10_amd64.deb -y

将会同时安装下列软件:
  libproj25 libpython3.11 libpython3.11-minimal libpython3.11-stdlib proj-data

正常启动。

`