[Lazarus] Getting started with SQLite with Lazarus on Linux Mint
Jean SUZINEAU
jean.suzineau at wanadoo.fr
Wed Jul 10 23:14:10 CEST 2024
Le 10/07/2024 à 21:46, Arí Ricardo Ody via lazarus a écrit :
> As for the symbolic link suggestion, I ask in which directory I must
> be logged in to execute the creation of the symbolic link.
The following command is written with absolute paths so it can be run
from any current directory :
ln -s /usr/lib/libsqlite3.so.0 /usr/lib/libsqlite3.so
You will need to run it with root privileges, I don't know very well
Linux Mint, but as it's based on Debian, I guess it works like in
Ubuntu, where the prefered way to run a command with root privileges is
to prefix your command with sudo (it will ask your password):
sudo ln -s /usr/lib/libsqlite3.so.0 /usr/lib/libsqlite3.so
in case of doubt, you can uses " ln -- help " to get the doc of ln.
More information about the lazarus
mailing list