<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									QNAP - Location of sqlite3 ...? Where can I find sqlite3? - QNAP NAS				            </title>
            <link>https://www.tweaking4all.com/forum/qnap-nas/qnap-location-of-sqlite3-where-can-i-find-sqlite3/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Thu, 11 Jun 2026 23:06:38 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>QNAP - Location of sqlite3 ...? Where can I find sqlite3?</title>
                        <link>https://www.tweaking4all.com/forum/qnap-nas/qnap-location-of-sqlite3-where-can-i-find-sqlite3/#post-4191</link>
                        <pubDate>Sat, 14 May 2022 08:44:50 +0000</pubDate>
                        <description><![CDATA[It seems that sqlite3 (standard command line tool to work with SQLite databases), is nowhere to be found in the default search path of your QNAP.However, I found it to be install several tim...]]></description>
                        <content:encoded><![CDATA[<p>It seems that sqlite3 (standard command line tool to work with SQLite databases), is nowhere to be found in the default search path of your QNAP.<br />However, I found it to be install several times ...</p>
<p>With SSH, go to your QNAP and cd to the root and do a search for sqlite3:</p>
<pre contenteditable="false">cd /
find -name sqlite3  </pre>
<p> </p>
<p>Depending on the storage capacity on your QNAP this may take a while, and possibly produce a list, something like this:</p>
<pre contenteditable="false"> # find -name sqlite3                                                                  
./share/CACHEDEV1_DATA/.qpkg/CloudLink/python/lib/python2.7/sqlite3
./share/CACHEDEV1_DATA/.qpkg/CodexPack/usr/lib/python3.6/sqlite3
./share/CACHEDEV1_DATA/.qpkg/Qmono/bin/sqlite3</pre>
<p> </p>
<p>Many many more were listed - caution hower: some of these are directories and not executable, so verify that before linking!<br />You could make a link in the directory you're working in (just an example - you may not have mono installed):</p>
<pre contenteditable="false">ln -s /share/CACHEDEV1_DATA/.qpkg/Qmono/bin/sqlite3 .</pre>
<p> </p>
<p>Or even better, in a location that is found in (or added to) the PATH environment variable.<br />I did notice that "/opt/bin" seems common, but I did not have that directory so I had to create it and it to the env variable.</p>
<pre contenteditable="false">mkdir /opt/bin
export PATH=/opt/bin:$PATH
cd /opt/bin
ln -s /share/CACHEDEV1_DATA/.qpkg/Qmono/bin/sqlite3 .</pre>
<p> </p>
<p>You'll have "sqlite3" now available no matter where you're at 😁 </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/qnap-nas/">QNAP NAS</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/qnap-nas/qnap-location-of-sqlite3-where-can-i-find-sqlite3/#post-4191</guid>
                    </item>
							        </channel>
        </rss>
		