19 lines
445 B
Bash
Executable File
19 lines
445 B
Bash
Executable File
#!/bin/bash
|
|
sudo apt-get update
|
|
echo "set time zone"
|
|
echo "sudo timedatectl set-timezone Asia/Shanghai"
|
|
sudo timedatectl set-timezone Asia/Shanghai
|
|
|
|
echo ""
|
|
echo "sudo apt install munge slurm-wlm nis nfs-common -y"
|
|
sudo apt install munge slurm-wlm nis nfs-common -y
|
|
|
|
|
|
echo ""
|
|
echo "Install gcc etc."
|
|
echo "sudo apt install gcc g++ gfortran openmpi-bin libomp-dev -y"
|
|
sudo apt install gcc g++ gfortran openmpi-bin libomp-dev -y
|
|
|
|
echo "DONE"
|
|
|