英文:
How to install Firebird SQL version 3 or 4 on modern Linux in 2023?
问题
我不知道Firebird SQL社区是不是在睡觉,但是现在(2023年)没有关于如何在现代Linux系统上安装Firebird的手册。
所谓现代Linux系统,指的是Debian 12、Ubuntu 22.04 LTS、Centos Stream 9、Fedora 36或更新版本。
我找到了这篇文章https://firebirdsql.org/en/news/how-to-install-firebird-3-0-and-4-0-on-linux/,但它已经过时且无法使用。
Firebird使用了几个在这些Linux版本上不可用的第三方库。
英文:
I don't know if Firebird SQL community is sleeping or what but there is no manual how to install Firebird on nowadays Linux system (2023).
By modern Linux I mean Debian 12, Ubuntu 22.04 LTS, Centos Stream 9, Fedora 36 or newer.
I found this article https://firebirdsql.org/en/news/how-to-install-firebird-3-0-and-4-0-on-linux/ but it is outdated and not working.
Firebird is using several third party libraries not available on these Linux versions.
答案1
得分: 3
好的,以下是翻译好的内容:
好的,我不知道为什么在新的Linux安装上第一次没有成功,但是这里有一种简单的方法来在Ubuntu 22.04 LTS上安装Firebird 3.0:
在终端中执行以下命令:
sudo su
apt install firebird3.0-server
就是这样。
如果你想要示例:
apt install firebird3.0-examples
如果你想要开发工具 "isql-fb" 控制台:
apt install firebird-dev
提示:如果你在终端中输入 "firebird",而且Firebird没有安装,Linux会告诉你该怎么做。
还要记得先执行 "apt-get update" 命令。
英文:
Ok, I don't know why it did not work for me at the first time on new Linux installation but here is a simple way how to install Firebird 3.0 on Ubuntu 22.04 LTS:
in terminal
sudo su
apt install firebird3.0-server
That's all.
If you want examples:
apt install firebird3.0-examples
If you want developer tools "isql-fb" console:
apt install firebird-dev
Tip: If you type "firebird" in terminal and firebird is not installed Linux will tell you what to do.
Also remember to execute "apt-get update" first.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论