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

推荐订阅源

A
About on SuperTechFans
D
DataBreaches.Net
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
Recent Announcements
Recent Announcements
The Register - Security
The Register - Security
S
Secure Thoughts
Y
Y Combinator Blog
The Last Watchdog
The Last Watchdog
L
LINUX DO - 最新话题
V2EX - 技术
V2EX - 技术
腾讯CDC
GbyAI
GbyAI
G
Google Developers Blog
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
T
The Exploit Database - CXSecurity.com
T
Threat Research - Cisco Blogs
P
Proofpoint News Feed
Schneier on Security
Schneier on Security
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Help Net Security
Help Net Security
K
Kaspersky official blog
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
AI
AI
MongoDB | Blog
MongoDB | Blog
Scott Helme
Scott Helme
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
H
Heimdal Security Blog
H
Help Net Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
S
Security Affairs
TaoSecurity Blog
TaoSecurity Blog
The GitHub Blog
The GitHub Blog
Hacker News: Ask HN
Hacker News: Ask HN
Martin Fowler
Martin Fowler
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI

博客园 - 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

正常启动。

`