Created
September 4, 2019 04:25
-
-
Save demotomohiro/e4d64f68ddbe37dbbf35bc4d41215d10 to your computer and use it in GitHub Desktop.
レイトレ合宿7のAWSでインスタンス立ち上げ時に実行するスクリプト
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c5n.18xlarge Windows Server | |
<powershell> | |
(New-Object System.Net.WebClient).DownloadFile("https://aka.ms/vs/16/release/vc_redist.x64.exe", "$home/vc_redist.x64.exe") | |
& "$home/vc_redist.x64.exe" /install /quiet | |
iwr -useb get.scoop.sh | iex | |
scoop install python git | |
git clone https://github.com/demotomohiro/rcauto.git $home/rcauto | |
mkdir $home/rctest | |
</powershell> | |
p3.16xlarge Windows Server | |
<powershell> | |
(New-Object System.Net.WebClient).DownloadFile("https://aka.ms/vs/16/release/vc_redist.x64.exe", "$home/vc_redist.x64.exe") | |
& "$home/vc_redist.x64.exe" /install /quiet | |
iwr -useb get.scoop.sh | iex | |
scoop install python git | |
git clone https://github.com/demotomohiro/rcauto.git $home/rcauto | |
mkdir $home/rctest | |
(New-Object System.Net.WebClient).DownloadFile("http://jp.download.nvidia.com/tesla/426.00/426.00-tesla-desktop-win10-64bit-international.exe", "$home/nvdriver.exe") | |
</powershell> | |
Tesla V100のドライバはGUI操作が必要なようなので、インスタンス起動後にインストールする。 | |
p3.16xlargeではC:\Windows\System32\DriverStore\FileRepository\nv_dispwi.inf_amd64_~にあるnvrtum64.dllとnvoptix.dllをC:\Windows\System32へコピー。 | |
これをやらないとOptixが使えない。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment