This commit is contained in:
2023-01-28 13:43:05 +03:00
parent b42b506c97
commit 12c51dc54f
+6 -2
View File
@@ -11,9 +11,13 @@ sudo mkdir -p /home/sem/nfs
sudo mount -t nfs -O uid=1000,iocharset=utf-8 prox4.astrader.net:/var/lib/vz /home/sem/nfs sudo mount -t nfs -O uid=1000,iocharset=utf-8 prox4.astrader.net:/var/lib/vz /home/sem/nfs
``` ```
задаем переменную HOME_DIR в bash_profile, еси не определена (в зависимости от проекта ) Задаем переменную HOME_DIR в bash_profile, еси не определена (в зависимости от проекта)
```bash ```bash
echo "export HOME_DIR=.umee" >> $HOME/.bash_profile HOME_DIR=".umee"
```
```bash
echo "export HOME_DIR=${HOME_DIR}" >> $HOME/.bash_profile
source $HOME/.bash_profile source $HOME/.bash_profile
``` ```