英文:
How to install Firebird SQL version 3 or 4 on modern Linux in 2023?
问题
我不知道Firebird SQL社区是不是在沉睡,但现在没有关于如何在现代Linux系统(2023年)上安装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
好的,以下是翻译好的内容:
在终端中:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论