Jump to content

Mining with Genoil's on Ubuntu

 I've been having difficulties on Ubuntu setting up mining. I have 2x RX 580 8GB cards running on the latest Ubuntu distro (16.04 LTS) with ample specs and storage available. My issue is that while compiling Genoil's miner, I ran into issues on the following command:

 

udo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjsonrpccpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y

Leaving me to have to install each individually (which worked). I managed to do the rest of the building correctly and went for OpenCL only (as no Nvidia cards). However when trying to start mining using the instructions on https://ethermine.org/, I was unable to create the bat file (or sh file) using the following parameters:

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
ethminer.exe --farm-recheck 200 -G -S asia1.ethermine.org:4444 -FS us2.ethermine.org:4444 -O 33205e99c796d3a3333b84685c3f3f20e41d3d7e.miner1

As when I put everything in a file, named mine.sh, upon launching it said that the commands could not be found.

 

How can I start mining within the ethermine pool - am I missing something.

 

(Build instructions here: https://github.com/Genoil/cpp-ethereum/ )

Thanks!

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

Remove .exe at the end? Just a thought

idk

Link to comment
Share on other sites

Link to post
Share on other sites

10 minutes ago, Droidbot said:

Remove .exe at the end? Just a thought

 

Already Tried, still get the same output:

 

superuser@miner:~$ cd /home/superuser/Desktop/cpp-ethereum-master/build/cpp-ethereum/
superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 1: setx: command not found
mine.sh: line 2: setx: command not found
mine.sh: line 3: setx: command not found
mine.sh: line 4: setx: command not found
mine.sh: line 5: setx: command not found
Invalid argument: -S

 

 

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

1 hour ago, ThatCoolBlueKidd said:

 

Already Tried, still get the same output:

 

superuser@miner:~$ cd /home/superuser/Desktop/cpp-ethereum-master/build/cpp-ethereum/
superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 1: setx: command not found
mine.sh: line 2: setx: command not found
mine.sh: line 3: setx: command not found
mine.sh: line 4: setx: command not found
mine.sh: line 5: setx: command not found
Invalid argument: -S

 

 

 

You need to use export not setx , setx is for windows

 

export GPU_FORCE_64BIT_PTR=0
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100

Link to comment
Share on other sites

Link to post
Share on other sites

7 hours ago, scorpio18 said:

You need to use export not setx , setx is for windows

 

export GPU_FORCE_64BIT_PTR=0
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100

And the last line with the invalid -S argument?

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

6 minutes ago, ThatCoolBlueKidd said:

And the last line with the invalid -S argument?

I don't know why its give you error about -S , it should work , try again maybe it will work

Link to comment
Share on other sites

Link to post
Share on other sites

./ethminer --farm-recheck 200 -G -S asia1.ethermine.org:4444 -O 33205e99c796d3a3333b84685c3f3f20e41d3d7e.rig1

[Out-of-date] Want to learn how to make your own custom Windows 10 image?

 

Desktop: AMD R9 3900X | ASUS ROG Strix X570-F | Radeon RX 5700 XT | EVGA GTX 1080 SC | 32GB Trident Z Neo 3600MHz | 1TB 970 EVO | 256GB 840 EVO | 960GB Corsair Force LE | EVGA G2 850W | Phanteks P400S

Laptop: Intel M-5Y10c | Intel HD Graphics | 8GB RAM | 250GB Micron SSD | Asus UX305FA

Server 01: Intel Xeon D 1541 | ASRock Rack D1541D4I-2L2T | 32GB Hynix ECC DDR4 | 4x8TB Western Digital HDDs | 32TB Raw 16TB Usable

Server 02: Intel i7 7700K | Gigabye Z170N Gaming5 | 16GB Trident Z 3200MHz

Link to comment
Share on other sites

Link to post
Share on other sites

3 hours ago, DeadEyePsycho said:

./ethminer --farm-recheck 200 -G -S asia1.ethermine.org:4444 -O 33205e99c796d3a3333b84685c3f3f20e41d3d7e.rig1

 

11 hours ago, scorpio18 said:

I don't know why its give you error about -S , it should work , try again maybe it will work

 

Changed the Setx command to export and it worked perfectly - however now i'm still having issues with the unknown " -S " command in the last line.

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

4 minutes ago, ThatCoolBlueKidd said:

 

 

Changed the Setx command to export and it worked perfectly - however now i'm still having issues with the unknown " -S " command in the last line.

It's the -FS that is giving you the issue.

[Out-of-date] Want to learn how to make your own custom Windows 10 image?

 

Desktop: AMD R9 3900X | ASUS ROG Strix X570-F | Radeon RX 5700 XT | EVGA GTX 1080 SC | 32GB Trident Z Neo 3600MHz | 1TB 970 EVO | 256GB 840 EVO | 960GB Corsair Force LE | EVGA G2 850W | Phanteks P400S

Laptop: Intel M-5Y10c | Intel HD Graphics | 8GB RAM | 250GB Micron SSD | Asus UX305FA

Server 01: Intel Xeon D 1541 | ASRock Rack D1541D4I-2L2T | 32GB Hynix ECC DDR4 | 4x8TB Western Digital HDDs | 32TB Raw 16TB Usable

Server 02: Intel i7 7700K | Gigabye Z170N Gaming5 | 16GB Trident Z 3200MHz

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, DeadEyePsycho said:

It's the -FS that is giving you the issue.

 

The FS argument was removed:

 

export GPU_FORCE_64BIT_PTR=0
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100 
ethminer --farm-recheck 200 -G -S asia1.ethermine.org:4444 -O 33205e99c796d3a3333b84685c3f3f20e41d3d7e.rig1 

 

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

You need the ./ in front like I posted.

[Out-of-date] Want to learn how to make your own custom Windows 10 image?

 

Desktop: AMD R9 3900X | ASUS ROG Strix X570-F | Radeon RX 5700 XT | EVGA GTX 1080 SC | 32GB Trident Z Neo 3600MHz | 1TB 970 EVO | 256GB 840 EVO | 960GB Corsair Force LE | EVGA G2 850W | Phanteks P400S

Laptop: Intel M-5Y10c | Intel HD Graphics | 8GB RAM | 250GB Micron SSD | Asus UX305FA

Server 01: Intel Xeon D 1541 | ASRock Rack D1541D4I-2L2T | 32GB Hynix ECC DDR4 | 4x8TB Western Digital HDDs | 32TB Raw 16TB Usable

Server 02: Intel i7 7700K | Gigabye Z170N Gaming5 | 16GB Trident Z 3200MHz

Link to comment
Share on other sites

Link to post
Share on other sites

2 minutes ago, DeadEyePsycho said:

You need the ./ in front like I posted.

 

Now I get this error: (tried once with / and once with ./)

 

superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 6: /ethminer: No such file or directory


superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 6: ./ethminer: Is a directory
superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$

 

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, ThatCoolBlueKidd said:

 

Now I get this error: (tried once with / and once with ./)

 

superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 6: /ethminer: No such file or directory


superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$ bash mine.sh
mine.sh: line 6: ./ethminer: Is a directory
superuser@miner:~/Desktop/cpp-ethereum-master/build/cpp-ethereum$

 

played with directories and it worked - now I'm 'mining' at 0MH/s

 

Spoiler

Genoil's ethminer 0.9.41-genoil-1.1.7
=====================================================================
Forked from github.com/ethereum/cpp-ethereum
CUDA kernel ported from Tim Hughes' OpenCL kernel
With contributions from nicehash, nerdralph, RoBiK and sp_

Please consider a donation to:
ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d

[OPENCL]:Found suitable OpenCL device [Ellesmere] with 3221225472 bytes of GPU memory
  ℹ  09:59:28|ethminer  Connecting to stratum server asia1.ethermine.org:4444
  ℹ  09:59:30|stratum  Connected to stratum server asia1.ethermine.org : 4444
  ℹ  09:59:30|stratum  Starting farm
  ℹ  09:59:30|stratum  Subscribed to stratum server
  ℹ  09:59:30|stratum  Authorized worker 33205e99c796d3a3333b84685c3f3f20e41d3d7e.rig1
  ℹ  09:59:30|stratum  Received new job #adef61ed
  ℹ  09:59:30|openclminer0  set work; seed: #647f6619, target:  #0000000112e0
  ℹ  09:59:30|openclminer0  Initialising miner...
  ℹ  09:59:30|openclminer1  set work; seed: #647f6619, target:  #0000000112e0
  ℹ  09:59:30|openclminer1  Initialising miner...
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:36|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  ℹ  09:59:36|stratum  Received new job #1aef3342
[OPENCL]:Using platform: AMD Accelerated Parallel Processing
[OPENCL]:Using device: Ellesmere(OpenCL 1.2 AMD-APP (2348.3))
[OPENCL]:Using platform: AMD Accelerated Parallel Processing
[OPENCL]:Using device: Ellesmere(OpenCL 1.2 AMD-APP (2348.3))
[OPENCL]:clCreateCommandQueue(-6)
[OPENCL]:clEnqueueWriteBuffer(-36)
[OPENCL]:clCreateCommandQueue(-6)
[OPENCL]:clEnqueueWriteBuffer(-36)

 

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

have you tried Windows 7 mining? 

legitimate question, it apparently runs quite well.

idk

Link to comment
Share on other sites

Link to post
Share on other sites

Just now, Droidbot said:

have you tried Windows 7 mining? 

legitimate question, it apparently runs quite well.

building a windows iso USB as I'm typing this as I've wasted like 2 days compiling and got a lacklustre result. Would rather go to windows and at least be able to OC. Will use my win10 rig to build a windows 10 iso and then downgrade

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

30 minutes ago, ThatCoolBlueKidd said:

played with directories and it worked - now I'm 'mining' at 0MH/s

 

  Reveal hidden contents

Genoil's ethminer 0.9.41-genoil-1.1.7
=====================================================================
Forked from github.com/ethereum/cpp-ethereum
CUDA kernel ported from Tim Hughes' OpenCL kernel
With contributions from nicehash, nerdralph, RoBiK and sp_

Please consider a donation to:
ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d

[OPENCL]:Found suitable OpenCL device [Ellesmere] with 3221225472 bytes of GPU memory
  ℹ  09:59:28|ethminer  Connecting to stratum server asia1.ethermine.org:4444
  ℹ  09:59:30|stratum  Connected to stratum server asia1.ethermine.org : 4444
  ℹ  09:59:30|stratum  Starting farm
  ℹ  09:59:30|stratum  Subscribed to stratum server
  ℹ  09:59:30|stratum  Authorized worker 33205e99c796d3a3333b84685c3f3f20e41d3d7e.rig1
  ℹ  09:59:30|stratum  Received new job #adef61ed
  ℹ  09:59:30|openclminer0  set work; seed: #647f6619, target:  #0000000112e0
  ℹ  09:59:30|openclminer0  Initialising miner...
  ℹ  09:59:30|openclminer1  set work; seed: #647f6619, target:  #0000000112e0
  ℹ  09:59:30|openclminer1  Initialising miner...
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:31|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:32|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:33|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:34|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:35|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  m  09:59:36|ethminer  Mining on PoWhash #adef61ed : 0.00MH/s [A0+0:R0+0:F0]
  ℹ  09:59:36|stratum  Received new job #1aef3342
[OPENCL]:Using platform: AMD Accelerated Parallel Processing
[OPENCL]:Using device: Ellesmere(OpenCL 1.2 AMD-APP (2348.3))
[OPENCL]:Using platform: AMD Accelerated Parallel Processing
[OPENCL]:Using device: Ellesmere(OpenCL 1.2 AMD-APP (2348.3))
[OPENCL]:clCreateCommandQueue(-6)
[OPENCL]:clEnqueueWriteBuffer(-36)
[OPENCL]:clCreateCommandQueue(-6)
[OPENCL]:clEnqueueWriteBuffer(-36)

 

Did you let it build the DAG?

[Out-of-date] Want to learn how to make your own custom Windows 10 image?

 

Desktop: AMD R9 3900X | ASUS ROG Strix X570-F | Radeon RX 5700 XT | EVGA GTX 1080 SC | 32GB Trident Z Neo 3600MHz | 1TB 970 EVO | 256GB 840 EVO | 960GB Corsair Force LE | EVGA G2 850W | Phanteks P400S

Laptop: Intel M-5Y10c | Intel HD Graphics | 8GB RAM | 250GB Micron SSD | Asus UX305FA

Server 01: Intel Xeon D 1541 | ASRock Rack D1541D4I-2L2T | 32GB Hynix ECC DDR4 | 4x8TB Western Digital HDDs | 32TB Raw 16TB Usable

Server 02: Intel i7 7700K | Gigabye Z170N Gaming5 | 16GB Trident Z 3200MHz

Link to comment
Share on other sites

Link to post
Share on other sites

7 hours ago, DeadEyePsycho said:

Did you let it build the DAG?

already built. When I do ethminer -G -M I get a result, it's only actual mining that has issues.

NCASE M1 i5-9600k  GTX 1080 FE Z370N-WIFI SF600 NH-U9S LPX 32GB 960EVO

I'm a self-identifying Corsair Nvidia Fanboy; Get over it.

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, ThatCoolBlueKidd said:

already built. When I do ethminer -G -M I get a result, it's only actual mining that has issues.

I just remember using it and it took a minute to actually start hashing.

[Out-of-date] Want to learn how to make your own custom Windows 10 image?

 

Desktop: AMD R9 3900X | ASUS ROG Strix X570-F | Radeon RX 5700 XT | EVGA GTX 1080 SC | 32GB Trident Z Neo 3600MHz | 1TB 970 EVO | 256GB 840 EVO | 960GB Corsair Force LE | EVGA G2 850W | Phanteks P400S

Laptop: Intel M-5Y10c | Intel HD Graphics | 8GB RAM | 250GB Micron SSD | Asus UX305FA

Server 01: Intel Xeon D 1541 | ASRock Rack D1541D4I-2L2T | 32GB Hynix ECC DDR4 | 4x8TB Western Digital HDDs | 32TB Raw 16TB Usable

Server 02: Intel i7 7700K | Gigabye Z170N Gaming5 | 16GB Trident Z 3200MHz

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×