monero-site/_i18n/it/resources/user-guides/importing_blockchain.md

56 lines
1.9 KiB
Markdown
Raw Normal View History

{% include disclaimer.html translated="yes" translationOutdated="yes" %}
Simplify versioning system for user guides This new approach doesn't require version numbers and make easier for contributors to understand the status of the document. There are only 3 states: - Outdated: The page is outdated and might not work as expected - Untranslated: The page needs to be translated - Translation outdated: The page is translated, but the original (English) document has been updated To mark a guide as outdated, we change the boolean of the front matter entry 'outdated' in /resources/user-guides/GUIDE. If 'False', the guide is updated. If 'True' all versions of the guide (English included) will show a warning at the bottom of the page. The other 2 states are related to the status of the translated pages and we control them from the language-specific user guides: /_i18n/LANG/resources/user-guides/GUIDE. At the top of the page a snippet will include 2 parameters: - translated: "yes" if the page is translated, "no" if it's not. - translationOutdated: "yes" if the translation is outdated, "no" if it's not This new system aims to be simpler than the precedent, avoiding to compare versioning numbers and using a higher level system instead (yes, no, True, False). I also removed the middle way status 'only minor changes', because if there are only minor changes that don't affect the usability of the guide, we don't need to point it out. The old system was complex and people didn't use it. These changes will hopefully make things easier for translators and other contributors.
2020-05-03 13:38:01 +00:00
### Passo 1
2018-02-04 15:56:31 +00:00
Scarica il file della Blockchain attuale da https://downloads.getmonero.org/blockchain.raw; puoi saltare questo passo se vuoi importare la Blockchain da un'altra fonte.
2018-02-04 15:56:31 +00:00
### Passo 2
2018-02-04 15:56:31 +00:00
Trova il percorso del tuo portafoglio Monero (la cartella nella quale hai estratto il tuo portafoglio). Per esempio il mio è :
2018-02-04 15:56:31 +00:00
`D:\monero-gui-0.10.3.1`
Il tuo percorso potrebbe essere diverso in base a dove hai deciso di scaricare il tuo portafoglio e alla versione del portafoglio Monero che stai utilizzando.
2018-02-04 15:56:31 +00:00
### Passo 3
2018-02-04 15:56:31 +00:00
Trova il percorso della Blockchain che hai scaricato, per esempio il mio è :
2018-02-04 15:56:31 +00:00
`C:\Users\KeeJef\Downloads\blockchain.raw`
Il tuo potrebbe essere diverso in base a dove hai deciso di salvare la Blockchain.
2018-02-04 15:56:31 +00:00
### Passo 4
2018-02-04 15:56:31 +00:00
Apri la finestra del Prompt dei comandi. Per farlo premi il tasto Windows + R, poi nella finestra scrivi `CMD` e premi Ok
2018-02-04 15:56:31 +00:00
### Passo 5
2018-02-04 15:56:31 +00:00
Adesso dovrai navigare nella schermata di Prompt dei comandi fino al percorso dove si trova il tuo portafoglio Monero. Puoi farlo digitando :
2018-02-04 15:56:31 +00:00
`cd C:\IL\TUO\PERCORSO\DEL\PORTAFOGLIO\MONERO\QUI`
2018-02-04 15:56:31 +00:00
Nel mio caso :
2018-02-04 15:56:31 +00:00
`cd D:\monero-gui-0.10.3.1`
Se il tuo portafoglio Monero è in un'altra partizione, puoi cambiarla digitando il comando `LetteraPartizione:`, per esempio se il tuo portafoglio è nella partizione C dovrai digitare `C:`
2018-02-04 15:56:31 +00:00
### Passo 6
2018-02-04 15:56:31 +00:00
Adesso digita nella finestra del Prompt dei comandi:
2018-02-04 15:56:31 +00:00
`monero-blockchain-import --verify 1 --input-file C:\IL\TUO\PERCORSO\DEL\PORTAFOGLIO\MONERO\QUI`
2018-02-04 15:56:31 +00:00
Nel mio caso :
2018-02-04 15:56:31 +00:00
`monero-blockchain-import --verify 1 --input-file C:\Users\KeeJef\Downloads\blockchain.raw`
Se hai scaricato la Blockchain da una fonte sicura e affidabile potresti impostare `verify 0` per ridurre il tempo necessario a sincronizzare la Blockchain.
2018-02-04 15:56:31 +00:00
### Passo 7
2018-02-04 15:56:31 +00:00
Dopo che la Blockchain sarà sincronizzata potrai aprire il tuo portafoglio Monero normalmente. Il file blockchain.raw può essere eliminato.
2018-02-04 15:56:31 +00:00
Autore: Kee Jefferys