Skip to content

Commit

Permalink
Update guides
Browse files Browse the repository at this point in the history
  • Loading branch information
lwYeo committed Feb 9, 2019
1 parent 799b4e2 commit f44dd11
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion SoliditySHA3Miner/MiningGuide/GuideForEthOS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
0a) .Net Core Runtime
* Ethos => run script 'sudo ./install-deps-ethOS.sh'

0b) Ensure CUDA 10.0 (Nvidia driver 410) is installed (ethOS 1.3.3)
0b) For ethOS 1.3.2, ensure CUDA 9.2 (Nvidia driver 396) is installed
* Run the following commands (root/sudo required)
sudo install-nv-beta
* This process will take about 5-10 minutes before rebooting itself.
Expand Down
5 changes: 0 additions & 5 deletions SoliditySHA3Miner/MiningGuide/GuideForHiveOS.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
### Before start mining on HiveOS

0) Prequisites :

0a) For NVIDIA cards, ensure CUDA 10.0 (NVIDIA driver 410) is installed
* Selfupgrade HiveOS to latest version

1) Add new "Custom" miner to "Flight Sheet" (Coin: ETH, select your wallet but DO NOT select a pool yet)

2) Enter Flight Sheet name of your choice
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
* Ubuntu => run script 'sudo ./install-deps.sh'
* Ethos => run script 'sudo ./install-deps-ethOS.sh'

0b) Nvidia driver (396, CUDA 9.2 onwards), and/or AMD driver.
0b) Nvidia driver, and/or AMD driver.

1 ) Update the following arguments that need to be changed in SoliditySHA3MinerSlave.bat/sh:

Expand Down
2 changes: 1 addition & 1 deletion SoliditySHA3Miner/MiningGuide/GuideForPoolMining.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Ubuntu => run script 'sudo ./install-deps.sh'
* Ethos => run script 'sudo ./install-deps-ethOS.sh'

0b) Nvidia driver (410, CUDA 10.0 onwards), and/or AMD driver.
0b) Nvidia driver, and/or AMD driver.

1) Clone 0xbtcPool.bat/0xbtcPool.sh file and open the editor for the cloned file.
* For ethOS, refer to 0xbtcPool-ethOS.sh/0xbtcPool-ethOS-screen.sh
Expand Down
2 changes: 1 addition & 1 deletion SoliditySHA3Miner/MiningGuide/GuideForSoloMining.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Ubuntu => run script 'sudo ./install-deps.sh'
* Ethos => run script 'sudo ./install-deps-ethOS.sh'

0b) Nvidia driver (410, CUDA 10.0 onwards), and/or AMD driver.
0b) Nvidia driver, and/or AMD driver.

1) Ensure that you have sufficient ETH stored in your mining address (ETH is required to mint tokens).

Expand Down
7 changes: 4 additions & 3 deletions SoliditySHA3Miner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,10 @@ public static void Print(string message, bool excludePrefix = false)

private static string GetHeader()
{
var cudaVersion = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "10.0" : "9.2";
return "\n" +
"*** " + GetApplicationName() + " " + GetApplicationVersion() + " by " + GetCompanyName() + " (" + GetApplicationYear() + ") ***\n" +
"*** Built with .NET Core 2.2 SDK, VC++ 2017, gcc 4.8.5, nVidia CUDA SDK 10.0 64-bit, and AMD APP SDK v3.0.130.135 (OpenCL)\n" +
$"*** {GetApplicationName()} {GetApplicationVersion()} by {GetCompanyName()} ({GetApplicationYear()}) ***\n" +
$"*** Built with .NET Core 2.2 SDK, VC++ 2017, gcc 4.8.5, nVidia CUDA SDK {cudaVersion} 64-bit, and AMD APP SDK v3.0.130.135 (OpenCL)\n" +
"\n" +
"Donation addresses:\n" +
"ETH (or any ERC 20/918 tokens) : 0x9172ff7884CEFED19327aDaCe9C470eF1796105c\n" +
Expand All @@ -188,7 +189,7 @@ private static string GetHeader()
private static void Main(string[] args)
{
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
Console.Title = string.Format("{0} {1} by {2} ({3})", GetApplicationName(), GetApplicationVersion(), GetCompanyName(), GetApplicationYear());
Console.Title = $"{GetApplicationName()} {GetApplicationVersion()} by {GetCompanyName()} ({GetApplicationYear()})";

if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Expand Down

0 comments on commit f44dd11

Please sign in to comment.