0% found this document useful (0 votes)
55 views2 pages

Kudu

The document outlines steps to install various software packages and tools like Node.js, Docker, Nginx, and Yarn on a Linux system using apt. It adds keys and repositories, updates packages, installs packages, downloads additional files, configures services, and checks versions at the end.

Uploaded by

tian
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views2 pages

Kudu

The document outlines steps to install various software packages and tools like Node.js, Docker, Nginx, and Yarn on a Linux system using apt. It adds keys and repositories, updates packages, installs packages, downloads additional files, configures services, and checks versions at the end.

Uploaded by

tian
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

apt install curl wget -y

sudo add-apt-repository multiverse


curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -

curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee


/usr/share/keyrings/yarnkey.gpg >/dev/null

echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian


stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o


/usr/share/keyrings/docker-archive-keyring.gpg

curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee


/usr/share/keyrings/yarnkey.gpg >/dev/null

echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian


stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o


/usr/share/keyrings/docker-archive-keyring.gpg

echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-
archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list >
/dev/null

wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add -

echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-


stable.list

apt update -y
apt upgrade -y

apt install gcc g++ make docker.io htop net-tools ssh supervisor curl postgresql-
client postgresql-client-common nginx -y

apt install libavcodec58 jsvc wget nano docker-compose ffmpeg poppler-utils ubuntu-
restricted-extras -y

apt install libdvdnav4 libdvd-pkg gstreamer1.0-plugins-bad gstreamer1.0-plugins-


ugly -y

sudo dpkg-reconfigure libdvd-pkg

sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-


compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

sudo chmod +x /usr/local/bin/docker-compose

rm -rf /usr/bin/docker-compose

sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

wget
https://static.tp-link.com/2020/202004/20200420/omada_v3.2.10_linux_x64_20200330135
119.deb

dpkg -i omada_v3.2.10_linux_x64_20200330135119.deb

apt install anydesk nodejs -y

systemctl disable supervisor


systemctl enable nginx
systemctl enable docker

systemctl enable tpeap


systemctl enable anydesk
systemctl enable cron

npm upgrade npm -g


npm install -g npm
npm install -g yarn

#cek versi#
node -v
npm -v
yarn -v
docker -v
docker-compose -v
nginx -v
anydesk --version
docker-compose --version

You might also like