ubuntu 일반 소프트웨어 설치(개인 메모용)

1606 단어 ubuntu
서버: 아리운 서버 Ubuntu18.04.전체적으로 말하면 apt-get update는 서버에 접근하여 업데이트를 하면 소프트웨어와 버전 정보를 얻을 수 있지만 업데이트 가능한list만 제시합니다. 구체적인 업데이트는 apt-get upgrade를 통해 해야 합니다. apt-get upgrade는 소프트웨어를 업데이트할 수 있습니다. -y의 역할: 패키지를 설치할 때 y/n을 묻습니다. 이 매개 변수는 기본 y를 묻는 것입니다.
apt-get update -y  
apt-get upgrade -y

yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -

echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt update && sudo apt install yarn

yarn 타오바오 미러 전환
yarn config set registry https://registry.npm.taobao.org

git
apt install git

nodejs
curl -sL https://deb.nodesource.com/setup\_12.x | sudo -E bash -

sudo apt-get install -y nodejs

docker
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker

미러 다운로드 지연
vim /etc/docker/daemon.json
{
    "registry-mirrors":["https://almtd3fa.mirror.aliyuncs.com"]      
}

apt-get update와 upgrade의 차이 https://www.cnblogs.com/spll/...
docker run --name vscode1 -it -p 8081:8080 -v "/var/local/vscode/project:/home/coder/project"codercom/code-server --auth none
nginx
sudo apt install nginx

좋은 웹페이지 즐겨찾기