Skip to content

Commit ee5d981

Browse files
committed
add script
1 parent 48d014f commit ee5d981

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

02-disable-lightdm.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
echo "After this, you need to type \"Ctrl+Alt+F1\" to enable CUI to continue"
4+
echo -n "Please hit enter key to continue! [Enter]"
5+
read
6+
sudo service lightdm stop

03-run-cuda-installer.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
mkdir -p temp
4+
if [ ! -e "temp/cuda10.run" ]; then
5+
wget https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux -O temp/cuda10.run
6+
chmod 705 ./temp/cuda10.run
7+
fi
8+
sudo ./temp/cuda10.run

setup-cuda.sh

-5
This file was deleted.

0 commit comments

Comments
 (0)