Add bin to mount tmp14days shared drive

This commit is contained in:
Thomas Dehaeze 2019-07-20 16:32:22 +02:00
parent 4a8a584a8c
commit 9edeeb48d1

View File

@ -648,3 +648,14 @@ The sed piece just removes the colon from the provided prompt: =rofi -p= already
echo "Command Failed"
fi
#+end_src
* Mount TMP14DAYS
:PROPERTIES:
:header-args: :tangle ~/bin/mnt_tmp_14_days
:header-args+: :comments both :mkdirp yes
:header-args+: :shebang "#!/usr/bin/env bash"
:END:
#+begin_src bash
sudo -A mkdir ~/tmp_14_days;
sudo -A mount -o rw,relatime,vers=3,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=160.103.232.103,mountvers=3,mountport=597,mountproto=tcp,local_lock=none,addr=160.103.232.103 rnice:/hz/tmp_14_days ~/tmp_14_days;
#+end_src