How do I invoke the sqlite3-doc package
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.
sqlite3
add a comment |
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.
sqlite3
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20
add a comment |
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.
sqlite3
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.
sqlite3
sqlite3
asked Feb 3 at 23:51
SrulySruly
1135
1135
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20
add a comment |
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20
add a comment |
2 Answers
2
active
oldest
votes
According to the description shown in apt-cache show sqlite3-doc
:
This package contains the documentation that is also available on
the SQLite homepage.
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 install dwww
package, open the browser and point to http://localhost/dwww
. This requires enabling cgi
via sudo a2enmod cgi
and restarting apache service sudo systemctl restart apache2
(source).
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all.html
files are located on your hard drive, they are in fact available off-line, either if you usedwww
orxdg-open
method, althoughdwww
is a bit nicer for navigation
– Sergiy Kolodyazhnyy
Feb 11 at 20:00
add a comment |
You can just point your web browser at the index page
xdg-open /usr/share/doc/sqlite3-doc/index.html
and navigate the documentation from there.
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115390%2fhow-do-i-invoke-the-sqlite3-doc-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the description shown in apt-cache show sqlite3-doc
:
This package contains the documentation that is also available on
the SQLite homepage.
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 install dwww
package, open the browser and point to http://localhost/dwww
. This requires enabling cgi
via sudo a2enmod cgi
and restarting apache service sudo systemctl restart apache2
(source).
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all.html
files are located on your hard drive, they are in fact available off-line, either if you usedwww
orxdg-open
method, althoughdwww
is a bit nicer for navigation
– Sergiy Kolodyazhnyy
Feb 11 at 20:00
add a comment |
According to the description shown in apt-cache show sqlite3-doc
:
This package contains the documentation that is also available on
the SQLite homepage.
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 install dwww
package, open the browser and point to http://localhost/dwww
. This requires enabling cgi
via sudo a2enmod cgi
and restarting apache service sudo systemctl restart apache2
(source).
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all.html
files are located on your hard drive, they are in fact available off-line, either if you usedwww
orxdg-open
method, althoughdwww
is a bit nicer for navigation
– Sergiy Kolodyazhnyy
Feb 11 at 20:00
add a comment |
According to the description shown in apt-cache show sqlite3-doc
:
This package contains the documentation that is also available on
the SQLite homepage.
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 install dwww
package, open the browser and point to http://localhost/dwww
. This requires enabling cgi
via sudo a2enmod cgi
and restarting apache service sudo systemctl restart apache2
(source).
According to the description shown in apt-cache show sqlite3-doc
:
This package contains the documentation that is also available on
the SQLite homepage.
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 install dwww
package, open the browser and point to http://localhost/dwww
. This requires enabling cgi
via sudo a2enmod cgi
and restarting apache service sudo systemctl restart apache2
(source).
edited Feb 4 at 0:40
answered Feb 4 at 0:25
Sergiy KolodyazhnyySergiy Kolodyazhnyy
74.4k9155325
74.4k9155325
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all.html
files are located on your hard drive, they are in fact available off-line, either if you usedwww
orxdg-open
method, althoughdwww
is a bit nicer for navigation
– Sergiy Kolodyazhnyy
Feb 11 at 20:00
add a comment |
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all.html
files are located on your hard drive, they are in fact available off-line, either if you usedwww
orxdg-open
method, althoughdwww
is a bit nicer for navigation
– Sergiy Kolodyazhnyy
Feb 11 at 20:00
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
Thanks this is what I was looking for since I wanted to know how to invoke it when I'm offline.
– Sruly
Feb 11 at 17:07
@Sruly Glad I could help. Since all
.html
files are located on your hard drive, they are in fact available off-line, either if you use dwww
or xdg-open
method, although dwww
is a bit nicer for navigation– Sergiy Kolodyazhnyy
Feb 11 at 20:00
@Sruly Glad I could help. Since all
.html
files are located on your hard drive, they are in fact available off-line, either if you use dwww
or xdg-open
method, although dwww
is a bit nicer for navigation– Sergiy Kolodyazhnyy
Feb 11 at 20:00
add a comment |
You can just point your web browser at the index page
xdg-open /usr/share/doc/sqlite3-doc/index.html
and navigate the documentation from there.
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
add a comment |
You can just point your web browser at the index page
xdg-open /usr/share/doc/sqlite3-doc/index.html
and navigate the documentation from there.
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
add a comment |
You can just point your web browser at the index page
xdg-open /usr/share/doc/sqlite3-doc/index.html
and navigate the documentation from there.
You can just point your web browser at the index page
xdg-open /usr/share/doc/sqlite3-doc/index.html
and navigate the documentation from there.
answered Feb 4 at 0:16
steeldriversteeldriver
70k11114186
70k11114186
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
add a comment |
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
This is a great answer but I was looking to be able to do it when I'm offline. Thanks.
– Sruly
Feb 11 at 17:09
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1115390%2fhow-do-i-invoke-the-sqlite3-doc-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Next. Search in packages.ubuntu.com Example for sqlite3-doc: packages.ubuntu.com/cosmic/all/sqlite3-doc/filelist
– Carlos Dagorret
Feb 4 at 0:20