I installed the package but can't figure out how to use/start it. What I'm am looking for is a interactive help/docs for sqlite3 I assumed that what this package does but I don't know how to start it.
Thanks in addvance.
I installed the package but can't figure out how to use/start it. What I'm am looking for is a interactive help/docs for sqlite3 I assumed that what this package does but I don't know how to start it.
Thanks in addvance.
You can just point your web browser at the index page
and navigate the documentation from there.
According to the description shown in
apt-cache show sqlite3-doc
:And appropriately enough,
apt-file show sqlite3-doc
will tell you that the package contains whole lot of.html
pages stored in/usr/share/doc/sqlite3-doc
directory. Now, you can either read those via the browser, or alternatively, as explained in a related answer, you can installdwww
package, open the browser and point tohttp://localhost/dwww
. This requires enablingcgi
viasudo a2enmod cgi
and restarting apache servicesudo systemctl restart apache2
(source).