Necessary software for Linux installation

Necessary software for Linux installation

development environment

apt-get install -y
openssh-server \
build-essentials \
python3 \
pythonpy \
python \
curl \
wget \
git \
sshfs \
screen \
tmux \
zsh \
vim 

Install oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

docker

docker
docker-compose

Refer to the official website for the installation method

oh-my-tmux

cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .

See: https://github.com/gpakosz/.tmux

Production Environment

apt-get install -y
git \
tmux \
openssh-server

Guess you like

Origin blog.csdn.net/still_night/article/details/106505143