Commit 9bbe003365faff6857636d413e2e585c620eb08d
1 parent
6f151a822b
Exists in
master
[IMP] install/mondo.sh
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
install/mondo.sh
| 1 | 1 | #!/bin/bash |
| 2 | 2 | |
| 3 | 3 | # INSTALL mondo on Debian 8 Host .. must be root |
| 4 | +# URL: http://git.str8.biz/ecommun/shell/raw/master/install/mondo.sh | |
| 4 | 5 | |
| 5 | 6 | cd /tmp |
| 6 | 7 | |
| ... | ... | @@ -14,7 +15,7 @@ apt-get update |
| 14 | 15 | |
| 15 | 16 | apt-get install mondo nfs-common |
| 16 | 17 | |
| 17 | -mkdir /mnt/data && mount nfs.gjserver.de:/mnt/data /mnt/data | |
| 18 | +mkdir /mnt/data && modprobe nfs && mount nfs.gjserver.de:/mnt/data /mnt/data | |
| 18 | 19 | |
| 19 | 20 | cd ~/ |
| 20 | 21 |