【Ubuntu】基本の初期設定
対象読者
那些转换为Ubuntu或者开始使用双引导的人,
在服务器端的项目中采用Docker来启动,
而在前端则不使用Docker,使用npm~的人。
OS
Ubuntu 20.04
(注意:支持将在2025年4月结束)
复制粘贴这些内容,简单快速地开始开发吧。
apt update
apt upgrade
vim
sudo apt-get install vim
谷歌浏览器
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
vscode
sudo snap install code --classic
sudo apt install ./[入手したdebファイル]
docker
sudo apt install \
curl \
apt-transport-https \
gnupg-agent \
software-properties-common \
ca-certificates
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo mkdir -p /etc/systemd/system/docker.service.d
sudo vim /etc/systemd/system/docker.service.d/http-proxy.conf
# プロキシーサーバーは利用しないためコメントアウト
[Service]
# Environment="HTTP_PROXY=http://proxy.example.com:8080/"
# Environment="HTTPS_PROXY=http://proxy.example.com:8080/"
sudo systemctl daemon-reload
sudo systemctl restart docker
systemctl show --property=Environment docker
sudo docker run --rm hello-world
sudo docker rmi hello-world
docker compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.26.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
git
sudo apt-get install git
git config --global user.name "ユーザ名"
git config --global user.email メールアドレス
树木
sudo apt install tree
npm
sudo apt install npm
如果有任何不足之处,请您提出指正,将不胜感激m(_ _)m
Ububtuライフを謳歌しましょう!