Author

Topic: [ANN] AEON [2019-09-27: Upgrade to version 0.13.0.0 ASAP HF@1146200 Oct 25] - page 128. (Read 625666 times)

legendary
Activity: 2968
Merit: 1198
I would be very careful mining anything on a laptop. With that said, AEON is one of the easiest on the system CPU minable coins that I am aware of so you may be ok if you keep a close eye on it.

Why is mining on a laptop not a good idea and what needs to be have an eye kept on it?

It can overheat, if the laptop isn't well designed (or possibly other problems such as vents blocked)

As long as you are sure it won't overhead, mining on a laptop can be extremely efficient.

newbie
Activity: 49
Merit: 0
I would be very careful mining anything on a laptop. With that said, AEON is one of the easiest on the system CPU minable coins that I am aware of so you may be ok if you keep a close eye on it.

Why is mining on a laptop not a good idea and what needs to be have an eye kept on it?
sr. member
Activity: 1246
Merit: 274
I would be very careful mining anything on a laptop. With that said, AEON is one of the easiest on the system CPU minable coins that I am aware of so you may be ok if you keep a close eye on it.
legendary
Activity: 2968
Merit: 1198
I will buy a new laptop this weekend and I want to ask what is the minimum specifications for Aeon to run? As I understand it I should have at least 8gb of RAM and at least an Intel i5 processor to sync the blockchain correct?

That is a good baseline. You can get away with less but it becomes more painful.
legendary
Activity: 3010
Merit: 1460
I will buy a new laptop this weekend and I want to ask what is the minimum specifications for Aeon to run? As I understand it I should have at least 8gb of RAM and at least an Intel i5 processor to sync the blockchain correct?
full member
Activity: 231
Merit: 101
Hi there,

I'm a newbie with aeon and mining. Now i'm trying to mine AEON on my free Server (Debian 8, 24 Core E5-2620, 24GB ram).
I'm using aeon-stak-cpu to mine, but there is a problem: my miner only use a single thread and the hash is low
[2017-05-25 11:14:29] : Result accepted by the pool.

HASHRATE REPORT
| ID | 2.5s |  60s |  15m |
|  0 | 155.9 | 155.8 | (na) |
---------------------------
Totals:   155.9 155.8 (na) H/s
Highest:  160.6 H/s


I change "cpu_thread_num" on configuration file aeon-stak-cpu/config.txt to other number, but the tool say: "[2017-05-25 11:19:03] : Invalid config file. Your CPU config array has 1 members, while you want to use 2 threads."

So, what is wrong with me?

Thanks in advance!


You need to add the threads that you wish to mine with. It seems to do best if you alternate every other thread, choosing the actual cores, I'll show how I have it set on my Ryzen 1700X, 16 thread CPU. You would just need to extend the part at the bottom to have all 24 cores included. *I don't know if the miner supports that many cores or not...

/*
 * Number of threads. You can configure them below. Cryptonight uses 2MB of memory, so the optimal setting
 * here is the size of your L3 cache divided by 2. Intel mid-to-high end desktop processors have 2MB of L3
 * cache per physical core. Low end cpus can have 1.5 or 1 MB while Xeons can have 2, 2.5 or 3MB per core.
 */
"cpu_thread_num" : 8,

/*
 * Thread configuration for each thread. Make sure it matches the number above.
 * low_power_mode - This mode will double the cache usage, and double the single thread performance. It will
 *                  consume much less power (as less cores are working), but will max out at around 80-85% of
 *                  the maximum performance.
 *
 * no_prefetch -    This mode meant for large pages only. It will generate an error if running on slow memory
 *                  Some sytems can gain up to extra 5% here, but sometimes it will have no difference or make
 *                  things slower.
 *
 * affine_to_cpu -  This can be either false (no affinity), or the CPU core number. Note that on hyperthreading
 *                  systems it is better to assign threads to physical cores. On Windows this usually means selecting
 *                  even or odd numbered cpu numbers. For Linux it will be usually the lower CPU numbers, so for a 4
 *                  physical core CPU you should select cpu numbers 0-3.
 *
 */
"cpu_threads_conf" : [
   { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 0 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 2 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 4 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 6 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 8 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 10 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 12 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 14 },
],

Hey thanks for this ! Btw is the stak miner worth running on NON- AES systems?
sr. member
Activity: 1246
Merit: 274
Hi there,

I'm a newbie with aeon and mining. Now i'm trying to mine AEON on my free Server (Debian 8, 24 Core E5-2620, 24GB ram).
I'm using aeon-stak-cpu to mine, but there is a problem: my miner only use a single thread and the hash is low
[2017-05-25 11:14:29] : Result accepted by the pool.

HASHRATE REPORT
| ID | 2.5s |  60s |  15m |
|  0 | 155.9 | 155.8 | (na) |
---------------------------
Totals:   155.9 155.8 (na) H/s
Highest:  160.6 H/s


I change "cpu_thread_num" on configuration file aeon-stak-cpu/config.txt to other number, but the tool say: "[2017-05-25 11:19:03] : Invalid config file. Your CPU config array has 1 members, while you want to use 2 threads."

So, what is wrong with me?

Thanks in advance!


You need to add the threads that you wish to mine with. It seems to do best if you alternate every other thread, choosing the actual cores, I'll show how I have it set on my Ryzen 1700X, 16 thread CPU. You would just need to extend the part at the bottom to have all 24 cores included. *I don't know if the miner supports that many cores or not...

/*
 * Number of threads. You can configure them below. Cryptonight uses 2MB of memory, so the optimal setting
 * here is the size of your L3 cache divided by 2. Intel mid-to-high end desktop processors have 2MB of L3
 * cache per physical core. Low end cpus can have 1.5 or 1 MB while Xeons can have 2, 2.5 or 3MB per core.
 */
"cpu_thread_num" : 8,

/*
 * Thread configuration for each thread. Make sure it matches the number above.
 * low_power_mode - This mode will double the cache usage, and double the single thread performance. It will
 *                  consume much less power (as less cores are working), but will max out at around 80-85% of
 *                  the maximum performance.
 *
 * no_prefetch -    This mode meant for large pages only. It will generate an error if running on slow memory
 *                  Some sytems can gain up to extra 5% here, but sometimes it will have no difference or make
 *                  things slower.
 *
 * affine_to_cpu -  This can be either false (no affinity), or the CPU core number. Note that on hyperthreading
 *                  systems it is better to assign threads to physical cores. On Windows this usually means selecting
 *                  even or odd numbered cpu numbers. For Linux it will be usually the lower CPU numbers, so for a 4
 *                  physical core CPU you should select cpu numbers 0-3.
 *
 */
"cpu_threads_conf" : [
   { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 0 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 2 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 4 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 6 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 8 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 10 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 12 },
        { "low_power_mode" : true, "no_prefetch" : false, "affine_to_cpu" : 14 },
],
full member
Activity: 231
Merit: 101
Regarding the stak-cpu miner; roughly what kind of increase does it get? I haven't used it yet because I didn't want to make all the lock-pages settings if it wasn't really worth the effort, I mine other coins with my rigs and was worried it might effect those miners and I would have to undo it.

Any pre and post comparisons would be appreciated, thanks Smiley

Many thanks to those of you who have replied to this Smiley I still have yet to try it out, ran into some confusion large page support the first time I tried it on Win 10 , local group policy layout is different than the instructions at some point. Going to try it out on my older Win rigs and my Linux rigs.
legendary
Activity: 2646
Merit: 2842
Shitcoin Minimalist
Hello gentlemen. How closely will this coin track Monero features. For instance, will ring CT be coming to Aeon?
newbie
Activity: 2
Merit: 0
Hi there,

I'm a newbie with aeon and mining. Now i'm trying to mine AEON on my free Server (Debian 8, 24 Core E5-2620, 24GB ram).
I'm using aeon-stak-cpu to mine, but there is a problem: my miner only use a single thread and the hash is low
[2017-05-25 11:14:29] : Result accepted by the pool.

HASHRATE REPORT
| ID | 2.5s |  60s |  15m |
|  0 | 155.9 | 155.8 | (na) |
---------------------------
Totals:   155.9 155.8 (na) H/s
Highest:  160.6 H/s


I change "cpu_thread_num" on configuration file aeon-stak-cpu/config.txt to other number, but the tool say: "[2017-05-25 11:19:03] : Invalid config file. Your CPU config array has 1 members, while you want to use 2 threads."

So, what is wrong with me?

Thanks in advance!
hero member
Activity: 1923
Merit: 538
...

Thanks for the complement by the way. We are just trying to build a solid coin here, without a lot of noise and drama.


Speaking of drama, I heard on tweeter that smooth has a MAJOR announcement coming tomorrow...

YUGE!

It will be announced on the AEON pump group teamspeak.

In case anyone doesn't realize, this is a joke

always read the fine print.
legendary
Activity: 2968
Merit: 1198
...

Thanks for the complement by the way. We are just trying to build a solid coin here, without a lot of noise and drama.


Speaking of drama, I heard on tweeter that smooth has a MAJOR announcement coming tomorrow...

YUGE!

It will be announced on the AEON pump group teamspeak.

In case anyone doesn't realize, this is a joke
legendary
Activity: 3136
Merit: 1116
...

Thanks for the complement by the way. We are just trying to build a solid coin here, without a lot of noise and drama.


Speaking of drama, I heard on tweeter that smooth has a MAJOR announcement coming tomorrow...
legendary
Activity: 2968
Merit: 1198
AEON was listed at Hitbtc today!!!!!!!!!!
Very good news!

So coin should became much more popular and a little bit more expensive ;-)

Not much volume there https://coinmarketcap.com/exchanges/hitbtc/

Compare

https://coinmarketcap.com/exchanges/bittrex/

https://coinmarketcap.com/exchanges/poloniex/

Poloniex seems a possibility. Aeon is the highest class of the cryptonote coins, it never went through a scumbag phase like Monero, or a protracted 'no dev but lets cover that fact with noise' phase like boolberry.

Asia is going berzerk with coins at the moment. Aeon is a solid coin, if it gets some Asian exposure soon it could be a very strong coin. Smooth has always been a gentleman online, aeon supporters have always been civilized. The other major cryptonote coins cannot say that, and factors like that might be important eventually.

Actually what would be great is an exchange in Japan or Korea.

I know everyone is all over poloniex here but if you look at where the trading volumes are exploding, Poloniex may be yesterday's news. They seem to be up to the task of scaling up their operation too.

Thanks for the complement by the way. We are just trying to build a solid coin here, without a lot of noise and drama.
member
Activity: 78
Merit: 10
AEON was listed at Hitbtc today!!!!!!!!!!
Very good news!

So coin should became much more popular and a little bit more expensive ;-)

Not much volume there https://coinmarketcap.com/exchanges/hitbtc/

Compare

https://coinmarketcap.com/exchanges/bittrex/

https://coinmarketcap.com/exchanges/poloniex/

Poloniex seems a possibility. Aeon is the highest class of the cryptonote coins, it never went through a scumbag phase like Monero, or a protracted 'no dev but lets cover that fact with noise' phase like boolberry.

Asia is going berzerk with coins at the moment. Aeon is a solid coin, if it gets some Asian exposure soon it could be a very strong coin. Smooth has always been a gentleman online, aeon supporters have always been civilized. The other major cryptonote coins cannot say that, and factors like that might be important eventually.
eeX
hero member
Activity: 961
Merit: 500
Soldo.IN [SLD]
AEON was listed at Hitbtc today!!!!!!!!!!
Very good news!

So coin should became much more popular and a little bit more expensive ;-)
sr. member
Activity: 1246
Merit: 274
Pushing $0.50 per coin right now; that's quite the growth spike. Smiley Overall though AEON has been climbing steadily, so we shall have to wait to see if it continues on upwards to $1/coin within the next 6 months.
member
Activity: 78
Merit: 10
Looks ripe to get back on Poloniex.
pa
hero member
Activity: 528
Merit: 501
There was a question raised by the recent cryptonote bug and exploit that was discovered and reported by Monero. The fix was integrated into AEON some time ago, and even though I had already done so, I went ahead and again did a full scan of the chain today to double check that there were no exploits used in AEON.



Good to know AEON is sound.
legendary
Activity: 2968
Merit: 1198
There was a question raised by the recent cryptonote bug and exploit that was discovered and reported by Monero. The fix was integrated into AEON some time ago, and even though I had already done so, I went ahead and again did a full scan of the chain today to double check that there were no exploits used in AEON.

Jump to: