VS Code on iPad Pro: Difference between revisions
Jump to navigation
Jump to search
Line 69: | Line 69: | ||
LocalForward 8080 127.0.0.1:8080 | LocalForward 8080 127.0.0.1:8080 | ||
ExitOnForwardFailure yes | ExitOnForwardFailure yes | ||
|} | |||
== Mobile Shell == | |||
{| | |||
| | |||
sudo apt update | |||
sudo apt list --upgradable | |||
| | |||
sudo apt upgrade | |||
sudo apt install mosh | |||
|} | |} | ||
Revision as of 10:48, 2 April 2022
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm -g install yarn
yarn global add code-server
~/.yarn/bin/code-server
| |
| |
vim ~/.config/code-server/config.yaml | |
| |
bind-addr: 127.0.0.1:8080
auth: none
password: academia
cert: false
|
bind-addr: 127.0.0.1:8080
auth: password
password: academia
cert: false
|
| |
sudo vim /etc/systemd/system/code-server.service [Unit]
Description=code-server
After=network.target
[Service]
User=ubuntu
Group=ubuntu
WorkingDirectory=/home/ubuntu
Environment="PATH=/usr/bin"
ExecStart=/home/ubuntu/.yarn/bin/code-server
[Install]
WantedBy=multi-user.target
sudo systemctl disable code-server.service sudo systemctl enable code-server.service sudo systemctl status code-server.service sudo systemctl start code-server.service sudo systemctl stop code-server.service blink » config » Hosts » New Host » SSH Config » New Host » Save # Compression no LocalForward 8080 127.0.0.1:8080 ExitOnForwardFailure yes |
Mobile Shell
sudo apt update sudo apt list --upgradable |
sudo apt upgrade sudo apt install mosh |
Knowledge
sudo npm install -g --unsafe-perm=true --allow-root curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - curl -fsSL https://rpm.nodesource.com/setup_14.x | sudo bash -