Bitcoin Forum
May 08, 2024, 11:36:55 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 [1293] 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 ... 2123 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667359 times)
MoneroMooo
Legendary
*
Offline Offline

Activity: 1276
Merit: 1001


View Profile
July 29, 2015, 07:47:50 PM
 #25841

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.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715211415
Hero Member
*
Offline Offline

Posts: 1715211415

View Profile Personal Message (Offline)

Ignore
1715211415
Reply with quote  #2

1715211415
Report to moderator
1715211415
Hero Member
*
Offline Offline

Posts: 1715211415

View Profile Personal Message (Offline)

Ignore
1715211415
Reply with quote  #2

1715211415
Report to moderator
1715211415
Hero Member
*
Offline Offline

Posts: 1715211415

View Profile Personal Message (Offline)

Ignore
1715211415
Reply with quote  #2

1715211415
Report to moderator
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 29, 2015, 07:58:02 PM
 #25842

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
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 29, 2015, 08:43:29 PM
 #25843

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)
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 29, 2015, 08:48:07 PM
 #25844

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
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
July 29, 2015, 08:48:36 PM
 #25845

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.
MoneroMooo
Legendary
*
Offline Offline

Activity: 1276
Merit: 1001


View Profile
July 29, 2015, 08:51:07 PM
 #25846

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 ?
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 29, 2015, 08:57:22 PM
 #25847

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.
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 29, 2015, 09:29:59 PM
 #25848


Excellent :-) Thx!
Biodom
Legendary
*
Offline Offline

Activity: 3752
Merit: 3869



View Profile
July 29, 2015, 10:00:32 PM
 #25849

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?
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 29, 2015, 10:22:31 PM
 #25850

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)?
bitrev
Sr. Member
****
Offline Offline

Activity: 335
Merit: 250


View Profile
July 29, 2015, 10:34:46 PM
 #25851

Just curious, is there a non DOS wallet available yet?
fluffypony
Donator
Legendary
*
Offline Offline

Activity: 1274
Merit: 1060


GetMonero.org / MyMonero.com


View Profile WWW
July 29, 2015, 10:38:17 PM
 #25852

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

oblox
Legendary
*
Offline Offline

Activity: 1442
Merit: 1018


View Profile
July 29, 2015, 10:38:18 PM
 #25853

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.
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 29, 2015, 11:50:38 PM
 #25854

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.
nLOGO-SeRvIcE
Jr. Member
*
Offline Offline

Activity: 52
Merit: 39


View Profile
July 30, 2015, 12:06:17 AM
 #25855

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
nikos64
Sr. Member
****
Offline Offline

Activity: 283
Merit: 250


View Profile
July 30, 2015, 02:00:46 AM
 #25856

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://bitcointalk.org/index.php?topic=653467
angelinus
Full Member
***
Offline Offline

Activity: 144
Merit: 100

Angelinus Translation & Social Media Services


View Profile
July 30, 2015, 02:15:59 AM
 #25857

Hi guys!
We offer affordable translating services & follower attraction services for your social media accounts.
Check us out!
Cheers!

https://bitcointalk.org/index.php?topic=1137936
luigi1111
Legendary
*
Offline Offline

Activity: 1105
Merit: 1000



View Profile
July 30, 2015, 04:43:59 AM
 #25858

Hi guys!
We offer affordable translating services & follower attraction services for your social media accounts.
Check us out!
Cheers!

https://bitcointalk.org/index.php?topic=1137936

Oh yes, this looks very legit. Thanks.
angelinus
Full Member
***
Offline Offline

Activity: 144
Merit: 100

Angelinus Translation & Social Media Services


View Profile
July 30, 2015, 07:49:43 AM
 #25859

Hi guys!
We offer affordable translating services & follower attraction services for your social media accounts.
Check us out!
Cheers!

https://bitcointalk.org/index.php?topic=1137936

Oh yes, this looks very legit. Thanks.

We also offer free services as we understand your concerns. Try it out and you won't regret!
Cheers!
MataKhobRazi
Hero Member
*****
Offline Offline

Activity: 876
Merit: 568


( ͡⊙ ͜ʖ ͡⊙)


View Profile
July 30, 2015, 10:00:13 AM
 #25860

I know that it is possible to save informations into the bitcoin blockchain like images, mp3, pdf etc. Is it possible to do the same with monero technology ?

Bitcoin : The Only One
Pages: « 1 ... 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 [1293] 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 ... 2123 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!