Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 834. (Read 4670673 times)

sr. member
Activity: 283
Merit: 250
what the best card AMD Radeon is a mining this coin and what performance k/h
What is the best CPU that mining this coin
where the cheapest cloud cpu Thanks

There is a thread specific for mining. Here:
https://bitcointalksearch.org/topic/xmr-monero-mining-653467
jr. member
Activity: 52
Merit: 39
what the best card AMD Radeon is a mining this coin and what performance k/h
What is the best CPU that mining this coin
where the cheapest cloud cpu Thanks
legendary
Activity: 1105
Merit: 1000
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

It is literally impossible to derive the view key from an address since the address is a public key and a view key is a private key.

You need to extract the view key from a wallet that has the private key. One way to do this is to just write it down when the wallet is created. Another is with the viewkey wallet command.

I said FOR an address. Not FROM. Easy misread. Thanks for the answer. I don't have the client up and running so just was wondering if it was simply a command or what.

*If* your cold wallet is an offline standard XMR wallet.bin (or whatever name), then it's as mooo said: simply start simplewallet and type "viewkey" at the prompt. If you're planning on actually *using* it, the better approach would be "save_watch_only", then bring that wallet copy online.
legendary
Activity: 1442
Merit: 1018
Just curious, is there a non DOS wallet available yet?

I'm assuming you're asking if there is a GUI version of the wallet over command line, if so, yes, there are third party options available.
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
Does anyone know where the list has been sourced from? It's not a direct translation of the English one, isn't it?

i dont know who made it, but i guess the wordlists for other languages need to be created from scratch and have to pass the same check as the english one.
the first 3 letters of every word have to be unique.

please correct if i'm  wrong.

They have to be created from scratch, yes, the chances of them passing the check otherwise is basically zero.

Contributors are credited in the first line of each wordlist:

https://github.com/monero-project/bitmonero/blob/master/src/mnemonics/russian.h#L1
https://github.com/monero-project/bitmonero/blob/master/src/mnemonics/italian.h#L1
https://github.com/monero-project/bitmonero/blob/master/src/mnemonics/german.h#L1
sr. member
Activity: 335
Merit: 250
Just curious, is there a non DOS wallet available yet?
legendary
Activity: 1105
Merit: 1000
A bit of confusion...

In mymonero there is a prompt: Account>
Upon mousing over, there is an option "Review login key", but upon choosing this option there is nothing displayed, but a picture of two overlapping files.
Upon clicking on those nothing happens.
Is there a way to see it (the login key)? Without this you have to enter three keys to access the account.
is it even proper to use the login key to access the account?

Hmm, maybe try clearing your browser cache or using a different browser? When I click that I see a 13-word login key.

Could you maybe screenshot it (if there's sensitive data displayed, remove that of course)?
legendary
Activity: 3892
Merit: 4331
A bit of confusion...

In mymonero there is a prompt: Account>
Upon mousing over, there is an option "Review login key", but upon choosing this option there is nothing displayed, but a picture of two overlapping files.
Upon clicking on those nothing happens.
Is there a way to see it (the login key)? Without this you have to enter three keys to access the account.
is it even proper to use the login key to access the account?
legendary
Activity: 1105
Merit: 1000
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

If it's your own address, you can type "viewkey" in simplewallet.


If it's cold storage, he won't be able to do that.

Why not ?
That's kind of the point of this command: get the view key from the cold wallet, copy it to the less safe machine, and use it there.
Or did I misunderstand the question ?


Oh, I think the misunderstanding is mine. I was thinking of a paper wallet.
legendary
Activity: 1276
Merit: 1001
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

If it's your own address, you can type "viewkey" in simplewallet.


If it's cold storage, he won't be able to do that.

Why not ?
That's kind of the point of this command: get the view key from the cold wallet, copy it to the less safe machine, and use it there.
Or did I misunderstand the question ?
legendary
Activity: 2968
Merit: 1198
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

It is literally impossible to derive the view key from an address since the address is a public key and a view key is a private key.

You need to extract the view key from a wallet that has the private key. One way to do this is to just write it down when the wallet is created. Another is with the viewkey wallet command.
legendary
Activity: 1105
Merit: 1000
Once again, I'm try to build the RPi2 version (using the Berkeley DB) following this guide:

Quote
git clone https://github.com/monero-project/bitmonero.git bitmonero
cd bitmonero

vim Makefile

in the “release-all” section add this code:
-D NO_AES=ON (type “i” to edit) escape, then :x to save

cd src/blockchain_db/lmdb
vim db_lmdb.cpp
scroll to line 675 change “size_t mapsize = 1LL << 34;” to “size_t mapsize = 1LL << 30;” :x

cd
cd bitmonero
make release-all
cd build/release/bin
./bitmonerod --db-type berkeley

However, it is no longer possible to execute this as db_lmdb.cpp has been changed:

Quote
cd src/blockchain_db/lmdb
vim db_lmdb.cpp
scroll to line 675 change “size_t mapsize = 1LL << 34;” to “size_t mapsize = 1LL << 30;” :x

Could someone help me out here and update the guide?:
https://forum.getmonero.org/20/general-discussion/267/a-step-by-step-guide-to-running-a-full-node-on-raspberry-pi-2


There's a new thread I believe: https://forum.getmonero.org/5/support/360/bitmonerod-node-on-rpi2-working
legendary
Activity: 1105
Merit: 1000
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

If it's your own address, you can type "viewkey" in simplewallet.


If it's cold storage, he won't be able to do that.

I have the tools to do this in an easy way, but you'd want to pull the webpage and use it offline on a one-time install of some sort for maximum security (if using for "real" cold storage).

After you've gotten the viewkey, you should be able to import it into simplewallet to watch with --generate-from-view-key argument.

(PM me if you want to use the site; I don't want it too public yet)
full member
Activity: 198
Merit: 100
Once again, I'm try to build the RPi2 version (using the Berkeley DB) following this guide:

Quote
git clone https://github.com/monero-project/bitmonero.git bitmonero
cd bitmonero

vim Makefile

in the “release-all” section add this code:
-D NO_AES=ON (type “i” to edit) escape, then :x to save

cd src/blockchain_db/lmdb
vim db_lmdb.cpp
scroll to line 675 change “size_t mapsize = 1LL << 34;” to “size_t mapsize = 1LL << 30;” :x

cd
cd bitmonero
make release-all
cd build/release/bin
./bitmonerod --db-type berkeley

However, it is no longer possible to execute this as db_lmdb.cpp has been changed:

Quote
cd src/blockchain_db/lmdb
vim db_lmdb.cpp
scroll to line 675 change “size_t mapsize = 1LL << 34;” to “size_t mapsize = 1LL << 30;” :x

Could someone help me out here and update the guide?:
https://forum.getmonero.org/20/general-discussion/267/a-step-by-step-guide-to-running-a-full-node-on-raspberry-pi-2
legendary
Activity: 1276
Merit: 1001
What are basic instructions to derive viewkey for an address? Want to be able to keep an eye on cold storage.

If it's your own address, you can type "viewkey" in simplewallet.
legendary
Activity: 1276
Merit: 1001
i dont know who made it, but i guess the wordlists for other languages need to be created from scratch and have to pass the same check as the english one.
the first 3 letters of every word have to be unique.

please correct if i'm  wrong.

You are correct.
legendary
Activity: 1442
Merit: 1018
Someone posted dead-easy ubuntu build instructions not long ago and i forgot to bookmark  Undecided

Anyone have a link for that?

Short version:
Code:
make

Long version (for 14.04):
Code:
sudo apt-get install libunbound-dev libevent-dev libboost1.55-all-dev libgtest-dev libicu-dev libbz2-dev build-essential cmake
git clone https://github.com/monero-project/bitmonero.git
cd bitmonero
make

lol, loved the short version.
sr. member
Activity: 453
Merit: 500
hello world
- Russian and German word lists are now available for seeds.

Does anyone know where the list has been sourced from? It's not a direct translation of the English one, isn't it?

i dont know who made it, but i guess the wordlists for other languages need to be created from scratch and have to pass the same check as the english one.
the first 3 letters of every word have to be unique.

please correct if i'm  wrong.
legendary
Activity: 1260
Merit: 1008
Someone posted dead-easy ubuntu build instructions not long ago and i forgot to bookmark  Undecided

Anyone have a link for that?

Short version:
Code:
make

Long version (for 14.04):
Code:
sudo apt-get install libunbound-dev libevent-dev libboost1.55-all-dev libgtest-dev libicu-dev libbz2-dev build-essential cmake
git clone https://github.com/monero-project/bitmonero.git
cd bitmonero
make

for the record, I try to keep this up to date

https://forum.getmonero.org/5/support/142/useful-links-including-blockchain-downloads

Jump to: