Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
Updated 4/11/2018
Here's my experience of installing the NVIDIA CUDA kit 9.0 on a fresh install of Ubuntu Desktop 16.04.4 LTS.
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys| # ==================================================================================================================== # | |
| # Prepare # | |
| # - include dir: $HOME/ffmpeg_build/include # | |
| # - library dir: $HOME/ffmpeg_build/lib # | |
| # - binary dir: $HOME/ffmpeg_build/bin # | |
| # ==================================================================================================================== # | |
| # ==================================================================================================================== # | |
| # Linux FFmpeg installation: | |
| # ``` |
sudo pacman -Syu zsh
You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.
| LIB_ROOT=$HOME/libs | |
| CONFIG_ARGS=( | |
| --target-os=none # use none to prevent any os specific configurations | |
| --arch=x86_32 # use x86_32 to achieve minimal architectural optimization | |
| --enable-cross-compile # enable cross compile | |
| --disable-x86asm # disable x86 asm | |
| --disable-inline-asm # disable inline asm | |
| --disable-asm # disable asm | |
| --disable-stripping # disable stripping |
This steps should help working remotely with Sublime Text. They are meant to be incremental, just setting up SFTP will go a long way.
I have all my code on my laptop, edit locally and automatically push the files to my server.
I never edit "tracked" files on the server directly.
I sometimes modify untracked files on the server using rmate (see below).