# Historial del navegador Web

El historial del navegador Web se guarda en un archivo de Sqlite: **.local/share/webbrowser-app/history.sqlite**,

Es aconsejable hacer una copia de seguridad y comprobar que funcione antes de continuar de la siguiente forma:

```
$ cp .local/share/webbrowser-app/history.sqlite .
$ sqlite3 history.sqlite
SQLite version 3.8.5 2014-06-04 14:06:34
Enter ".help" for usage hints.
sqlite> .tables
history

sqlite> .schema history
CREATE TABLE history (
    url VARCHAR,
    domain VARCHAR,
    title VARCHAR,
    icon VARCHAR,
    visits INTEGER,
    lastVisit DATETIME
);

sqlite> .output url.txt
sqlite> select * from history ;
sqlite> .quit

$ cat url.txt
http://www.openstreetmap.org/about|openstreetmap.org|OpenStreetMap|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427640513
http://www.openstreetmap.org/traces|openstreetmap.org|OpenStreetMap | Public GPS traces|http://www.openstreetmap.org/assets/osm_logo_228-da06200e84d502f8a9a91965aa72a97e.png|1|1427729840
http://pass.telekom.de/|telekom.de|Data usage - Xtra Handy DayFlat|http://pass.telekom.de/images/favicon.png|8|1428334325
...
```

Última actualización: sábado, 19 de diciembre de 2015, 16:54:58 CET


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guru-1.gitbook.io/bq-aquaris-e-4-5-ubuntu-phone/es/chapter25.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
